diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 2125666..0000000 --- a/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* text=auto \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 298bb2d..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Java CI - -on: [workflow_dispatch, push, pull_request] - -permissions: read-all - -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - cache: [maven] - distribution: [temurin] - java: [17, 21, 24, 25-ea] - os: [ubuntu-latest, macos-latest, windows-latest] - fail-fast: false - max-parallel: 4 - name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} - - steps: - - uses: actions/checkout@v4 - - name: Set up JDK ${{ matrix.java }} ${{ matrix.distribution }} - uses: actions/setup-java@v4 - with: - java-version: ${{ matrix.java }} - distribution: ${{ matrix.distribution }} - cache: ${{ matrix.cache }} - - name: Test with Maven - run: ./mvnw -pl core,extensions test -B -V --no-transfer-progress -D"license.skip=true" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index cfc15c5..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - schedule: - - cron: '22 16 * * 4' - -jobs: - analyze: - name: Analyze - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} - timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'java-kotlin' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Java - uses: actions/setup-java@v4 - with: - cache: maven - distribution: 'temurin' - java-version: 21 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - queries: +security-and-quality - - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/coveralls.yaml b/.github/workflows/coveralls.yaml deleted file mode 100644 index f5e1acf..0000000 --- a/.github/workflows/coveralls.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Coveralls - -on: [push, pull_request] - -permissions: read-all - -jobs: - build: - if: github.repository_owner == 'mybatis' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up JDK - uses: actions/setup-java@v4 - with: - cache: maven - distribution: temurin - java-version: 21 - - name: Report Coverage to Coveralls for Pull Requests - if: github.event_name == 'pull_request' - run: ./mvnw -pl core,extensions -B -V test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER --no-transfer-progress - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PR_NUMBER: ${{ github.event.number }} - - name: Report Coverage to Coveralls for General Push - if: github.event_name == 'push' - run: ./mvnw -B -V test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github --no-transfer-progress - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/samples.yaml b/.github/workflows/samples.yaml deleted file mode 100644 index ef4add8..0000000 --- a/.github/workflows/samples.yaml +++ /dev/null @@ -1,73 +0,0 @@ -name: Samples -on: - push: - pull_request: - -permissions: read-all - -jobs: - build: - name: Run ${{ matrix.sample }} on ${{ matrix.os }} (GraalVM ${{ matrix.java }}) - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: - - 'ubuntu-latest' - - 'windows-latest' - java: - - 21 - sample: - - 'simple' - - 'xml' - - 'sqlprovider' - - 'scan' - - 'dao' - - 'thymeleaf' - - 'thymeleaf-sqlgenerator' - - 'velocity' - - 'freemarker' - - 'cache' - - 'configuration' - - 'dynamic-sql' - fail-fast: false - max-parallel: 10 - steps: - - uses: actions/checkout@v4 - - name: Set up GraalVM - uses: graalvm/setup-graalvm@v1 - with: - version: 'dev' - java-version: ${{ matrix.java }} - components: 'native-image' - github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Cache local Maven repository - uses: actions/cache@v4 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-samples-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven-samples- - - name: Print environments - run: | - echo "GRAALVM_HOME: $GRAALVM_HOME" - echo "JAVA_HOME: $JAVA_HOME" - java --version - native-image --version - - name: Build native image - run: ./mvnw -pl core,extensions,samples/${{ matrix.sample }} -U -D"maven.test.skip" -Pnative -D"license.skip=true" clean package -B -V --no-transfer-progress - - name: Run with native image - run: ./samples/${{ matrix.sample }}/target/mybatis-spring-native-sample-${{ matrix.sample }} - - name: Run with executable jar on AOT mode - run: java -DspringAot=true -jar ./samples/${{ matrix.sample }}/target/mybatis-spring-native-sample-${{ matrix.sample }}-exec.jar - - name: Run with executable jar - run: java -jar ./samples/${{ matrix.sample }}/target/mybatis-spring-native-sample-${{ matrix.sample }}-exec.jar - - name: Verify running with native image for ubuntu - if: ${{ matrix.os == 'ubuntu-latest' && matrix.sample != 'cache' }} - run: | - ./samples/${{ matrix.sample }}/target/mybatis-spring-native-sample-${{ matrix.sample }} --logging.pattern.console="[%level] %m%n" --spring.main.banner-mode=off --logging.level.org.mybatis.spring.nativex.sample=off | tee actual-console.log - diff actual-console.log ./samples/${{ matrix.sample }}/src/test/resources/expected-console.log - - name: Verify running with native image for ubuntu - if: ${{ matrix.os == 'ubuntu-latest' && matrix.sample == 'cache' }} - run: | - ./samples/${{ matrix.sample }}/target/mybatis-spring-native-sample-${{ matrix.sample }} --logging.pattern.console="[%level] %m%n" --spring.main.banner-mode=off --logging.level.org.mybatis.spring.nativex.sample=off -Djdk.serialFilter='org.mybatis.spring.nativex.sample.cache.*;java.util.*;java.lang.*;!*' | tee actual-console.log - diff actual-console.log ./samples/${{ matrix.sample }}/src/test/resources/expected-console.log diff --git a/.github/workflows/site.yaml b/.github/workflows/site.yaml deleted file mode 100644 index de1babe..0000000 --- a/.github/workflows/site.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Site - -on: - push: - branches: - - site - -permissions: - contents: write - -jobs: - build: - if: github.repository_owner == 'mybatis' && ! contains(toJSON(github.event.head_commit.message), '[maven-release-plugin]') - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up JDK - uses: actions/setup-java@v4 - with: - cache: maven - distribution: temurin - java-version: 21 - - name: Build site - run: ./mvnw site site:stage -DskipTests -Dlicense.skip=true -B -V --no-transfer-progress --settings ./.mvn/settings.xml - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NVD_API_KEY: ${{ secrets.NVD_API_KEY }} - - name: Deploy Site to gh-pages - uses: JamesIves/github-pages-deploy-action@v4 - with: - branch: gh-pages - folder: target/staging diff --git a/.github/workflows/sonar.yaml b/.github/workflows/sonar.yaml deleted file mode 100644 index c3a1e20..0000000 --- a/.github/workflows/sonar.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: SonarCloud - -on: - push: - branches: - - master - -permissions: read-all - -jobs: - build: - if: github.repository_owner == 'mybatis' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - # Disabling shallow clone is recommended for improving relevancy of reporting - fetch-depth: 0 - - name: Set up JDK - uses: actions/setup-java@v4 - with: - cache: maven - distribution: temurin - java-version: 21 - - name: Analyze with SonarCloud - run: ./mvnw verify jacoco:report sonar:sonar -B -V -Dsonar.projectKey=mybatis_spring-native -Dsonar.organization=mybatis -Dsonar.host.url=https://sonarcloud.io -Dsonar.token=$SONAR_TOKEN -Dlicense.skip=true --no-transfer-progress - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/sonatype.yaml b/.github/workflows/sonatype.yaml deleted file mode 100644 index c922f38..0000000 --- a/.github/workflows/sonatype.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: Sonatype - -on: - push: - branches: - - master - -permissions: read-all - -jobs: - build: - if: github.repository_owner == 'mybatis' && ! contains(toJSON(github.event.head_commit.message), '[maven-release-plugin]') - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up JDK - uses: actions/setup-java@v4 - with: - cache: maven - distribution: temurin - java-version: 21 - - name: Deploy to Sonatype - run: ./mvnw deploy -DskipTests -B -V --no-transfer-progress --settings ./.mvn/settings.xml -Dlicense.skip=true - env: - CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} - CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 785cca2..0000000 --- a/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -HELP.md -target/ -.mvn/wrapper/maven-wrapper.jar -!**/src/main/**/target/ -!**/src/test/**/target/ -.github/keys/ - -### STS ### -.apt_generated -.classpath -.factorypath -.project -.settings -.springBeans -.sts4-cache - -### IntelliJ IDEA ### -.idea -*.iws -*.iml -*.ipr - -### NetBeans ### -/nbproject/private/ -/nbbuild/ -/dist/ -/nbdist/ -/.nb-gradle/ -build/ -!**/src/main/**/build/ -!**/src/test/**/build/ - -### VS Code ### -.vscode/ diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml deleted file mode 100644 index d59d85b..0000000 --- a/.mvn/extensions.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - fr.jcgay.maven - maven-profiler - 3.3 - - diff --git a/.mvn/maven.config b/.mvn/maven.config deleted file mode 100644 index afdcfab..0000000 --- a/.mvn/maven.config +++ /dev/null @@ -1,2 +0,0 @@ --Daether.checksums.algorithms=SHA-512,SHA-256,SHA-1,MD5 --Daether.connector.smartChecksums=false diff --git a/.mvn/settings.xml b/.mvn/settings.xml deleted file mode 100644 index 7edf97a..0000000 --- a/.mvn/settings.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - central - ${env.CI_DEPLOY_USERNAME} - ${env.CI_DEPLOY_PASSWORD} - - - - - gh-pages-scm - - branch - gh-pages - - - - - - github - ${env.GITHUB_TOKEN} - - - - - nvd - ${env.NVD_API_KEY} - - - - diff --git a/.mvn/wrapper/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java deleted file mode 100644 index bdf0ddf..0000000 --- a/.mvn/wrapper/MavenWrapperDownloader.java +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import java.io.IOException; -import java.io.InputStream; -import java.net.Authenticator; -import java.net.PasswordAuthentication; -import java.net.URI; -import java.net.URL; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.nio.file.StandardCopyOption; -import java.util.concurrent.ThreadLocalRandom; - -public final class MavenWrapperDownloader { - private static final String WRAPPER_VERSION = "3.3.2"; - - private static final boolean VERBOSE = Boolean.parseBoolean(System.getenv("MVNW_VERBOSE")); - - public static void main(String[] args) { - log("Apache Maven Wrapper Downloader " + WRAPPER_VERSION); - - if (args.length != 2) { - System.err.println(" - ERROR wrapperUrl or wrapperJarPath parameter missing"); - System.exit(1); - } - - try { - log(" - Downloader started"); - final URL wrapperUrl = URI.create(args[0]).toURL(); - final String jarPath = args[1].replace("..", ""); // Sanitize path - final Path wrapperJarPath = Paths.get(jarPath).toAbsolutePath().normalize(); - downloadFileFromURL(wrapperUrl, wrapperJarPath); - log("Done"); - } catch (IOException e) { - System.err.println("- Error downloading: " + e.getMessage()); - if (VERBOSE) { - e.printStackTrace(); - } - System.exit(1); - } - } - - private static void downloadFileFromURL(URL wrapperUrl, Path wrapperJarPath) - throws IOException { - log(" - Downloading to: " + wrapperJarPath); - if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { - final String username = System.getenv("MVNW_USERNAME"); - final char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); - Authenticator.setDefault(new Authenticator() { - @Override - protected PasswordAuthentication getPasswordAuthentication() { - return new PasswordAuthentication(username, password); - } - }); - } - Path temp = wrapperJarPath - .getParent() - .resolve(wrapperJarPath.getFileName() + "." - + Long.toUnsignedString(ThreadLocalRandom.current().nextLong()) + ".tmp"); - try (InputStream inStream = wrapperUrl.openStream()) { - Files.copy(inStream, temp, StandardCopyOption.REPLACE_EXISTING); - Files.move(temp, wrapperJarPath, StandardCopyOption.REPLACE_EXISTING); - } finally { - Files.deleteIfExists(temp); - } - log(" - Downloader complete"); - } - - private static void log(String msg) { - if (VERBOSE) { - System.out.println(msg); - } - } - -} diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties deleted file mode 100644 index 0d35f6d..0000000 --- a/.mvn/wrapper/maven-wrapper.properties +++ /dev/null @@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -wrapperVersion=3.3.2 -distributionType=source -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip -wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index e2f8726..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1 +0,0 @@ -Please see [the MyBatis core module Guideline](https://github.com/mybatis/mybatis-3/blob/master/CONTRIBUTING.md). diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 7e835b2..0000000 --- a/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - diff --git a/LICENSE_HEADER b/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/NOTICE b/NOTICE deleted file mode 100644 index 2c94581..0000000 --- a/NOTICE +++ /dev/null @@ -1,5 +0,0 @@ -MyBatis Spring Native -Copyright 2022-2023 - -This product includes software developed by -The MyBatis Team (https://www.mybatis.org/). diff --git a/README.md b/README.md deleted file mode 100644 index 05274f0..0000000 --- a/README.md +++ /dev/null @@ -1,225 +0,0 @@ -# MyBatis integration with Spring Native feature - -[![Java CI](https://github.com/mybatis/spring-native/actions/workflows/ci.yaml/badge.svg)](https://github.com/mybatis/spring-native/actions/workflows/ci.yaml) -[![Samples](https://github.com/mybatis/spring-native/actions/workflows/samples.yaml/badge.svg)](https://github.com/mybatis/spring-native/actions/workflows/samples.yaml) -[![Coverage Status](https://coveralls.io/repos/github/mybatis/spring-native/badge.svg?branch=master)](https://coveralls.io/github/mybatis/spring-native?branch=master) -[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=mybatis_spring-native&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=mybatis_spring-native) -[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=mybatis_spring-native&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=mybatis_spring-native) -[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=mybatis_spring-native&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=mybatis_spring-native) - -[![Maven central](https://maven-badges.herokuapp.com/maven-central/org.mybatis.spring.native/mybatis-spring-native/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.mybatis.spring.native/mybatis-spring-native) -[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/https/oss.sonatype.org/org.mybatis.spring.native/mybatis-spring-native.svg)](https://oss.sonatype.org/content/repositories/snapshots/org/mybatis/spring/native/mybatis-spring-native/) -[![License](https://img.shields.io/:license-apache-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) - -![mybatis-spring](https://mybatis.org/images/mybatis-logo.png) - -The project that the MyBatis integration with Spring Native feature. - -## Requirements - -* Java 11+ -* [GraalVM](https://github.com/graalvm/graalvm-ce-builds/releases) -* [Spring Boot](https://github.com/spring-projects/spring-boot) 2.6.3+ -* [Spring Native](https://github.com/spring-projects-experimental/spring-native) 0.11.2+ -* [MyBatis Spring](https://github.com/mybatis/spring) 2.0.7+ -* [MyBatis Spring Boot](https://github.com/mybatis/spring-boot-starter) 2.2.2+ - -## Essentials - -* [Quick Start](https://github.com/mybatis/spring-native/wiki/Quick-Start) -* [Reference documentation](docs/src/site/markdown/index.md) - -### Translations - -* [Reference documentation (简体中文)](docs/src/site/zh/markdown/index.md) -* [Reference documentation (한국어)](docs/src/site/ko/markdown/index.md) - -## How to install on your application - -Specify the `mybatis-spring-native-core` on `pom.xml` as follows: - -**Maven:** - -```xml - - - org.mybatis.spring.native - mybatis-spring-native-core - 0.1.0-SNAPSHOT - - -``` - -**Gradle:** - -```groovy -dependencies { - compile("org.mybatis.spring.native:mybatis-spring-native-core:0.1.0-SNAPSHOT") -} -``` - -If you use other extension modules provided by mybatis, please specify the `mybatis-spring-native-extensions` instead of `mybatis-spring-native-core`. - -**Maven:** - -```xml - - - org.mybatis.spring.native - mybatis-spring-native-extensions - 0.1.0-SNAPSHOT - - -``` - -**Gradle:** - -```groovy -dependencies { - compile("org.mybatis.spring.native:mybatis-spring-native-extensions:0.1.0-SNAPSHOT") -} -``` - -Add Sonatype OSS snapshot repository when use MyBatis's snapshot modules. - -**Maven:** - -```xml - - - sonatype-oss-snapshots - Sonatype OSS Snapshots Repository - https://oss.sonatype.org/content/repositories/snapshots - - -``` - -**Gradle:** - -```groovy -repositories { - maven { url "https://oss.sonatype.org/content/repositories/snapshots" } -} -``` - -## How to build - -If you want to build this project, please will execute following procedures. - -> **NOTE: Pre Conditions** -> -> Need to following environment variables are defined. -> -> * `JAVA_HOME` -> * `GRAALVM_HOME` - -### All modules - -``` -./mvnw -Pnative clean package -``` -> **WARNING:** -> -> **Building all modules takes long time.** - - -### Core module and specific sample module - -``` -./mvnw -pl core,samples/simple -Pnative clean package -``` - -> **NOTE:** -> -> Please replace the 'simple' part on above example to sample's suffix value(e.g. xml, sqlprovider and more) that you want to build. - -### Extension module and specific sample module - -``` -./mvnw -pl core,extensions,samples/thymeleaf -Pnative clean package -``` - -## How to run a sample - -Execute the following command when the build is completed. - -### Run with Native Image - - -``` -./samples/simple/target/mybatis-spring-native-sample-simple -``` - -``` -2022-01-22 13:45:10.453 INFO 2265 --- [ main] o.s.nativex.NativeListener : AOT mode enabled - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v2.6.3) - -2022-01-22 13:45:10.455 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : Starting MybatisSpringNativeSampleApplication v0.1.0-SNAPSHOT using Java 17.0.1 on fv-az136-971 with PID 2265 (/home/runner/work/mybatis-spring-native/mybatis-spring-native/samples/simple/target/mybatis-spring-native-sample-simple started by runner in /home/runner/work/mybatis-spring-native/mybatis-spring-native) -2022-01-22 13:45:10.455 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : No active profile set, falling back to default profiles: default -2022-01-22 13:45:10.487 INFO 2265 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... -2022-01-22 13:45:10.491 INFO 2265 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. -2022-01-22 13:45:10.496 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : Started MybatisSpringNativeSampleApplication in 0.054 seconds (JVM running for 0.056) -2022-01-22 13:45:10.497 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : New city: City{id=4, name='NYC', state='NY', country='USA'} -2022-01-22 13:45:10.497 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=1, name='San Francisco', state='CA', country='USA'} -2022-01-22 13:45:10.497 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=2, name='Boston', state='MA', country='USA'} -2022-01-22 13:45:10.497 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=3, name='Portland', state='OR', country='USA'} -2022-01-22 13:45:10.497 INFO 2265 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=4, name='NYC', state='NY', country='USA'} -2022-01-22 13:45:10.498 INFO 2265 --- [ionShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated... -2022-01-22 13:45:10.499 INFO 2265 --- [ionShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed. -``` - -### Run with executable jar - -``` -./samples/simple/target/mybatis-spring-native-sample-simple-exec.jar -``` - -``` -2022-01-22 13:45:14.191 INFO 2305 --- [ main] o.s.nativex.NativeListener : AOT mode disabled - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v2.6.3) - -2022-01-22 13:45:14.295 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : Starting MybatisSpringNativeSampleApplication v0.1.0-SNAPSHOT using Java 17.0.1 on fv-az136-971 with PID 2305 (/home/runner/work/mybatis-spring-native/mybatis-spring-native/samples/simple/target/mybatis-spring-native-sample-simple-0.1.0-SNAPSHOT-exec.jar started by runner in /home/runner/work/mybatis-spring-native/mybatis-spring-native) -2022-01-22 13:45:14.296 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : No active profile set, falling back to default profiles: default -2022-01-22 13:45:15.349 INFO 2305 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... -2022-01-22 13:45:15.578 INFO 2305 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. -2022-01-22 13:45:15.718 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : Started MybatisSpringNativeSampleApplication in 1.892 seconds (JVM running for 2.406) -2022-01-22 13:45:15.774 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : New city: City{id=4, name='NYC', state='NY', country='USA'} -2022-01-22 13:45:15.804 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=1, name='San Francisco', state='CA', country='USA'} -2022-01-22 13:45:15.805 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=2, name='Boston', state='MA', country='USA'} -2022-01-22 13:45:15.805 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=3, name='Portland', state='OR', country='USA'} -2022-01-22 13:45:15.806 INFO 2305 --- [ main] s.s.MybatisSpringNativeSampleApplication : City{id=4, name='NYC', state='NY', country='USA'} -2022-01-22 13:45:15.816 INFO 2305 --- [ionShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated... -2022-01-22 13:45:15.823 INFO 2305 --- [ionShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed. -``` - -## Related Links - -* https://spring.io/blog/2021/12/29/go-go-graalvm-with-spring-native-my-adventures-in-native-image-ville -* https://joshlong.com/jl/blogPost/mybatis-and-spring-native.html -* https://github.com/spring-projects-experimental/spring-native/issues/404 -* https://www.youtube.com/watch?v=EWWq3ts9Tv4&t=1s - -## Special Thanks - -Thanks for helping this project creation!! - -* Josh Long([@joshlong](https://github.com/joshlong)) - Josh provided [the first sample application](https://github.com/joshlong/mybatis-spring-native/tree/mybatis-spring). - - -* Stéphane Nicoll([@snicoll](https://github.com/snicoll)) - Stéphane resolved and helped some issues for running MyBatis on native image. diff --git a/core/LICENSE_HEADER b/core/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/core/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/core/format.xml b/core/format.xml deleted file mode 100644 index 6c1a025..0000000 --- a/core/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/core/pom.xml b/core/pom.xml deleted file mode 100644 index 17102f5..0000000 --- a/core/pom.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native - 0.1.0-SNAPSHOT - - - mybatis-spring-native-core - mybatis-spring-native-core - MyBatis integration with Spring Native feature for core modules - - - org.mybatis.spring.nativex.core - - - - - org.mybatis - mybatis - provided - - - org.mybatis - mybatis-spring - provided - - - org.mybatis.spring.boot - mybatis-spring-boot-autoconfigure - ${mybatis-spring-boot.version} - provided - - - org.springframework.experimental - spring-native - provided - - - org.springframework.experimental - spring-aot - provided - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springframework - spring-tx - test - - - org.springframework - spring-jdbc - test - - - com.h2database - h2 - test - - - - diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.java deleted file mode 100644 index 7af0522..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.java +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; - -import org.apache.ibatis.cache.decorators.FifoCache; -import org.apache.ibatis.cache.decorators.LruCache; -import org.apache.ibatis.cache.decorators.SoftCache; -import org.apache.ibatis.cache.decorators.WeakCache; -import org.apache.ibatis.cache.impl.PerpetualCache; -import org.apache.ibatis.javassist.util.proxy.ProxyFactory; -import org.apache.ibatis.javassist.util.proxy.RuntimeSupport; -import org.apache.ibatis.logging.Log; -import org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl; -import org.apache.ibatis.logging.jdk14.Jdk14LoggingImpl; -import org.apache.ibatis.logging.log4j2.Log4j2Impl; -import org.apache.ibatis.logging.nologging.NoLoggingImpl; -import org.apache.ibatis.logging.slf4j.Slf4jImpl; -import org.apache.ibatis.logging.stdout.StdOutImpl; -import org.apache.ibatis.scripting.defaults.RawLanguageDriver; -import org.apache.ibatis.scripting.xmltags.XMLLanguageDriver; -import org.apache.ibatis.session.SqlSessionFactory; -import org.springframework.nativex.hint.InitializationHint; -import org.springframework.nativex.hint.InitializationTime; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.ResourceHint; -import org.springframework.nativex.hint.TypeHint; -import org.springframework.nativex.type.NativeConfiguration; - -/** - * Registers hints to make a MyBatis Core components work in a Spring Native context. - * - * @author Kazuki Shimizu - * @author Josh Long - * - * @see MyBatisMapperNativeConfigurationProcessor - */ -// @formatter:off -@NativeHint( - trigger = SqlSessionFactory.class, - initialization = @InitializationHint( - initTime = InitializationTime.BUILD, - types = org.apache.ibatis.type.JdbcType.class - ), - options = "--initialize-at-build-time=org.apache.ibatis.type.JdbcType", - resources = @ResourceHint( - patterns = { - "org/apache/ibatis/builder/xml/.*.dtd", - "org/apache/ibatis/builder/xml/.*.xsd" - } - ) -) -@TypeHint( - types = { - RawLanguageDriver.class, - XMLLanguageDriver.class, - RuntimeSupport.class, - ProxyFactory.class, - Slf4jImpl.class, - Log.class, - JakartaCommonsLoggingImpl.class, - Log4j2Impl.class, - Jdk14LoggingImpl.class, - StdOutImpl.class, - NoLoggingImpl.class, - SqlSessionFactory.class, - PerpetualCache.class, - FifoCache.class, - LruCache.class, - SoftCache.class, - WeakCache.class - }, - typeNames = "org.apache.ibatis.logging.log4j.Log4jImpl", - access = { - PUBLIC_CONSTRUCTORS, - PUBLIC_CLASSES, - PUBLIC_FIELDS, - PUBLIC_METHODS, - DECLARED_CLASSES, - DECLARED_CONSTRUCTORS, - DECLARED_FIELDS, - DECLARED_METHODS - } -) -// @formatter:on -public class MyBatisCoreNativeConfiguration implements NativeConfiguration { -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.java deleted file mode 100644 index 44aa809..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.mybatis.spring.mapper.MapperFactoryBean; -import org.springframework.beans.factory.BeanFactory; -import org.springframework.beans.factory.BeanFactoryAware; -import org.springframework.beans.factory.config.ConfigurableBeanFactory; -import org.springframework.beans.factory.support.RootBeanDefinition; -import org.springframework.context.annotation.BeanDefinitionPostProcessor; -import org.springframework.core.ResolvableType; -import org.springframework.util.ClassUtils; - -/** - * The {@code BeanDefinitionPostProcessor} for customizing a {@code MapperFactoryBean}. - * - * @author Stéphane Nicoll - * @author Kazuki Shimizu - */ -class MyBatisMapperFactoryBeanPostProcessor implements BeanDefinitionPostProcessor, BeanFactoryAware { - - private static final Log LOG = LogFactory.getLog(MyBatisMapperFactoryBeanPostProcessor.class); - - private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean"; - - private ConfigurableBeanFactory beanFactory; - - @Override - public void setBeanFactory(BeanFactory beanFactory) { - this.beanFactory = (ConfigurableBeanFactory) beanFactory; - } - - @Override - public void postProcessBeanDefinition(String beanName, RootBeanDefinition beanDefinition) { - if (ClassUtils.isPresent(MAPPER_FACTORY_BEAN, this.beanFactory.getBeanClassLoader())) { - resolveMapperFactoryBeanTypeIfNecessary(beanDefinition); - } - } - - private void resolveMapperFactoryBeanTypeIfNecessary(RootBeanDefinition beanDefinition) { - if (!beanDefinition.hasBeanClass() || !MapperFactoryBean.class.isAssignableFrom(beanDefinition.getBeanClass())) { - return; - } - if (beanDefinition.getResolvableType().hasUnresolvableGenerics()) { - Class mapperInterface = getMapperInterface(beanDefinition); - if (mapperInterface != null) { - // Exposes a generic type information to context for prevent early initializing - beanDefinition - .setTargetType(ResolvableType.forClassWithGenerics(beanDefinition.getBeanClass(), mapperInterface)); - } - } - } - - private Class getMapperInterface(RootBeanDefinition beanDefinition) { - try { - return (Class) beanDefinition.getPropertyValues().get("mapperInterface"); - } catch (Exception e) { - LOG.debug("Fail getting mapper interface type.", e); - return null; - } - } - -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java deleted file mode 100644 index f799f8a..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java +++ /dev/null @@ -1,123 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS; - -import java.lang.annotation.Annotation; -import java.lang.reflect.Method; -import java.util.function.Function; - -import org.apache.ibatis.annotations.DeleteProvider; -import org.apache.ibatis.annotations.InsertProvider; -import org.apache.ibatis.annotations.SelectProvider; -import org.apache.ibatis.annotations.UpdateProvider; -import org.mybatis.spring.mapper.MapperFactoryBean; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry; -import org.springframework.beans.PropertyValue; -import org.springframework.beans.factory.config.BeanDefinition; -import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; -import org.springframework.nativex.hint.TypeAccess; -import org.springframework.util.ClassUtils; -import org.springframework.util.ReflectionUtils; - -/** - * Finds and registers reflection hints for all scanned mappers in the beanFactory. - * - * @author Kazuki Shimizu - * @author Josh Long - */ -public class MyBatisMapperNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor { - - private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean"; - - private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, - PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, - QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS }; - - /** - * {@inheritDoc} - */ - @Override - public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) { - if (!ClassUtils.isPresent(MAPPER_FACTORY_BEAN, beanFactory.getBeanClassLoader())) { - return; - } - String[] beanNames = beanFactory.getBeanNamesForType(MapperFactoryBean.class); - for (String beanName : beanNames) { - BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName.substring(1)); - PropertyValue mapperInterface = beanDefinition.getPropertyValues().getPropertyValue("mapperInterface"); - if (mapperInterface != null && mapperInterface.getValue() != null) { - Class mapperInterfaceType = (Class) mapperInterface.getValue(); - if (mapperInterfaceType != null) { - registerReflectionTypeIfNecessary(mapperInterfaceType, registry); - registry.proxy().add(NativeProxyEntry.ofInterfaces(mapperInterfaceType)); - registry.resources() - .add(NativeResourcesEntry.of(mapperInterfaceType.getName().replace('.', '/').concat(".xml"))); - registerMapperRelationships(mapperInterfaceType, registry); - } - } - } - } - - private void registerMapperRelationships(Class mapperInterfaceType, NativeConfigurationRegistry registry) { - Method[] methods = ReflectionUtils.getAllDeclaredMethods(mapperInterfaceType); - for (Method method : methods) { - if (method.getDeclaringClass() != Object.class) { - ReflectionUtils.makeAccessible(method); - registerSqlProviderTypes(method, registry, SelectProvider.class, SelectProvider::value, SelectProvider::type); - registerSqlProviderTypes(method, registry, InsertProvider.class, InsertProvider::value, InsertProvider::type); - registerSqlProviderTypes(method, registry, UpdateProvider.class, UpdateProvider::value, UpdateProvider::type); - registerSqlProviderTypes(method, registry, DeleteProvider.class, DeleteProvider::value, DeleteProvider::type); - Class returnType = MyBatisMapperTypeUtils.resolveReturnClass(mapperInterfaceType, method); - registerReflectionTypeIfNecessary(returnType, registry); - MyBatisMapperTypeUtils.resolveParameterClasses(mapperInterfaceType, method) - .forEach(x -> registerReflectionTypeIfNecessary(x, registry)); - } - } - } - - @SafeVarargs - private final void registerSqlProviderTypes(Method method, - NativeConfigurationRegistry registry, Class annotationType, Function>... providerTypeResolvers) { - for (T annotation : method.getAnnotationsByType(annotationType)) { - for (Function> providerTypeResolver : providerTypeResolvers) { - registerReflectionTypeIfNecessary(providerTypeResolver.apply(annotation), registry); - } - } - } - - private void registerReflectionTypeIfNecessary(Class type, NativeConfigurationRegistry registry) { - if (!type.isPrimitive() && !type.getName().startsWith("java")) { - registry.reflection().forType(type).withAccess(TYPE_ACCESSES); - } - } - -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java deleted file mode 100644 index 180ab41..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import java.lang.reflect.Method; -import java.lang.reflect.ParameterizedType; -import java.lang.reflect.Type; -import java.util.Map; -import java.util.Set; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -import org.apache.ibatis.reflection.TypeParameterResolver; - -final class MyBatisMapperTypeUtils { - - private MyBatisMapperTypeUtils() { - // NOP - } - - static Class resolveReturnClass(Class mapperInterface, Method method) { - Type resolvedReturnType = TypeParameterResolver.resolveReturnType(method, mapperInterface); - return typeToClass(resolvedReturnType, method.getReturnType()); - } - - static Set> resolveParameterClasses(Class mapperInterface, Method method) { - return Stream.of(TypeParameterResolver.resolveParamTypes(method, mapperInterface)) - .map(x -> typeToClass(x, x instanceof Class ? (Class) x : Object.class)).collect(Collectors.toSet()); - } - - private static Class typeToClass(Type src, Class fallback) { - Class result = null; - if (src instanceof Class) { - if (((Class) src).isArray()) { - result = ((Class) src).getComponentType(); - } else { - result = (Class) src; - } - } else if (src instanceof ParameterizedType) { - ParameterizedType parameterizedType = (ParameterizedType) src; - int index = (parameterizedType.getRawType() instanceof Class - && Map.class.isAssignableFrom((Class) parameterizedType.getRawType()) - && parameterizedType.getActualTypeArguments().length > 1) ? 1 : 0; - Type actualType = parameterizedType.getActualTypeArguments()[index]; - result = typeToClass(actualType, fallback); - } - if (result == null) { - result = fallback; - } - return result; - } - -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisResourcesScan.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisResourcesScan.java deleted file mode 100644 index 7806f35..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisResourcesScan.java +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import java.lang.annotation.Repeatable; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; - -import org.springframework.context.annotation.Import; -import org.springframework.nativex.hint.TypeAccess; - -/** - * The annotation that indicates scan rules of resources for running on native-image. - * - * @author Kazuki Shimizu - */ -@Import(MyBatisScannedResourcesHolder.Registrar.class) -@Retention(RetentionPolicy.RUNTIME) -@Repeatable(MyBatisResourcesScan.List.class) -public @interface MyBatisResourcesScan { - - /** - * Return package names for scanning type aliases. - *

- * Default is none. - *

- * - * @return package names for scanning type aliases - */ - String[] typeAliasesPackages() default {}; - - /** - * Return the filter type(super class) for scanning type aliases. - *

- * Default is none. - *

- * - * @return the filter type for scanning type aliases - */ - Class typeAliasesSupperType() default void.class; - - /** - * Return package names for scanning type handler. - *

- * Default is none. - *

- * - * @return package names for scanning type handler - */ - String[] typeHandlerPackages() default {}; - - /** - * Return location patterns for scanning mapper xml file under classpath. - *

- * Default is none. - *

- * - * @return location patterns for scanning mapper xml file under classpath - */ - String[] mapperLocationPatterns() default {}; - - /** - * Return package names for scanning reflection hint type. - *

- * Default is none. - *

- * - * @return package names for scanning reflection hint type - */ - String[] reflectionTypePackages() default {}; - - /** - * Return the filter type(super class) for scanning reflection hint type. - *

- * Default is none. - *

- * - * @return the filter type for scanning reflection hint type - */ - Class reflectionTypeSupperType() default void.class; - - /** - * Return access scopes for applying scanned classes to reflection hint. - *

- * Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS, - * DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS, - * QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS. - *

- * - * @return access scopes for applying scanned classes to reflection hint - */ - TypeAccess[] typeAccesses() default {}; - - /** - * Return location patterns for adding resource hint file under classpath. - *

- * Default is none. - *

- * - * @return location patterns for adding resource hint file under classpath - */ - String[] resourceLocationPatterns() default {}; - - /** - * Repeatable annotation for {@link MyBatisResourcesScan}. - */ - @Import(MyBatisScannedResourcesHolder.RepeatableRegistrar.class) - @Retention(RetentionPolicy.RUNTIME) - @interface List { - MyBatisResourcesScan[] value() default {}; - } - -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java deleted file mode 100644 index c1ad9ab..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java +++ /dev/null @@ -1,325 +0,0 @@ -/* - * Copyright 2022-2023 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import java.io.IOException; -import java.io.UncheckedIOException; -import java.lang.reflect.Modifier; -import java.nio.file.Path; -import java.util.Collections; -import java.util.HashSet; -import java.util.Optional; -import java.util.Set; -import java.util.regex.Pattern; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.ibatis.type.TypeHandler; -import org.springframework.beans.factory.config.BeanDefinition; -import org.springframework.beans.factory.support.BeanDefinitionBuilder; -import org.springframework.beans.factory.support.BeanDefinitionReaderUtils; -import org.springframework.beans.factory.support.BeanDefinitionRegistry; -import org.springframework.context.annotation.ImportBeanDefinitionRegistrar; -import org.springframework.core.annotation.AnnotationAttributes; -import org.springframework.core.io.ClassPathResource; -import org.springframework.core.io.Resource; -import org.springframework.core.io.support.PathMatchingResourcePatternResolver; -import org.springframework.core.io.support.ResourcePatternResolver; -import org.springframework.core.type.AnnotationMetadata; -import org.springframework.core.type.ClassMetadata; -import org.springframework.core.type.classreading.CachingMetadataReaderFactory; -import org.springframework.core.type.classreading.MetadataReaderFactory; -import org.springframework.nativex.hint.TypeAccess; -import org.springframework.util.ClassUtils; - -/** - * The holder class that scanned resources using {@code @MyBatisResourcesScan}. - * - * @author Kazuki Shimizu - */ -public class MyBatisScannedResourcesHolder { - - private Set> typeAliasesClasses; - private Set> typeHandlerClasses; - private Set mapperLocations; - private Set> reflectionClasses; - private TypeAccess[] reflectionTypeAccesses; - private Set resourceLocations; - - /** - * Return class list of scanned type aliases. - * - * @return class list of scanned type aliases - */ - public Set> getTypeAliasesClasses() { - return typeAliasesClasses; - } - - /** - * Set class list of scanned type aliases. - * - * @param typeAliasClasses - * class list of scanned type aliases - */ - @SuppressWarnings("unused") - public void setTypeAliasesClasses(Set> typeAliasClasses) { - this.typeAliasesClasses = typeAliasClasses; - } - - /** - * Return class list of scanned type handler. - * - * @return class list of scanned type handler - */ - public Set> getTypeHandlerClasses() { - return typeHandlerClasses; - } - - /** - * Set class list of scanned type handler. - * - * @param typeHandlerClasses - * class list of scanned type handler - */ - @SuppressWarnings("unused") - public void setTypeHandlerClasses(Set> typeHandlerClasses) { - this.typeHandlerClasses = typeHandlerClasses; - } - - /** - * Return location list of scanned mapper xml file. - * - * @return location list of scanned mapper xml file - */ - public Set getMapperLocations() { - return mapperLocations; - } - - /** - * Set location list of scanned mapper xml file. - * - * @param mapperLocations - * location list of scanned mapper xml file - */ - @SuppressWarnings("unused") - public void setMapperLocations(Set mapperLocations) { - this.mapperLocations = mapperLocations; - } - - /** - * Set class list of scanned reflection hint type. - * - * @param reflectionClasses - * class list of scanned reflection hint type - */ - @SuppressWarnings("unused") - public void setReflectionClasses(Set> reflectionClasses) { - this.reflectionClasses = reflectionClasses; - } - - /** - * Return class list of scanned reflection hint type. - * - * @return class list of scanned reflection hint type - */ - public Set> getReflectionClasses() { - return reflectionClasses; - } - - /** - * Set access scopes for applying reflection type that scanned. - * - * @param reflectionTypeAccesses - * access scopes for applying reflection type that scanned - */ - @SuppressWarnings("unused") - public void setReflectionTypeAccesses(TypeAccess[] reflectionTypeAccesses) { - this.reflectionTypeAccesses = reflectionTypeAccesses; - } - - /** - * Return access scopes for applying reflection type that scanned. - * - * @return access scopes for applying reflection type that scanned - */ - public TypeAccess[] getReflectionTypeAccesses() { - return reflectionTypeAccesses; - } - - /** - * Set location list of adding resource hint file. - * - * @param resourceLocations - * location list of adding resource hint file - */ - @SuppressWarnings("unused") - public void setResourceLocations(Set resourceLocations) { - this.resourceLocations = resourceLocations; - } - - /** - * Return location list of adding resource hint file. - * - * @return location list of adding resource hint file - */ - public Set getResourceLocations() { - return resourceLocations; - } - - static class Registrar implements ImportBeanDefinitionRegistrar { - private static final Log LOG = LogFactory.getLog(Registrar.class); - private static final ResourcePatternResolver RESOURCE_PATTERN_RESOLVER = new PathMatchingResourcePatternResolver(); - private static final MetadataReaderFactory METADATA_READER_FACTORY = new CachingMetadataReaderFactory(); - private static final Pattern JAR_RESOURCE_PREFIX_PATTERN = Pattern.compile(".*\\.jar!/"); - private static final boolean PRESENT_TYPE_HANDLER = ClassUtils.isPresent("org.apache.ibatis.type.TypeHandler", - null); - - @Override - public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) { - AnnotationAttributes annoAttrs = Optional - .ofNullable(AnnotationAttributes - .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.class.getName()))) - .orElseGet(AnnotationAttributes::new); - registerBeanDefinitions(annoAttrs, registry); - } - - protected void registerBeanDefinitions(AnnotationAttributes annoAttrs, BeanDefinitionRegistry registry) { - try { - BeanDefinitionBuilder builder = BeanDefinitionBuilder - .genericBeanDefinition(MyBatisScannedResourcesHolder.class); - Set> typeAliasesClasses = scanClasses(annoAttrs.getStringArray("typeAliasesPackages"), - annoAttrs.getClass("typeAliasesSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass()) - .filter(clazz -> !clazz.isInterface()).filter(clazz -> !clazz.isMemberClass()) - .collect(Collectors.toSet()); - builder.addPropertyValue("typeAliasesClasses", typeAliasesClasses); - Set> typeHandlerClasses = Collections.emptySet(); - if (PRESENT_TYPE_HANDLER) { - typeHandlerClasses = scanClasses(annoAttrs.getStringArray("typeHandlerPackages"), TypeHandler.class).stream() - .filter(clazz -> !clazz.isAnonymousClass()).filter(clazz -> !clazz.isInterface()) - .filter(clazz -> !Modifier.isAbstract(clazz.getModifiers())).collect(Collectors.toSet()); - } - builder.addPropertyValue("typeHandlerClasses", typeHandlerClasses); - Set mapperLocations = scanResources(annoAttrs.getStringArray("mapperLocationPatterns")); - builder.addPropertyValue("mapperLocations", mapperLocations); - Set> reflectionClasses = scanClasses(annoAttrs.getStringArray("reflectionTypePackages"), - annoAttrs.getClass("reflectionTypeSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass()) - .filter(clazz -> !clazz.isInterface()).filter(clazz -> !Modifier.isAbstract(clazz.getModifiers())) - .filter(clazz -> !clazz.isMemberClass()).collect(Collectors.toSet()); - builder.addPropertyValue("reflectionClasses", - Stream.of(typeAliasesClasses, typeHandlerClasses, reflectionClasses).flatMap(Set::stream) - .collect(Collectors.toSet())); - builder.addPropertyValue("reflectionTypeAccesses", annoAttrs.get("typeAccesses")); - Set resourceLocations = scanResources(annoAttrs.getStringArray("resourceLocationPatterns")); - builder.addPropertyValue("resourceLocations", - Stream.of(mapperLocations, resourceLocations).flatMap(Set::stream).collect(Collectors.toSet())); - BeanDefinition beanDefinition = builder.getBeanDefinition(); - registry.registerBeanDefinition(BeanDefinitionReaderUtils.generateBeanName(beanDefinition, registry), - beanDefinition); - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private Set> scanClasses(String[] packagePatterns, Class assignableType) throws IOException { - Set> classes = new HashSet<>(); - for (String packagePattern : packagePatterns) { - Resource[] resources = RESOURCE_PATTERN_RESOLVER.getResources(ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX - + ClassUtils.convertClassNameToResourcePath(packagePattern) + "/**/*.class"); - for (Resource resource : resources) { - try { - ClassMetadata classMetadata = METADATA_READER_FACTORY.getMetadataReader(resource).getClassMetadata(); - Class clazz = ClassUtils.forName(classMetadata.getClassName(), null); - if (assignableType == void.class || assignableType.isAssignableFrom(clazz)) { - classes.add(clazz); - } - } catch (ClassNotFoundException e) { - LOG.debug("Fail loading class.", e); - } - } - } - return classes; - } - - private Set scanResources(String[] mapperLocationPatterns) { - try { - String baseUrl = new ClassPathResource("/").getURL().toString(); - return Stream.of(mapperLocationPatterns).flatMap(location -> Stream.of(getResources(location))) - .map(x -> toPath(x, baseUrl)).collect(Collectors.toSet()); - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private Resource[] getResources(String locationPattern) { - try { - return RESOURCE_PATTERN_RESOLVER.getResources(locationPattern); - } catch (IOException e) { - LOG.debug("Fail getting resources. locationPattern: " + locationPattern, e); - return new Resource[0]; - } - } - - private String toPath(Resource resource, String baseUrl) { - try { - String url = resource.getURL().toString(); - String path = url; - if (url.startsWith(baseUrl)) { - path = url.replace(baseUrl, ""); - } else if (url.contains(".jar!")) { - path = JAR_RESOURCE_PREFIX_PATTERN.matcher(url).replaceFirst(""); - } else { - path = determineRelativePath(resource); - } - return path; - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private String determineRelativePath(Resource resource) throws IOException { - Path path = resource.getFile().toPath(); - StringBuilder sb = new StringBuilder(); - for (int i = path.getNameCount() - 1; i >= 0; i--) { - sb.insert(0, path.getName(i)); - String relativePath = sb.toString(); - if (RESOURCE_PATTERN_RESOLVER.getResource(relativePath).exists()) { - return relativePath; - } - sb.insert(0, '/'); - } - return resource.getURL().toString(); - } - - } - - static class RepeatableRegistrar extends Registrar { - - @Override - public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) { - AnnotationAttributes mapperScansAttrs = AnnotationAttributes - .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.List.class.getName())); - if (mapperScansAttrs != null) { - for (AnnotationAttributes annoAttrs : mapperScansAttrs.getAnnotationArray("value")) { - this.registerBeanDefinitions(annoAttrs, registry); - } - } - } - - } - -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java deleted file mode 100644 index 23c7bd2..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS; - -import java.util.Collections; -import java.util.Optional; -import java.util.Set; - -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry; -import org.springframework.beans.PropertyValue; -import org.springframework.beans.factory.config.BeanDefinition; -import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; -import org.springframework.nativex.hint.TypeAccess; - -/** - * Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the {@code BeanFactory}. - * - * @author Kazuki Shimizu - */ -public class MyBatisScannedResourcesNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor { - - private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, - PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, - QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS }; - - /** - * {@inheritDoc} - */ - @Override - public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) { - String[] beanNames = beanFactory.getBeanNamesForType(MyBatisScannedResourcesHolder.class); - for (String beanName : beanNames) { - BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName); - @SuppressWarnings("unchecked") - Set resourceLocations = (Set) Optional - .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("resourceLocations")) - .map(PropertyValue::getValue).orElse(Collections.emptySet()); - resourceLocations.forEach(x -> registry.resources().add(NativeResourcesEntry.of(x))); - @SuppressWarnings("unchecked") - Set> reflectionClasses = (Set>) Optional - .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionClasses")) - .map(PropertyValue::getValue).orElse(Collections.emptySet()); - TypeAccess[] reflectionTypeAccesses = (TypeAccess[]) Optional - .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionTypeAccesses")) - .map(PropertyValue::getValue).orElse(DEFAULT_TYPE_ACCESSES); - reflectionClasses.forEach(x -> registry.reflection().forType(x) - .withAccess(reflectionTypeAccesses.length == 0 ? DEFAULT_TYPE_ACCESSES : reflectionTypeAccesses).build()); - } - } - -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.java b/core/src/main/java/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.java deleted file mode 100644 index 297b6b0..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; - -import org.mybatis.spring.SqlSessionFactoryBean; -import org.mybatis.spring.SqlSessionTemplate; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.ResourceHint; -import org.springframework.nativex.hint.TypeHint; -import org.springframework.nativex.type.NativeConfiguration; - -/** - * Registers hints to make a MyBatis Spring component work in a Spring Native context. - * - * @author Kazuki Shimizu - */ -// @formatter:off -@NativeHint( - trigger = SqlSessionTemplate.class, - resources = @ResourceHint( - patterns = "org/mybatis/spring/config/.*.xsd" - ) -) -@TypeHint( - types = SqlSessionFactoryBean.class, - access = { - PUBLIC_CONSTRUCTORS, - PUBLIC_CLASSES, - PUBLIC_FIELDS, - PUBLIC_METHODS, - DECLARED_CLASSES, - DECLARED_CONSTRUCTORS, - DECLARED_FIELDS, - DECLARED_METHODS - } -) -// @formatter:on -public class MyBatisSpringNativeConfiguration implements NativeConfiguration { -} diff --git a/core/src/main/java/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java b/core/src/main/java/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java deleted file mode 100644 index afac990..0000000 --- a/core/src/main/java/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.autoconfigure; - -import java.util.List; - -import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer; -import org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration; -import org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer; -import org.mybatis.spring.nativex.MyBatisScannedResourcesHolder; -import org.springframework.boot.autoconfigure.AutoConfigureBefore; -import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; -import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.core.io.ClassPathResource; -import org.springframework.core.io.Resource; - -/** - * The configuration class that configure automatically for spring-native. - * - * @author Kazuki Shimizu - */ -@Configuration -@ConditionalOnClass({ org.apache.ibatis.session.Configuration.class, SqlSessionFactoryBeanCustomizer.class }) -@AutoConfigureBefore(MybatisAutoConfiguration.class) -public class MyBatisSpringNativeAutoConfiguration { - - @ConditionalOnBean(MyBatisScannedResourcesHolder.class) - @Bean - ConfigurationCustomizer mybatisScannedResourcesHolderConfigurationCustomizer( - List holders) { - return configuration -> holders.forEach(holder -> { - holder.getTypeAliasesClasses().forEach(configuration.getTypeAliasRegistry()::registerAlias); - holder.getTypeHandlerClasses().forEach(configuration.getTypeHandlerRegistry()::register); - }); - } - - @ConditionalOnBean(MyBatisScannedResourcesHolder.class) - @Bean - SqlSessionFactoryBeanCustomizer mybatisScannedResourcesHolderSqlSessionFactoryBeanCustomizer( - List holders) { - return factoryBean -> { - Resource[] resources = holders.stream() - .flatMap(holder -> holder.getMapperLocations().stream().map(ClassPathResource::new)).toArray(Resource[]::new); - if (resources.length > 0) { - factoryBean.setMapperLocations(resources); - } - }; - } - -} diff --git a/core/src/main/resources/META-INF/spring.factories b/core/src/main/resources/META-INF/spring.factories deleted file mode 100644 index 911d0e7..0000000 --- a/core/src/main/resources/META-INF/spring.factories +++ /dev/null @@ -1,26 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor=\ - org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor,\ - org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor -org.springframework.context.annotation.BeanDefinitionPostProcessor=\ - org.mybatis.spring.nativex.MyBatisMapperFactoryBeanPostProcessor -org.springframework.nativex.type.NativeConfiguration=\ - org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration,\ - org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration -org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ - org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration diff --git a/core/src/site/site.xml b/core/src/site/site.xml deleted file mode 100644 index b70b171..0000000 --- a/core/src/site/site.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/core/src/test/gradle_resources/mapper/gradle_output/GradleOutputMapper.xml b/core/src/test/gradle_resources/mapper/gradle_output/GradleOutputMapper.xml deleted file mode 100644 index fd06057..0000000 --- a/core/src/test/gradle_resources/mapper/gradle_output/GradleOutputMapper.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - diff --git a/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.java b/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.java deleted file mode 100644 index 8ef4c55..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import org.assertj.core.api.Assertions; -import org.junit.jupiter.api.Test; -import org.mybatis.spring.mapper.MapperFactoryBean; -import org.mybatis.spring.nativex.mapper.SampleMapper; -import org.springframework.beans.factory.support.BeanDefinitionBuilder; -import org.springframework.beans.factory.support.DefaultListableBeanFactory; -import org.springframework.beans.factory.support.RootBeanDefinition; - -/** - * Test cases for {@link MyBatisMapperFactoryBeanPostProcessor}. - * - * @author Kazuki Shimizu - */ -class MyBatisMapperFactoryBeanPostProcessorTest { - - @Test - void resolveMapperInterfaceType() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder - .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class) - .getBeanDefinition(); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse(); - Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean.class); - Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1); - Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class); - } - - @Test - void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithOneGeneric() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder - .rootBeanDefinition(MapperFactoryBean2.class).addPropertyValue("mapperInterface", SampleMapper.class) - .getBeanDefinition(); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse(); - Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean2.class); - Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1); - Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class); - } - - @Test - void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithoutGeneric() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder - .rootBeanDefinition(SampleMapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class) - .getBeanDefinition(); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse(); - } - - // TODO Now this case is limitation using MapperFactoryBean's subclass - @Test - void failResolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithMultiGenerics() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder - .rootBeanDefinition(MapperFactoryBean3.class).addPropertyValue("mapperInterface", SampleMapper.class) - .getBeanDefinition(); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - Assertions.assertThatIllegalArgumentException().isThrownBy(() -> postProcess(beanDefinition)).withMessage( - "Mismatched number of generics specified for private static class org.mybatis.spring.nativex.MyBatisMapperFactoryBeanPostProcessorTest$MapperFactoryBean3"); - } - - @Test - void skipResolveMapperInterfaceTypeWhenNotPresentMapperInterface() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder - .rootBeanDefinition(MapperFactoryBean.class).getBeanDefinition(); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - Assertions.assertThat(beanDefinition.getTargetType()).isNull(); - } - - @Test - void skipResolveMapperInterfaceTypeWhenFailGetMapperInterface() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder - .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", "invalid value") - .getBeanDefinition(); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue(); - Assertions.assertThat(beanDefinition.getTargetType()).isNull(); - } - - @Test - void skipResolveMapperInterfaceTypeWhenNotPresentBeanClass() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition((Class) null) - .getBeanDefinition(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getTargetType()).isNull(); - } - - @Test - void skipResolveMapperInterfaceTypeWhenBeanClassNotMapperBeanFactory() { - RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition(String.class) - .getBeanDefinition(); - postProcess(beanDefinition); - Assertions.assertThat(beanDefinition.getTargetType()).isNull(); - } - - private void postProcess(RootBeanDefinition beanDefinition) { - DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); - MyBatisMapperFactoryBeanPostProcessor processor = new MyBatisMapperFactoryBeanPostProcessor(); - processor.setBeanFactory(beanFactory); - processor.postProcessBeanDefinition("testBean", beanDefinition); - } - - private static class MapperFactoryBean2 extends MapperFactoryBean { - } - - @SuppressWarnings("unused") - private static class MapperFactoryBean3 extends MapperFactoryBean { - } - - private static class SampleMapperFactoryBean extends MapperFactoryBean { - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.java b/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.java deleted file mode 100644 index 414ea54..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.java +++ /dev/null @@ -1,274 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS; - -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.stream.Collectors; - -import org.assertj.core.api.Assertions; -import org.junit.jupiter.api.Test; -import org.mybatis.spring.mapper.MapperFactoryBean; -import org.mybatis.spring.nativex.mapper.Sample2Mapper; -import org.mybatis.spring.nativex.mapper.Sample3Mapper; -import org.mybatis.spring.nativex.mapper.SampleMapper; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry; -import org.springframework.beans.factory.config.RuntimeBeanNameReference; -import org.springframework.beans.factory.support.BeanDefinitionBuilder; -import org.springframework.beans.factory.support.DefaultListableBeanFactory; -import org.springframework.nativex.domain.proxies.JdkProxyDescriptor; -import org.springframework.nativex.domain.proxies.ProxiesDescriptor; -import org.springframework.nativex.hint.TypeAccess; - -/** - * Test cases for {@link MyBatisMapperNativeConfigurationProcessor}. - * - * @author Kazuki Shimizu - */ -class MyBatisMapperNativeConfigurationProcessorTest { - - private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, - PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, - QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS }; - - @Test - @SuppressWarnings("java:S5961") - void registerMapperInterfaceAndRelationships() { - DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); - beanFactory.registerBeanDefinition("sampleMapper", - BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class) - .addPropertyValue("mapperInterface", SampleMapper.class) - .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate")) - .getBeanDefinition()); - NativeConfigurationRegistry registry = process(beanFactory); - // reflection hint - { - Map, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries() - .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x)); - Assertions.assertThat(entries).hasSize(13); - // mapper interface - Assertions.assertThat(entries.get(SampleMapper.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - // mapper method argument and return type - Assertions.assertThat(entries.get(SampleMapper.Sample.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.SampleParam.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.Sample2.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.Sample2Param.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - // sql provider - Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass1.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass2.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass1.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass2.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass1.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass2.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass1.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass2.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - } - // proxy hint - { - List entries = new ArrayList<>(registry.proxy().getEntries()); - Assertions.assertThat(entries).hasSize(1); - ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor(); - entries.forEach(x -> x.contribute(proxiesDescriptor)); - List jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors()); - Assertions.assertThat(jdkProxyDescriptors).hasSize(1); - Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> { - Assertions.assertThat(x.isClassProxy()).isFalse(); - Assertions.assertThat(x.getTypes()).containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.SampleMapper"); - }); - } - // resource hint - { - Set resources = registry.resources().toResourcesDescriptor().getPatterns(); - Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/SampleMapper.xml"); - } - } - - @Test - void registerMultiMapperInterface() { - DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); - beanFactory.registerBeanDefinition("sample2Mapper", - BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class) - .addPropertyValue("mapperInterface", Sample2Mapper.class) - .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate")) - .getBeanDefinition()); - beanFactory.registerBeanDefinition("sample3Mapper", - BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class) - .addPropertyValue("mapperInterface", Sample3Mapper.class) - .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate")) - .getBeanDefinition()); - NativeConfigurationRegistry registry = process(beanFactory); - // reflection hint - { - Map, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries() - .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x)); - Assertions.assertThat(entries).hasSize(2); - // mapper interface - Assertions.assertThat(entries.get(Sample2Mapper.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - Assertions.assertThat(entries.get(Sample3Mapper.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - } - // proxy hint - { - List entries = new ArrayList<>(registry.proxy().getEntries()); - Assertions.assertThat(entries).hasSize(2); - ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor(); - entries.forEach(x -> x.contribute(proxiesDescriptor)); - List jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors()); - Assertions.assertThat(jdkProxyDescriptors).hasSize(2); - Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> { - Assertions.assertThat(x.isClassProxy()).isFalse(); - Assertions.assertThat(x.getTypes()) - .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper"); - }); - Assertions.assertThat(jdkProxyDescriptors.get(1)).satisfies(x -> { - Assertions.assertThat(x.isClassProxy()).isFalse(); - Assertions.assertThat(x.getTypes()) - .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample3Mapper"); - }); - } - // resource hint - { - Set resources = registry.resources().toResourcesDescriptor().getPatterns(); - Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml", - "org/mybatis/spring/nativex/mapper/Sample3Mapper.xml"); - } - } - - @Test - void registerMapperInterfaceWithMapperFactoryBeanSubclass() { - DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); - beanFactory.registerBeanDefinition("sample2Mapper", - BeanDefinitionBuilder.rootBeanDefinition(MyMapperFactoryBean.class) - .addPropertyValue("mapperInterface", Sample2Mapper.class) - .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate")) - .getBeanDefinition()); - NativeConfigurationRegistry registry = process(beanFactory); - // reflection hint - { - Map, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries() - .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x)); - Assertions.assertThat(entries).hasSize(1); - // mapper interface - Assertions.assertThat(entries.get(Sample2Mapper.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES)); - } - // proxy hint - { - List entries = new ArrayList<>(registry.proxy().getEntries()); - Assertions.assertThat(entries).hasSize(1); - ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor(); - entries.forEach(x -> x.contribute(proxiesDescriptor)); - List jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors()); - Assertions.assertThat(jdkProxyDescriptors).hasSize(1); - Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> { - Assertions.assertThat(x.isClassProxy()).isFalse(); - Assertions.assertThat(x.getTypes()) - .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper"); - }); - } - // resource hint - { - Set resources = registry.resources().toResourcesDescriptor().getPatterns(); - Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml"); - } - } - - @Test - void skipRegisterWhenMapperInterfaceNotPresent() { - DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); - beanFactory.registerBeanDefinition("sample2Mapper", - BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class) - .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate")) - .getBeanDefinition()); - NativeConfigurationRegistry registry = process(beanFactory); - // reflection hint - { - Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty(); - } - // proxy hint - { - Assertions.assertThat(registry.proxy().getEntries()).isEmpty(); - } - // resource hint - { - Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty(); - } - } - - @Test - void skipRegisterWhenMapperInterfaceIsNull() { - DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); - beanFactory.registerBeanDefinition("sample2Mapper", - BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", null) - .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate")) - .getBeanDefinition()); - NativeConfigurationRegistry registry = process(beanFactory); - // reflection hint - { - Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty(); - } - // proxy hint - { - Assertions.assertThat(registry.proxy().getEntries()).isEmpty(); - } - // resource hint - { - Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty(); - } - } - - private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) { - NativeConfigurationRegistry registry = new NativeConfigurationRegistry(); - new MyBatisMapperNativeConfigurationProcessor().process(beanFactory, registry); - return registry; - } - - private static class MyMapperFactoryBean extends MapperFactoryBean { - - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.java b/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.java deleted file mode 100644 index ec83b71..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.java +++ /dev/null @@ -1,359 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import java.lang.reflect.Method; -import java.util.Arrays; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Optional; -import java.util.Set; -import java.util.concurrent.ConcurrentMap; -import java.util.stream.Collectors; - -import org.assertj.core.api.Assertions; -import org.junit.jupiter.api.Test; -import org.springframework.util.ReflectionUtils; - -class MyBatisMapperTypeUtilsTest { - - @Test - void resolveReturnClassWithFinalValueClass() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findString")); - Assertions.assertThat(type).isEqualTo(String.class); - } - - @Test - void resolveReturnClassWithAbstractValueClass() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findNumber")); - Assertions.assertThat(type).isEqualTo(Number.class); - } - - @Test - void resolveReturnClassWithTopLayerInterface() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findCharSequence")); - Assertions.assertThat(type).isEqualTo(CharSequence.class); - } - - @Test - void resolveReturnClassWithPrimitive() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findInt")); - Assertions.assertThat(type).isEqualTo(int.class); - } - - @Test - void resolveReturnClassWithPrimitiveWrapper() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findLong")); - Assertions.assertThat(type).isEqualTo(Long.class); - } - - @Test - void resolveReturnClassWithPrimitiveVoid() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "insert")); - Assertions.assertThat(type).isEqualTo(void.class); - } - - @Test - void resolveReturnClassWithClassVoid() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "insertWithClassVoid")); - Assertions.assertThat(type).isEqualTo(Void.class); - } - - @Test - void resolveReturnClassWithSimpleBean() { - Class mapper = TestMapper1.class; - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBean")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - - @Test - void resolveReturnClassWithSimpleBeanInCollection() { - Class mapper = TestMapper1.class; - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanList")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanCollection")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanIterable")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanArray")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanMap")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - } - - @Test - void resolveReturnClassWithSimpleBeanInMap() { - Class mapper = TestMapper1.class; - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanMap")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - } - - @Test - void resolveReturnClassWithOptional() { - Class mapper = TestMapper1.class; - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findStringWithOptional")); - Assertions.assertThat(type).isEqualTo(String.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleBeanWithOptional")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - } - - @Test - void resolveReturnClassWithWildcard() { - Class mapper = TestMapper1.class; - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleWildcardList")); - Assertions.assertThat(type).isEqualTo(List.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - ReflectionUtils.findMethod(mapper, "findSimpleGenericsWildcardList")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - } - - @Test - void resolveReturnClassWithGenericsMapper() { - Class mapper = TestMapper2.class; - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper)) - .collect(Collectors.toMap(Method::getName, x -> x)).get("findOne")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - { - Class type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, - Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper)) - .collect(Collectors.toMap(Method::getName, x -> x)).get("findAll")); - Assertions.assertThat(type).isEqualTo(MyBean.class); - } - } - - @Test - void resolveParameterClassesSingleBean() { - Class mapper = TestMapper3.class; - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithBean", MyBean.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - - @Test - void resolveParameterClassesMultiBean() { - Class mapper = TestMapper3.class; - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithMultiBean", MyBeanKey.class, MyBean.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBeanKey.class, MyBean.class); - } - - @Test - void resolveParameterClassesWithBeanInMap() { - Class mapper = TestMapper3.class; - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithMap", Map.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithFixKeyMap", MyFixKeyMap.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithFixValueMap", MyFixValueMap.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(Integer.class); - } - } - - @Test - void resolveParameterClassesWithBeanInCollection() { - Class mapper = TestMapper3.class; - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithBeanInList", List.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithBeanInCollection", Collection.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithBeanInIterable", Iterable.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithBeanInArray", MyBean[].class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - } - - @Test - void resolveParameterClassesWithWildcard() { - Class mapper = TestMapper3.class; - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithWildcardInList", List.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(Object.class); - } - { - Set> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper, - ReflectionUtils.findMethod(mapper, "insertWithGenericsWildcardInList", List.class)); - Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class); - } - } - - @SuppressWarnings("unused") - interface TestMapper1 { - - String findString(); - - CharSequence findCharSequence(); - - Number findNumber(); - - Long findLong(); - - int findInt(); - - void insert(); - - Void insertWithClassVoid(); - - MyBean findSimpleBean(); - - List findSimpleBeanList(); - - Collection findSimpleBeanCollection(); - - Iterable findSimpleBeanIterable(); - - Map findSimpleBeanMap(); - - ConcurrentMap findSimpleBeanConcurrentMap(); - - MyBean[] findSimpleBeanArray(); - - Optional findStringWithOptional(); - - Optional findSimpleBeanWithOptional(); - - List findSimpleWildcardList(); - - List findSimpleGenericsWildcardList(); - - } - - interface TestMapper2 extends BaseMapper { - } - - @SuppressWarnings("unused") - interface TestMapper3 { - void insertWithBean(MyBean bean); - - void insertWithBeanInList(List beans); - - void insertWithBeanInCollection(Collection beans); - - void insertWithBeanInIterable(Iterable beans); - - void insertWithBeanInArray(MyBean[] beans); - - void insertWithMultiBean(MyBeanKey key, MyBean bean); - - void insertWithMap(Map beans); - - void insertWithFixKeyMap(MyFixKeyMap beans); - - void insertWithFixValueMap(MyFixValueMap beans); - - void insertWithWildcardInList(List beans); - - void insertWithGenericsWildcardInList(List beans); - } - - @SuppressWarnings("unused") - interface BaseMapper { - T findOne(K key); - - Collection findAll(); - } - - static class MyBean { - - } - - static class MyBeanKey { - - } - - static class MyFixKeyMap extends HashMap { - - } - - static class MyFixValueMap extends HashMap { - - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/MyBatisResourcesScanTest.java b/core/src/test/java/org/mybatis/spring/nativex/MyBatisResourcesScanTest.java deleted file mode 100644 index 781fe2b..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/MyBatisResourcesScanTest.java +++ /dev/null @@ -1,340 +0,0 @@ -/* - * Copyright 2022-2023 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import java.net.URLClassLoader; -import java.util.Objects; -import java.util.Set; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -import org.assertj.core.api.Assertions; -import org.junit.jupiter.api.Test; -import org.mybatis.spring.nativex.component.AbstractTypeHandler; -import org.mybatis.spring.nativex.component.BarService; -import org.mybatis.spring.nativex.component.BarTypeHandler; -import org.mybatis.spring.nativex.component.FooTypeHandler; -import org.mybatis.spring.nativex.component.TypeHandlers; -import org.mybatis.spring.nativex.component2.AnyTypeHandler; -import org.mybatis.spring.nativex.entity.City; -import org.mybatis.spring.nativex.entity.Country; -import org.mybatis.spring.nativex.marker.StandardEntity; -import org.springframework.context.annotation.AnnotationConfigApplicationContext; -import org.springframework.context.annotation.Configuration; -import org.springframework.nativex.hint.TypeAccess; -import org.springframework.util.ClassUtils; - -class MyBatisResourcesScanTest { - - @Test - void scanTypeAliases() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanTypeAliases.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class); - Assertions.assertThat(holder.getMapperLocations()).isEmpty(); - Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty(); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class); - Assertions.assertThat(holder.getResourceLocations()).isEmpty(); - Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty(); - } - - @Test - void scanTypeAliasesWithSupperType() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanTypeAliasesWithSupperType.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(Country.class); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class); - } - - @Test - void scanTypeAliasesWithMultiPackage() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanTypeAliasesWithMultiPackage.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class, - BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class); - Assertions.assertThat(holder.getMapperLocations()).isEmpty(); - Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty(); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class, - BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class); - Assertions.assertThat(holder.getResourceLocations()).isEmpty(); - Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty(); - } - - @Test - void scanTypeHandler() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanTypeHandler.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty(); - Assertions.assertThat(holder.getMapperLocations()).isEmpty(); - Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class, - BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class, - BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class); - Assertions.assertThat(holder.getResourceLocations()).isEmpty(); - Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty(); - } - - @Test - void scanTypeHandlerWithMultiPackage() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanTypeHandlerWithMultiPackage.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class, - BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class, - BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class); - } - - @Test - void scanMapperLocations() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanMapperLocations.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty(); - Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml", - "mapper/sub1/FooMapper.xml"); - Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty(); - Assertions.assertThat(holder.getReflectionClasses()).isEmpty(); - Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml", - "mapper/sub1/FooMapper.xml"); - Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty(); - } - - @Test - void scanMapperLocationsWithMultiPattern() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanMapperLocationsWithMultiPattern.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml", - "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd"); - Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml", - "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd"); - } - - @Test - void scanReflectionType() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanReflectionType.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty(); - Assertions.assertThat(holder.getMapperLocations()).isEmpty(); - Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty(); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class); - Assertions.assertThat(holder.getResourceLocations()).isEmpty(); - Assertions.assertThat(holder.getReflectionTypeAccesses()).containsExactlyInAnyOrder(TypeAccess.DECLARED_CLASSES); - } - - @Test - void scanReflectionTypeWithSupperType() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanReflectionTypeWithSuperType.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class); - } - - @Test - void scanReflectionTypeWithMultiPackage() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanReflectionTypeWithMultiPackage.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class, - BarService.class, BarTypeHandler.class, FooTypeHandler.class, TypeHandlers.class); - } - - @Test - void scanResourceLocations() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanResourceLocations.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty(); - Assertions.assertThat(holder.getMapperLocations()).isEmpty(); - Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty(); - Assertions.assertThat(holder.getReflectionClasses()).isEmpty(); - Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml", - "mapper/sub1/FooMapper.xml"); - Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty(); - } - - @Test - void scanResourceLocationsWithGradleBuildOutput() throws Exception { - String currentDir = Objects.requireNonNull(getClass().getResource("")).getPath(); - String projectDir = currentDir.substring(0, currentDir.indexOf("/target/test-classes")); - SimulateGradleBuildResourcesURLClassLoader classLoader = new SimulateGradleBuildResourcesURLClassLoader( - projectDir + "/src/test/gradle_resources/", getClass().getClassLoader()); - ClassUtils.overrideThreadContextClassLoader(classLoader); - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanResourceLocationsWithGradleOutputResources.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty(); - Assertions.assertThat(holder.getMapperLocations()).isEmpty(); - Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty(); - Assertions.assertThat(holder.getReflectionClasses()).isEmpty(); - Assertions.assertThat(holder.getResourceLocations()) - .containsExactlyInAnyOrder("mapper/gradle_output/GradleOutputMapper.xml"); - Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty(); - } - - @Test - void scanResourceLocationsWithMultiPattern() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForScanResourceLocationsWithMultiPattern.class); - context.refresh(); - MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class); - Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml", - "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd"); - } - - @Test - void scanRepeat() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForRepeat.class); - context.refresh(); - Set list = Stream - .of(context.getBeanNamesForType(MyBatisScannedResourcesHolder.class)) - .map(x -> context.getBean(x, MyBatisScannedResourcesHolder.class)).collect(Collectors.toSet()); - Set> typeAliasesClasses = list.stream().flatMap(x -> x.getTypeAliasesClasses().stream()) - .collect(Collectors.toSet()); - Set> typeHandlerClasses = list.stream().flatMap(x -> x.getTypeHandlerClasses().stream()) - .collect(Collectors.toSet()); - Set> reflectionClasses = list.stream().flatMap(x -> x.getReflectionClasses().stream()) - .collect(Collectors.toSet()); - Set mapperLocations = list.stream().flatMap(x -> x.getMapperLocations().stream()) - .collect(Collectors.toSet()); - Set resourceLocations = list.stream().flatMap(x -> x.getResourceLocations().stream()) - .collect(Collectors.toSet()); - Assertions.assertThat(typeAliasesClasses).containsExactlyInAnyOrder(Country.class, City.class); - Assertions.assertThat(typeHandlerClasses).containsExactlyInAnyOrder(FooTypeHandler.class, BarTypeHandler.class, - TypeHandlers.InnerTypeHandler.class); - Assertions.assertThat(reflectionClasses).containsExactlyInAnyOrder(Country.class, City.class, FooTypeHandler.class, - BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class); - Assertions.assertThat(mapperLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml", - "mapper/sub1/BarMapper.xml"); - Assertions.assertThat(resourceLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml", - "mapper/sub2/AnyMapper.xml", "mapper/sub1/BarMapper.xml"); - } - - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity") - @Configuration - static class ConfigurationForScanTypeAliases { - } - - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAliasesSupperType = StandardEntity.class) - @Configuration - static class ConfigurationForScanTypeAliasesWithSupperType { - } - - @MyBatisResourcesScan(typeAliasesPackages = { "org.mybatis.spring.nativex.entity", - "org.mybatis.spring.nativex.component" }) - @Configuration - static class ConfigurationForScanTypeAliasesWithMultiPackage { - } - - @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component") - @Configuration - static class ConfigurationForScanTypeHandler { - } - - @MyBatisResourcesScan(typeHandlerPackages = { "org.mybatis.spring.nativex.component", - "org.mybatis.spring.nativex.component2" }) - @Configuration - static class ConfigurationForScanTypeHandlerWithMultiPackage { - } - - @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*") - @Configuration - static class ConfigurationForScanMapperLocations { - } - - @MyBatisResourcesScan(mapperLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" }) - @Configuration - static class ConfigurationForScanMapperLocationsWithMultiPattern { - } - - @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", typeAccesses = TypeAccess.DECLARED_CLASSES) - @Configuration - static class ConfigurationForScanReflectionType { - } - - @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", reflectionTypeSupperType = StandardEntity.class, typeAccesses = TypeAccess.DECLARED_CLASSES) - @Configuration - static class ConfigurationForScanReflectionTypeWithSuperType { - } - - @MyBatisResourcesScan(reflectionTypePackages = { "org.mybatis.spring.nativex.entity", - "org.mybatis.spring.nativex.component" }) - @Configuration - static class ConfigurationForScanReflectionTypeWithMultiPackage { - } - - @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub1/*.*") - @Configuration - static class ConfigurationForScanResourceLocations { - } - - @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/gradle_output/*.*" }) - @Configuration - static class ConfigurationForScanResourceLocationsWithGradleOutputResources { - } - - @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" }) - @Configuration - static class ConfigurationForScanResourceLocationsWithMultiPattern { - } - - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity") - @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component") - @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*") - @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2") - @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*") - @Configuration - static class ConfigurationForRepeat { - - } - - private static class SimulateGradleBuildResourcesURLClassLoader extends URLClassLoader { - - public SimulateGradleBuildResourcesURLClassLoader(String path, ClassLoader classLoader) - throws MalformedURLException { - super(new URL[] { new File(path).toURI().toURL() }, classLoader); - } - - @Override - public void addURL(URL url) { - super.addURL(url); - } - - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.java b/core/src/test/java/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.java deleted file mode 100644 index 4182842..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.java +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.*; -import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS; - -import java.util.Map; -import java.util.Set; -import java.util.stream.Collectors; - -import org.assertj.core.api.Assertions; -import org.junit.jupiter.api.Test; -import org.mybatis.spring.nativex.component.BarTypeHandler; -import org.mybatis.spring.nativex.component.FooTypeHandler; -import org.mybatis.spring.nativex.component.TypeHandlers; -import org.mybatis.spring.nativex.component2.AnyTypeHandler; -import org.mybatis.spring.nativex.entity.City; -import org.mybatis.spring.nativex.entity.Country; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry; -import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry; -import org.springframework.beans.factory.support.DefaultListableBeanFactory; -import org.springframework.context.annotation.AnnotationConfigApplicationContext; -import org.springframework.context.annotation.Configuration; -import org.springframework.nativex.hint.TypeAccess; - -class MyBatisScannedResourcesNativeConfigurationProcessorTest { - - private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, - PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, - QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS }; - - @Test - void empty() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.refresh(); - NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory()); - // reflection hint - { - Map, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries() - .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x)); - Assertions.assertThat(entries).isEmpty(); - } - // resource hint - { - Set resources = registry.resources().toResourcesDescriptor().getPatterns(); - Assertions.assertThat(resources).isEmpty(); - } - } - - @Test - void one() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForOne.class); - context.refresh(); - NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory()); - // reflection hint - { - Map, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries() - .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x)); - Assertions.assertThat(entries).hasSize(2); - Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray()) - .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS })); - Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray()) - .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS })); - } - // resource hint - { - Set resources = registry.resources().toResourcesDescriptor().getPatterns(); - Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml", - "mapper/sub1/FooMapper.xml"); - } - } - - @Test - void multi() { - AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); - context.registerBean(ConfigurationForMulti.class); - context.refresh(); - NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory()); - // reflection hint - { - Map, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries() - .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x)); - Assertions.assertThat(entries).hasSize(6); - Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray()) - .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS })); - Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray()) - .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS })); - Assertions.assertThat(entries.get(FooTypeHandler.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES)); - Assertions.assertThat(entries.get(BarTypeHandler.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES)); - Assertions.assertThat(entries.get(AnyTypeHandler.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES)); - Assertions.assertThat(entries.get(TypeHandlers.InnerTypeHandler.class)) - .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES)); - } - // resource hint - { - Set resources = registry.resources().toResourcesDescriptor().getPatterns(); - Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml", - "mapper/sub1/FooMapper.xml", "mapper/sub2/AnyMapper.xml"); - } - - } - - private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) { - NativeConfigurationRegistry registry = new NativeConfigurationRegistry(); - new MyBatisScannedResourcesNativeConfigurationProcessor().process(beanFactory, registry); - return registry; - } - - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", mapperLocationPatterns = "mapper/sub1/*.*", typeAccesses = { - TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS }) - @Configuration - static class ConfigurationForOne { - - } - - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAccesses = { - TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS }) - @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component") - @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*") - @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2") - @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*") - @Configuration - static class ConfigurationForMulti { - - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.java b/core/src/test/java/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.java deleted file mode 100644 index 99a6a39..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.java +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.autoconfigure; - -import java.util.stream.Collectors; - -import org.apache.ibatis.session.SqlSessionFactory; -import org.assertj.core.api.Assertions; -import org.junit.jupiter.api.AfterEach; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; -import org.mybatis.spring.nativex.MyBatisResourcesScan; -import org.mybatis.spring.nativex.component.AbstractTypeHandler; -import org.mybatis.spring.nativex.component.BarService; -import org.mybatis.spring.nativex.component.BarTypeHandler; -import org.mybatis.spring.nativex.component.FooTypeHandler; -import org.mybatis.spring.nativex.component.TypeHandlers; -import org.mybatis.spring.nativex.component2.AnyTypeHandler; -import org.mybatis.spring.nativex.entity.City; -import org.mybatis.spring.nativex.entity.Country; -import org.springframework.boot.autoconfigure.EnableAutoConfiguration; -import org.springframework.context.annotation.AnnotationConfigApplicationContext; -import org.springframework.context.annotation.Configuration; - -class MyBatisSpringNativeAutoConfigurationTest { - - private AnnotationConfigApplicationContext context; - - @BeforeEach - void init() { - this.context = new AnnotationConfigApplicationContext(); - } - - @AfterEach - void closeContext() { - if (this.context != null) { - this.context.close(); - } - } - - @Test - void empty() { - this.context.register(EmptyConfiguration.class); - this.context.refresh(); - SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(80); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(40); - Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty(); - } - - @Test - void single() { - this.context.register(SingleConfiguration.class); - this.context.refresh(); - SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class); - { - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city")) - .isEqualTo(City.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country")) - .isEqualTo(Country.class); - } - { - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder( - "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select"); - } - } - - @Test - void singleWithoutMapperLocation() { - this.context.register(SingleConfigurationWithoutMapperLocation.class); - this.context.refresh(); - SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43); - Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty(); - } - - @Test - void multi() { - this.context.register(MultiConfiguration.class); - this.context.refresh(); - SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class); - { - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(87); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city")) - .isEqualTo(City.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country")) - .isEqualTo(Country.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("abstracttypehandler")) - .isEqualTo(AbstractTypeHandler.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("barservice")) - .isEqualTo(BarService.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("bartypehandler")) - .isEqualTo(BarTypeHandler.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("footypehandler")) - .isEqualTo(FooTypeHandler.class); - Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("typehandlers")) - .isEqualTo(TypeHandlers.class); - } - { - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(44); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream() - .filter(AnyTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty(); - Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder( - "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select"); - } - } - - @EnableAutoConfiguration - @Configuration - static class EmptyConfiguration { - - } - - @EnableAutoConfiguration - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component", mapperLocationPatterns = "mapper/**/*.xml") - @Configuration - static class SingleConfiguration { - - } - - @EnableAutoConfiguration - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component") - @Configuration - static class SingleConfigurationWithoutMapperLocation { - - } - - @EnableAutoConfiguration - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity") - @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.component") - @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component") - @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component2") - @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.xml") - @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub2/*.xml") - @Configuration - static class MultiConfiguration { - - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/AbstractTypeHandler.java b/core/src/test/java/org/mybatis/spring/nativex/component/AbstractTypeHandler.java deleted file mode 100644 index e59202e..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/AbstractTypeHandler.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -import org.apache.ibatis.type.BaseTypeHandler; - -public abstract class AbstractTypeHandler extends BaseTypeHandler { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/BarService.java b/core/src/test/java/org/mybatis/spring/nativex/component/BarService.java deleted file mode 100644 index 3123813..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/BarService.java +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -public class BarService { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/BarTypeHandler.java b/core/src/test/java/org/mybatis/spring/nativex/component/BarTypeHandler.java deleted file mode 100644 index cb9af91..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/BarTypeHandler.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -import java.sql.CallableStatement; -import java.sql.PreparedStatement; -import java.sql.ResultSet; - -import org.apache.ibatis.type.BaseTypeHandler; -import org.apache.ibatis.type.JdbcType; - -public class BarTypeHandler extends BaseTypeHandler { - - @Override - public void setNonNullParameter(PreparedStatement ps, int i, Integer parameter, JdbcType jdbcType) { - } - - @Override - public Integer getNullableResult(ResultSet rs, String columnName) { - return null; - } - - @Override - public Integer getNullableResult(ResultSet rs, int columnIndex) { - return null; - } - - @Override - public Integer getNullableResult(CallableStatement cs, int columnIndex) { - return null; - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/FooTypeHandler.java b/core/src/test/java/org/mybatis/spring/nativex/component/FooTypeHandler.java deleted file mode 100644 index e6af61c..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/FooTypeHandler.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -import java.sql.CallableStatement; -import java.sql.PreparedStatement; -import java.sql.ResultSet; - -import org.apache.ibatis.type.BaseTypeHandler; -import org.apache.ibatis.type.JdbcType; - -public class FooTypeHandler extends BaseTypeHandler { - - @Override - public void setNonNullParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) { - } - - @Override - public String getNullableResult(ResultSet rs, String columnName) { - return null; - } - - @Override - public String getNullableResult(ResultSet rs, int columnIndex) { - return null; - } - - @Override - public String getNullableResult(CallableStatement cs, int columnIndex) { - return null; - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/MyAnnotation.java b/core/src/test/java/org/mybatis/spring/nativex/component/MyAnnotation.java deleted file mode 100644 index 593447a..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/MyAnnotation.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -@SuppressWarnings("unused") -public @interface MyAnnotation { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.java b/core/src/test/java/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.java deleted file mode 100644 index 4a8316e..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -import org.apache.ibatis.type.TypeHandler; - -@SuppressWarnings("unused") -public interface MyTypeHandlerInterface extends TypeHandler { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component/TypeHandlers.java b/core/src/test/java/org/mybatis/spring/nativex/component/TypeHandlers.java deleted file mode 100644 index d23d5a1..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component/TypeHandlers.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component; - -import java.sql.CallableStatement; -import java.sql.PreparedStatement; -import java.sql.ResultSet; - -import org.apache.ibatis.type.JdbcType; -import org.apache.ibatis.type.TypeHandler; - -public class TypeHandlers { - - @SuppressWarnings("unused") - BarTypeHandler anonymous = new BarTypeHandler() { - @Override - public String toString() { - return super.toString(); - } - }; - - public static class InnerTypeHandler implements TypeHandler { - - @Override - public void setParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) { - - } - - @Override - public String getResult(ResultSet rs, String columnName) { - return null; - } - - @Override - public String getResult(ResultSet rs, int columnIndex) { - return null; - } - - @Override - public String getResult(CallableStatement cs, int columnIndex) { - return null; - } - } -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/component2/AnyTypeHandler.java b/core/src/test/java/org/mybatis/spring/nativex/component2/AnyTypeHandler.java deleted file mode 100644 index 80ea728..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/component2/AnyTypeHandler.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.component2; - -import java.math.BigDecimal; -import java.sql.CallableStatement; -import java.sql.PreparedStatement; -import java.sql.ResultSet; - -import org.apache.ibatis.type.BaseTypeHandler; -import org.apache.ibatis.type.JdbcType; - -public class AnyTypeHandler extends BaseTypeHandler { - - @Override - public void setNonNullParameter(PreparedStatement ps, int i, BigDecimal parameter, JdbcType jdbcType) { - } - - @Override - public BigDecimal getNullableResult(ResultSet rs, String columnName) { - return null; - } - - @Override - public BigDecimal getNullableResult(ResultSet rs, int columnIndex) { - return null; - } - - @Override - public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) { - return null; - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/entity/City.java b/core/src/test/java/org/mybatis/spring/nativex/entity/City.java deleted file mode 100644 index af8e8b4..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/entity/City.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.entity; - -public class City { - @SuppressWarnings("unused") - City anonymous = new City() { - @Override - public String toString() { - return super.toString(); - } - }; -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/entity/Country.java b/core/src/test/java/org/mybatis/spring/nativex/entity/Country.java deleted file mode 100644 index 75a0036..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/entity/Country.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.entity; - -import org.mybatis.spring.nativex.marker.StandardEntity; - -public class Country extends StandardEntity { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.java b/core/src/test/java/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.java deleted file mode 100644 index a09e84d..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.entity; - -@SuppressWarnings("unused") -public @interface EntityMarkerAnnotation { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/entity/EntityMarkerInterface.java b/core/src/test/java/org/mybatis/spring/nativex/entity/EntityMarkerInterface.java deleted file mode 100644 index 29fd7c5..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/entity/EntityMarkerInterface.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.entity; - -@SuppressWarnings("unused") -public interface EntityMarkerInterface { - - class MemberEntity { - - } - -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/mapper/Sample2Mapper.java b/core/src/test/java/org/mybatis/spring/nativex/mapper/Sample2Mapper.java deleted file mode 100644 index 3f2e1ed..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/mapper/Sample2Mapper.java +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.mapper; - -public class Sample2Mapper { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/mapper/Sample3Mapper.java b/core/src/test/java/org/mybatis/spring/nativex/mapper/Sample3Mapper.java deleted file mode 100644 index b5c3fb9..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/mapper/Sample3Mapper.java +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.mapper; - -public class Sample3Mapper { -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/mapper/SampleMapper.java b/core/src/test/java/org/mybatis/spring/nativex/mapper/SampleMapper.java deleted file mode 100644 index db57106..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/mapper/SampleMapper.java +++ /dev/null @@ -1,107 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.mapper; - -import java.math.BigDecimal; -import java.util.Collection; -import java.util.Collections; -import java.util.Date; - -import org.apache.ibatis.annotations.InsertProvider; -import org.apache.ibatis.annotations.SelectProvider; - -public interface SampleMapper { - - Sample find(SampleParam param); - - default Collection find(Collection params) { - return Collections.emptyList(); - } - - @SelectProvider(SelectProviderClass1.class) - String select1(); - - @SelectProvider(type = SelectProviderClass2.class) - BigDecimal select2(); - - @InsertProvider(InsertProviderClass1.class) - void insert1(); - - @InsertProvider(type = InsertProviderClass2.class) - boolean insert2(); - - @InsertProvider(UpdateProviderClass1.class) - Long update1(); - - @InsertProvider(type = UpdateProviderClass2.class) - Date update2(); - - @InsertProvider(DeleteProviderClass1.class) - Short delete1(); - - @InsertProvider(type = DeleteProviderClass2.class) - Object delete2(); - - int count(); - - class SampleParam { - - } - - class Sample { - - } - - class Sample2Param { - - } - - class Sample2 { - - } - - class SelectProviderClass1 { - - } - - class SelectProviderClass2 { - - } - - class InsertProviderClass1 { - - } - - class InsertProviderClass2 { - - } - - class UpdateProviderClass1 { - - } - - class UpdateProviderClass2 { - - } - - class DeleteProviderClass1 { - - } - - class DeleteProviderClass2 { - - } -} diff --git a/core/src/test/java/org/mybatis/spring/nativex/marker/StandardEntity.java b/core/src/test/java/org/mybatis/spring/nativex/marker/StandardEntity.java deleted file mode 100644 index 320e990..0000000 --- a/core/src/test/java/org/mybatis/spring/nativex/marker/StandardEntity.java +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.marker; - -public class StandardEntity { -} diff --git a/core/src/test/resources/mapper/sub1/BarMapper.xml b/core/src/test/resources/mapper/sub1/BarMapper.xml deleted file mode 100644 index 27081de..0000000 --- a/core/src/test/resources/mapper/sub1/BarMapper.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - diff --git a/core/src/test/resources/mapper/sub1/FooMapper.xml b/core/src/test/resources/mapper/sub1/FooMapper.xml deleted file mode 100644 index 1a8d4df..0000000 --- a/core/src/test/resources/mapper/sub1/FooMapper.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - diff --git a/core/src/test/resources/mapper/sub2/AnyMapper.xml b/core/src/test/resources/mapper/sub2/AnyMapper.xml deleted file mode 100644 index c989023..0000000 --- a/core/src/test/resources/mapper/sub2/AnyMapper.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - diff --git a/docs/LICENSE_HEADER b/docs/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/docs/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/docs/pom.xml b/docs/pom.xml deleted file mode 100644 index abd5e37..0000000 --- a/docs/pom.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native - 0.1.0-SNAPSHOT - - - mybatis-spring-native-docs - mybatis-spring-native-docs - Documents for MyBatis integration with Spring Native feature - - - org.mybatis.spring.nativex.docs - - - diff --git a/docs/src/site/ko/markdown/index.md b/docs/src/site/ko/markdown/index.md deleted file mode 100644 index f71913d..0000000 --- a/docs/src/site/ko/markdown/index.md +++ /dev/null @@ -1,178 +0,0 @@ -# 개요 - -## 마이바티스 스프링 네이티브란? - -마이바티스 스프링 네이티브는 [Spring Native](https://github.com/spring-projects-experimental/spring-native)에 MyBatis 애플리케이션을 빠르게 만들 수 있도록 도와줍니다. - -## 지원 기능 - -### 마이바티스 핵심 - -* SQL 주석(`@Select`/`@Insert`/기타 등등...)에 정적 SQLs과 동적 SQLs(OGNL 표현식으로) 작성 -* 클래스경로와 로드 SQLs에 xml 파일 매퍼(mapper, 단계별 접근법) 기반으로 한 규칙 감지 (예시. 매퍼 인터페이스 정규화된 클래스 이름(FQCN)이 `com.example.SampleMapper`이면, `com/example/SampleMapper.xml` file를 찾아냅니다) -* SQL 제공자 사용(`@SelectProvider`/`@InsertProvider`/기타 등등...) -* Use built-in 2nd cache feature(in-memory 2nd cache) -* 빌트인 2단계 캐시 기능 - -### 마이바티스 스프링 - -* 자동 스캔 대신 `@MapperScan`을 이용한 스캔 매퍼 인터페이스 - -### 마이바티스 스프링 부트 - -* `SqlSessionFactory` 와 `SqlSessionTemplate`의 자동 설정합니다 -* `@Mapper`표기 된 매퍼 인터페이스 자동 스캔합니다 -* 환경설정 속성(`application.properties`)을 이용한 마이바티스 작동 습성 커스토마이즈 맞춤 설정합니다 -* DI 컨테이너에서 마이바티스 컴포넌트(`Interceptor`, `TypeHandler`, `LanguageDriver` 그리고 `DatabaseIdProvider`)를 찾아냅니다 -* DI 컨테이너를 구성하는 커스토마이저 컴포넌트 (`ConfigurationCustomizer` 또는 `SqlSessionFactoryBeanCustomizer` 가 적용 된 클래스)를 찾아냅니다 - -### 마이바티스 확장 모듈 - -* [mybatis-thymeleaf](https://github.com/mybatis/thymeleaf-scripting) 통합 지원 -* [mybatis-velocity](https://github.com/mybatis/velocity-scripting) 통합 지원 -* [mybatis-freemarker](https://github.com/mybatis/freemarker-scripting) 통합 지원 -* [mybatis-dynamic-sql](https://github.com/mybatis/mybatis-dynamic-sql) 통합 지원 - -### 마이바티스 스프링 네이티브 - -* `@MyBatisResourcesScan`를 이용한 타입 에일리어스, 타입 핸들러 그리고 xml file 매퍼 스캔 -* 빌드 작동 시 `@MyBatisResourcesScan`를 이용하여 reflection hint로 어떤 클래스 든지 스캔 -* 빌드 작동 시 `@MyBatisResourcesScan`를 이용하여 어떤 리소스 든지 스캔 -* 파라미터 타입, 리턴 타입 그리고 네이티브 힌트(반사 힌트)에 대한 SQL 공급 타입 자동 등록 (표준 패턴만 지원) - -## 알려진 제한사항 - -* `MapperFactoryBean`의 하위클래스 사용 시 작동하지 않을 수 있습니다. https://github.com/kazuki43zoo/mybatis-spring-native/pull/32 를 확인하세요 -* 종속 타입(보류 파라미터와 리턴 타입)은 네이티브 힌트(반사 힌트)에 등록되지 않습니다 -* 매퍼 인터페이스에 `@Transactional` 명기 시 빈 초기 설정 되지 않습니다. https://github.com/mybatis/spring-native/issues/2 를 확인하세요 -* 기타 등등... - -# 통합 지원 모듈 - -스프링-네이티브 작동을 위한 일반 구성을 제공합니다 - -| Name | Description | -|------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------| -| `mybatis-spring-native-core` | Integrating module for `mybatis` and `mybatis-spring`(`mybatis-spring-boot-starter`) module basic features | -| `mybatis-spring-native-extensions` | Integrating module for extension module(using `mybatis-thymeleaf`, `mybatis-velocity`, `mybatis-freemarker` and `mybatis-dynamic-sql`) features | - -# 사용법 - -## @MyBatisResourcesScan 이용하기 - -In native-image, dynamic scanning does not work at runtime. -Therefore, we support to scan type aliases, type handlers and mapper xml files at build time using Spring AOT feature. -These resources will apply to MyBatis components using `ConfigurationCustomizer` and `SqlSessionFactoryBeanCustomizer` at startup time. - -```java -// ... -import org.mybatis.spring.nativex.MyBatisResourcesScan; -// ... -@MyBatisResourcesScan(typeAliasesPackages = "com.example.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -**속성:** - -| Attribute | Description | -| --------- | ----------- | -| `typeAliasesPackages` | Specify package names for scanning type aliases | -| `typeAliasesSupperType` | Specify filter type(super class) for scanning type aliases | -| `typeHandlerPackages` | Specify package names for scanning type handlers | -| `mapperLocationPatterns` | Specify location patterns for scanning mapper xml files | -| `reflectionTypePackages` | Specify package names for adding as reflection hint type | -| `reflectionTypeSuperType` | Specify filter type(super class) for scanning reflection type | -| `typeAccesses` | Specify access scopes for applying scanned classes to reflection hint | -| `resourceLocationPatterns` | Specify location patterns for adding as resource hint file | - -# 고지 사항 - -## `@MapperScan` 사용 - -`@MapperScan` 사용 한다면, `sqlSessionTemplateRef` 또는 `sqlSessionFactoryRef`이 다음과 같이 명기되어야 합니다: - -```java -@MapperScan(basePackages = "com.example.mapper", sqlSessionTemplateRef = "sqlSessionTemplate") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -## 2nd cache 사용 - -만약 2nd cache 기능을 사용한다면, serialization hints 설정이 필요합니다. -따라서 [JEP-290 serial filter](https://docs.oracle.com/en/java/javase/11/core/serialization-filtering1.html)로 설정을 권합니다 . - -> **중요:** -> -> 다음의 경고 로그가 출력 되는 경우, JEP-290 serial filter 정의를 추가하는 것을 고려하십시오. -> -> ``` -> 2022-01-16 13:18:21.045 WARN 21917 --- [ main] o.apache.ibatis.io.SerialFilterChecker : As you are using functionality that deserializes object streams, it is recommended to define the JEP-290 serial filter. Please refer to https://docs.oracle.com/pls/topic/lookup?ctx=javase15&id=GUID-8296D8E8-2B93-4B9A-856E-0A65AF9B8C66 -> ``` - -### serialization hints 설정 방법 - -`@SerializationHint`를 사용하여 설정합니다. - -```java -@NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class, Number.class })) // Adding @SerializationHint -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` -### JEP-290 serial filter 정의 방법 - -Define `-Djdk.serialFilter`(system properties) on `buildArgs` of `native-maven-plugin` at `pom.xml`. -`pom.xml`에 `native-maven-plugin`의 `buildArgs` 상의 `-Djdk.serialFilter`(시스템 속성) 설정 - -예시) - -```xml - - org.graalvm.buildtools - native-maven-plugin - ${native-buildtools.version} - true - - - -Djdk.serialFilter=org.mybatis.spring.nativex.sample.cache.*;java.util.*;java.lang.*;!* - - - - -``` - -# 샘플 - -스프링-네이티브에 마이바티스 실행을 위한 예제를 제공합니다. - -| Name | Description | -|-------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------| -| `mybatis-spring-native-sample-simple` | The very simple sample application using annotation driven mapper (`@Select`/`@Insert`/etc...) | -| `mybatis-spring-native-sample-xml` | The very simple sample application using xml file driven mapper | -| `mybatis-spring-native-sample-sqlprovider` | The very simple sample application using SQL provider driven mapper (`@SelectProvider`/`@InsertProvider`/etc...) | -| `mybatis-spring-native-sample-scan` | The sample application using `@MapperScan` and `@MyBatisResourcesScan` annotation | -| `mybatis-spring-native-sample-dao` | The sample application with DAO pattern (without mapper interface) | -| `mybatis-spring-native-sample-thymeleaf` | The sample application using `mybatis-thymeleaf` | -| `mybatis-spring-native-sample-thymeleaf-sqlgenerator` | The sample application using `SqlGenerator` provided by `mybatis-thymeleaf` without `mybatis` and `mybatis-spring` module | -| `mybatis-spring-native-sample-velocity` | The sample application using `mybatis-velocity` | -| `mybatis-spring-native-sample-freemarker` | The sample application using `mybatis-freemarker` | -| `mybatis-spring-native-sample-cache` | The sample application with built-in 2nd cache feature | -| `mybatis-spring-native-sample-configuration` | The sample application with customizing MyBatis's configuration using configuration properties feature(`application.properties`) | -| `mybatis-spring-native-sample-dynamic-sql` | The sample application using `mybatis-dynamic-sql` | - -# 번역 - -마이바티스-스프링-네이티브에 대하여 다음 언어로 확인 가능합니다: - - \ No newline at end of file diff --git a/docs/src/site/markdown/index.md b/docs/src/site/markdown/index.md deleted file mode 100644 index 0da0eba..0000000 --- a/docs/src/site/markdown/index.md +++ /dev/null @@ -1,176 +0,0 @@ -# Introduction - -## What is MyBatis Spring Native? - -The MyBatis Spring Native help you build quickly MyBatis applications on top of the [Spring Native](https://github.com/spring-projects-experimental/spring-native). - -## Support features - -### MyBatis core - -* Write static SQLs and dynamic SQLs(with OGNL expression) in SQL annotations(`@Select`/`@Insert`/etc...) -* Detect rule based mapper xml file in classpath and load SQLs (e.g. If mapper interface FQCN is `com.example.SampleMapper`, detect `com/example/SampleMapper.xml` file) -* Use SQL providers(`@SelectProvider`/`@InsertProvider`/etc...) -* Use built-in 2nd cache feature(in-memory 2nd cache) - -### MyBatis Spring - -* Scan mapper interfaces using `@MapperScan` instead of automatically scan - -### MyBatis Spring Boot - -* Configure the `SqlSessionFactory` and `SqlSessionTemplate` automatically -* Scan mapper interfaces annotated `@Mapper` automatically -* Customize MyBatis behavior using configuration properties(`application.properties`) -* Detect MyBatis components(`Interceptor`, `TypeHandler`, `LanguageDriver` and `DatabaseIdProvider`) from DI container -* Detect customizer components (class that implements `ConfigurationCustomizer` or `SqlSessionFactoryBeanCustomizer`) form DI container - -### MyBatis Extension modules - -* Support to integrate with [mybatis-thymeleaf](https://github.com/mybatis/thymeleaf-scripting) -* Support to integrate with [mybatis-velocity](https://github.com/mybatis/velocity-scripting) -* Support to integrate with [mybatis-freemarker](https://github.com/mybatis/freemarker-scripting) -* Support to integrate with [mybatis-dynamic-sql](https://github.com/mybatis/mybatis-dynamic-sql) - -### MyBatis Spring Native - -* Scan type aliases, type handlers and mapper xml file using `@MyBatisResourcesScan` at build time (Alternative as configuration properties) -* Scan any classes as reflection hint using `@MyBatisResourcesScan` at build time -* Scan any resources as resource hint using `@MyBatisResourcesScan` at build time -* Register parameter types, return types and sql provider types to native hint(reflection hint) automatically(support standard patterns only yet) - -## Known Limitations - -* May not work if you use a subclass of `MapperFactoryBean`, See https://github.com/kazuki43zoo/mybatis-spring-native/pull/32 -* Does not register nested types(hold on parameter and return type) to native hint(reflection hint) -* Fail bean initializing when specify `@Transactional` on mapper interface, See https://github.com/mybatis/spring-native/issues/2 -* etc ... - -# Integrating support modules - -Provides general configurations for running on spring-native. - -| Name | Description | -|------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------| -| `mybatis-spring-native-core` | Integrating module for `mybatis` and `mybatis-spring`(`mybatis-spring-boot-starter`) module basic features | -| `mybatis-spring-native-extensions` | Integrating module for extension module(using `mybatis-thymeleaf`, `mybatis-velocity`, `mybatis-freemarker` and `mybatis-dynamic-sql`) features | - -# Usage - -## Using @MyBatisResourcesScan - -In native-image, dynamic scanning does not work at runtime. -Therefore, we support to scan type aliases, type handlers and mapper xml files at build time using Spring AOT feature. -These resources will apply to MyBatis components using `ConfigurationCustomizer` and `SqlSessionFactoryBeanCustomizer` at startup time. - -```java -// ... -import org.mybatis.spring.nativex.MyBatisResourcesScan; -// ... -@MyBatisResourcesScan(typeAliasesPackages = "com.example.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -**Attributes:** - -| Attribute | Description | -| --------- | ----------- | -| `typeAliasesPackages` | Specify package names for scanning type aliases | -| `typeAliasesSupperType` | Specify filter type(super class) for scanning type aliases | -| `typeHandlerPackages` | Specify package names for scanning type handlers | -| `mapperLocationPatterns` | Specify location patterns for scanning mapper xml files | -| `reflectionTypePackages` | Specify package names for adding as reflection hint type | -| `reflectionTypeSuperType` | Specify filter type(super class) for scanning reflection type | -| `typeAccesses` | Specify access scopes for applying scanned classes to reflection hint | -| `resourceLocationPatterns` | Specify location patterns for adding as resource hint file | - -# Notices - -## Using `@MapperScan` - -If you use the `@MapperScan`, you should be specified either the `sqlSessionTemplateRef` or `sqlSessionFactoryRef` as follows: - -```java -@MapperScan(basePackages = "com.example.mapper", sqlSessionTemplateRef = "sqlSessionTemplate") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -## Using 2nd cache - -If you use the 2nd cache feature, you need to configure serialization hints. -And we recommend defining the [JEP-290 serial filter](https://docs.oracle.com/en/java/javase/11/core/serialization-filtering1.html). - -> **IMPORTANT:** -> -> Please consider adding definition of JEP-290 serial filter when following warning log will output. -> -> ``` -> 2022-01-16 13:18:21.045 WARN 21917 --- [ main] o.apache.ibatis.io.SerialFilterChecker : As you are using functionality that deserializes object streams, it is recommended to define the JEP-290 serial filter. Please refer to https://docs.oracle.com/pls/topic/lookup?ctx=javase15&id=GUID-8296D8E8-2B93-4B9A-856E-0A65AF9B8C66 -> ``` - -### How to configure serialization hints - -Configure using `@SerializationHint`. - -```java -@NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class, Number.class })) // Adding @SerializationHint -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` -### How to define JEP-290 serial filter - -Define `-Djdk.serialFilter`(system properties) on `buildArgs` of `native-maven-plugin` at `pom.xml`. - -e.g.) - -```xml - - org.graalvm.buildtools - native-maven-plugin - ${native-buildtools.version} - true - - - -Djdk.serialFilter=org.mybatis.spring.nativex.sample.cache.*;java.util.*;java.lang.*;!* - - - - -``` - -# Samples - -Provides examples for running the MyBatis in spring-native. - -| Name | Description | -|-------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------| -| `mybatis-spring-native-sample-simple` | The very simple sample application using annotation driven mapper (`@Select`/`@Insert`/etc...) | -| `mybatis-spring-native-sample-xml` | The very simple sample application using xml file driven mapper | -| `mybatis-spring-native-sample-sqlprovider` | The very simple sample application using SQL provider driven mapper (`@SelectProvider`/`@InsertProvider`/etc...) | -| `mybatis-spring-native-sample-scan` | The sample application using `@MapperScan` and `@MyBatisResourcesScan` annotation | -| `mybatis-spring-native-sample-dao` | The sample application with DAO pattern (without mapper interface) | -| `mybatis-spring-native-sample-thymeleaf` | The sample application using `mybatis-thymeleaf` | -| `mybatis-spring-native-sample-thymeleaf-sqlgenerator` | The sample application using `SqlGenerator` provided by `mybatis-thymeleaf` without `mybatis` and `mybatis-spring` module | -| `mybatis-spring-native-sample-velocity` | The sample application using `mybatis-velocity` | -| `mybatis-spring-native-sample-freemarker` | The sample application using `mybatis-freemarker` | -| `mybatis-spring-native-sample-cache` | The sample application with built-in 2nd cache feature | -| `mybatis-spring-native-sample-configuration` | The sample application with customizing MyBatis's configuration using configuration properties feature(`application.properties`) | -| `mybatis-spring-native-sample-dynamic-sql` | The sample application using `mybatis-dynamic-sql` | - -# Translations - -Users can read about MyBatis-Spring-Native in the following translations: - - diff --git a/docs/src/site/resources/css/site.css b/docs/src/site/resources/css/site.css deleted file mode 100644 index a1a3344..0000000 --- a/docs/src/site/resources/css/site.css +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/* - * when new flags are needed, take them from - * - * https://www.printableworldflags.com/flag-icon - * - * that are free for any kind of usage - */ - -ul.i18n {list-style-type:none;} -li.en {background: url('../images/en.png') left no-repeat;padding-left: 32px; margin: 10px} -li.es {background: url('../images/es.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ja {background: url('../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px} -li.zh {background: url('../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ko {background: url('../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px} \ No newline at end of file diff --git a/docs/src/site/resources/es/css/site.css b/docs/src/site/resources/es/css/site.css deleted file mode 100644 index 08241d3..0000000 --- a/docs/src/site/resources/es/css/site.css +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/* - * when new flags are needed, take them from - * - * https://www.printableworldflags.com/flag-icon - * - * that are free for any kind of usage - */ - -ul.i18n {list-style-type:none;} -li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px; margin: 10px} -li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px} -li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px} \ No newline at end of file diff --git a/docs/src/site/resources/images/en.png b/docs/src/site/resources/images/en.png deleted file mode 100644 index 82cf5f1..0000000 Binary files a/docs/src/site/resources/images/en.png and /dev/null differ diff --git a/docs/src/site/resources/images/es.png b/docs/src/site/resources/images/es.png deleted file mode 100644 index a4177e9..0000000 Binary files a/docs/src/site/resources/images/es.png and /dev/null differ diff --git a/docs/src/site/resources/images/ja.png b/docs/src/site/resources/images/ja.png deleted file mode 100644 index 67020df..0000000 Binary files a/docs/src/site/resources/images/ja.png and /dev/null differ diff --git a/docs/src/site/resources/images/ko.png b/docs/src/site/resources/images/ko.png deleted file mode 100644 index 0e3d706..0000000 Binary files a/docs/src/site/resources/images/ko.png and /dev/null differ diff --git a/docs/src/site/resources/images/zh.png b/docs/src/site/resources/images/zh.png deleted file mode 100644 index 86ac698..0000000 Binary files a/docs/src/site/resources/images/zh.png and /dev/null differ diff --git a/docs/src/site/resources/ja/css/site.css b/docs/src/site/resources/ja/css/site.css deleted file mode 100644 index 08241d3..0000000 --- a/docs/src/site/resources/ja/css/site.css +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/* - * when new flags are needed, take them from - * - * https://www.printableworldflags.com/flag-icon - * - * that are free for any kind of usage - */ - -ul.i18n {list-style-type:none;} -li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px; margin: 10px} -li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px} -li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px} \ No newline at end of file diff --git a/docs/src/site/resources/ko/css/site.css b/docs/src/site/resources/ko/css/site.css deleted file mode 100644 index 08241d3..0000000 --- a/docs/src/site/resources/ko/css/site.css +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/* - * when new flags are needed, take them from - * - * https://www.printableworldflags.com/flag-icon - * - * that are free for any kind of usage - */ - -ul.i18n {list-style-type:none;} -li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px; margin: 10px} -li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px} -li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px} \ No newline at end of file diff --git a/docs/src/site/resources/zh/css/site.css b/docs/src/site/resources/zh/css/site.css deleted file mode 100644 index 08241d3..0000000 --- a/docs/src/site/resources/zh/css/site.css +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/* - * when new flags are needed, take them from - * - * https://www.printableworldflags.com/flag-icon - * - * that are free for any kind of usage - */ - -ul.i18n {list-style-type:none;} -li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px; margin: 10px} -li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px} -li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px} -li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px} \ No newline at end of file diff --git a/docs/src/site/site.xml b/docs/src/site/site.xml deleted file mode 100644 index 63ed6e1..0000000 --- a/docs/src/site/site.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/docs/src/site/site_ko.xml b/docs/src/site/site_ko.xml deleted file mode 100644 index 0867d24..0000000 --- a/docs/src/site/site_ko.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/docs/src/site/site_zh.xml b/docs/src/site/site_zh.xml deleted file mode 100644 index b35f7fa..0000000 --- a/docs/src/site/site_zh.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/docs/src/site/zh/markdown/index.md b/docs/src/site/zh/markdown/index.md deleted file mode 100644 index b35ee4d..0000000 --- a/docs/src/site/zh/markdown/index.md +++ /dev/null @@ -1,178 +0,0 @@ -# 介绍 - -## 什么是 MyBatis Spring Native? - -MyBatis Spring Native 帮助你在 [Spring Native](https://github.com/spring-projects-experimental/spring-native) 之上快速构建 MyBatis 应用。 - -## 支持的特性 - -### MyBatis 核心功能 - -- 使用与 SQL 相关的注解(`@Select`/`@Insert`/etc...)编写静态 SQL 语句和动态 SQL 语句(需要使用 ONGL 表达式) -- 使用类路径下的 XML 映射文件去载入 SQL 语句(例如:如果 mapper 接口的全限定名是 `com.example.SampleMapper`, 则使用 `com/example/SampleMapper.xml` 文件) -- 使用 SQL provider(`@SelectProvider`/`@InsertProvider`/etc...) -- 使用内置的二级缓存机制(内存中的二级缓存) - -### MyBatis Spring - -- 使用 `@MapperScan` 扫描用于映射的接口,而不是自动扫描 - -### MyBatis Spring Boot - -- 自动配置 `SqlSessionFactory` 和 `SqlSessionTemplate` -- 自动扫描带有 `@Mapper` 的 mapper 接口 -- 使用配置文件(`application.properties`)来配置 Mybatis 的行为 -- 从依赖注入容器中使用 MyBatis 的组件(`Interceptor`, `TypeHandler`, `LanguageDriver` 与 `DatabaseIdProvider`) -- 从依赖注入容器中使用配置组件 (实现了 `ConfigurationCustomizer` 或者 `SqlSessionFactoryBeanCustomizer` 的类) - -### MyBatis 扩展模块 - -- 支持与 [mybatis-thymeleaf](https://github.com/mybatis/thymeleaf-scripting) 组合使用 -- 支持与 [mybatis-velocity](https://github.com/mybatis/velocity-scripting) 组合使用 -- 支持与 [mybatis-freemarker](https://github.com/mybatis/freemarker-scripting) 组合使用 -- 支持与 [mybatis-dynamic-sql](https://github.com/mybatis/mybatis-dynamic-sql) 组合使用 - -### MyBatis Spring Native - -- 在编译时可以使用 `@MyBatisResourcesScan` 来扫描类型别名,类型处理器和 XML 映射文件(可以替代properties中相关的配置) -- 在编译时可以使用 `@MyBatisResourcesScan` 来扫描任意的类作为反射 hint -- 在编译时可以使用 `@MyBatisResourcesScan` 来扫描任意的资源文件作为 resource hint -- 自动向 native hint(reflection hint) 注册参数类型,返回值类型和 sql provider 类型(但仅支持标准模式) - -## 已知的局限性 - -- 如果你使用了 `MapperFactoryBean`的子类,可能不起作用。参见 [Fix early init of MapperFactoryBean by snicoll · Pull Request #32 · kazuki43zoo/mybatis-spring-native · GitHub](https://github.com/kazuki43zoo/mybatis-spring-native/pull/32) -- 不要向 native hint(reflection hint) 注册嵌套类型(保留参数和返回类型) -- 在 mapper 接口上使用 `@Transactional` 会导致初始化 bean 失败, 参见 [Fail bean initializing when specify @Transactional on mapper interface · Issue #2 · mybatis/spring-native · GitHub](https://github.com/mybatis/spring-native/issues/2) -- etc ... - -# 组合支持的模块 - -为运行 Spring Native 提供配置。 - -| 名称 | 描述 | -| ---------------------------------- | ------------------------------------------------------------------------------------------------------ | -| `mybatis-spring-native-core` | 整合了 `mybatis` 和 `mybatis-spring`(`mybatis-spring-boot-starter`) 模块的基本特性 | -| `mybatis-spring-native-extensions` | 整合了扩展模块 (使用 `mybatis-thymeleaf`, `mybatis-velocity`, `mybatis-freemarker` 与 `mybatis-dynamic-sql`) 的特性 | - -# 使用 - -## 使用 @MyBatisResourcesScan - -在 native-image 里面,动态扫描可能在运行时不起作用。 -因此,我们支持在 Spring AOT 的特性下,使用 `@MyBatisResourcesScan` 来扫描类型别名,类型处理器和 XML 映射文件。 - -在启动时如果使用 `ConfigurationCustomizer` 和 `SqlSessionFactoryBeanCustomizer` 类,这些资源文件可以被用于 MyBatis 的组件。 - -```java -// ... -import org.mybatis.spring.nativex.MyBatisResourcesScan; -// ... -@MyBatisResourcesScan(typeAliasesPackages = "com.example.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -**属性:** - -| 属性 | 描述 | -| -------------------------- | ----------------------- | -| `typeAliasesPackages` | 为扫描类型别名指定包名 | -| `typeAliasesSupperType` | 为扫描类型别名指定过滤类型(父类) | -| `typeHandlerPackages` | 为扫描类型别名指定过滤类型(父类) | -| `mapperLocationPatterns` | 为扫描 XML 映射文件指定路径 | -| `reflectionTypePackages` | 为增加反射 hint 类型指定包名 | -| `reflectionTypeSuperType` | 为扫描类型别名指定反射类型(父类) | -| `typeAccesses` | 指定访问作用域,将扫描的类应用于反射 hint | -| `resourceLocationPatterns` | 为增加资源 hint 文件指定路径 | - -# 注意 - -## `@MapperScan` 的使用 - -如果你使用 `@MapperScan`, 你需要指定 `sqlSessionTemplateRef` or `sqlSessionFactoryRef` ,例如: - -```java -@MapperScan(basePackages = "com.example.mapper", sqlSessionTemplateRef = "sqlSessionTemplate") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -## 使用二级缓存 - -如果你使用二级缓存, 你需要配置 hints 的序列化。 -我们推荐使用 [JEP-290 serial filter](https://docs.oracle.com/en/java/javase/11/core/serialization-filtering1.html). - -> **重要:** -> -> 当你遇到下面的警告日志,请考虑使用 [JEP-290 serial filter](https://docs.oracle.com/en/java/javase/11/core/serialization-filtering1.html). -> -> ``` -> 2022-01-16 13:18:21.045 WARN 21917 --- [ main] o.apache.ibatis.io.SerialFilterChecker : As you are using functionality that deserializes object streams, it is recommended to define the JEP-290 serial filter. Please refer to https://docs.oracle.com/pls/topic/lookup?ctx=javase15&id=GUID-8296D8E8-2B93-4B9A-856E-0A65AF9B8C66 -> ``` - -### 如何配置 hints 的序列化 - -使用 `@SerializationHint` 来配置。 - -```java -@NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class, Number.class })) // Adding @SerializationHint -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - // ... -} -``` - -### 如何定义 JEP-290 serial filter - -在 `pom.xml` 中,在 `buildArgs` 的 `native-maven-plugin`上定义 `-Djdk.serialFilter` (系统属性) - -例如: - -```xml - - org.graalvm.buildtools - native-maven-plugin - ${native-buildtools.version} - true - - - -Djdk.serialFilter=org.mybatis.spring.nativex.sample.cache.*;java.util.*;java.lang.*;!* - - - - -``` - -# 样例 - -提供了在 spring-native 中运行 MyBatis 的一些例子。 - -| 名称 | 描述 | -| ----------------------------------------------------- | --------------------------------------------------------------------------------- | -| `mybatis-spring-native-sample-simple` | 非常简易的示例,使用注解驱动映射的应用程序 (`@Select`/`@Insert`/etc...) | -| `mybatis-spring-native-sample-xml` | 非常简易的示例,使用 XML 驱动映射的应用程序 | -| `mybatis-spring-native-sample-sqlprovider` | 非常简易的示例,使用 sql provider 驱动映射的应用程序 (`@SelectProvider`/`@InsertProvider`/etc...) | -| `mybatis-spring-native-sample-scan` | 使用 `@MapperScan` 和`@MyBatisResourcesScan` 注解的样例程序 | -| `mybatis-spring-native-sample-dao` | 使用 DAO 模式的样例程序 (没有 mapper 接口) | -| `mybatis-spring-native-sample-thymeleaf` | 使用 `mybatis-thymeleaf` 的样例程序 | -| `mybatis-spring-native-sample-thymeleaf-sqlgenerator` | 使用 `mybatis-thymeleaf` 提供的 `SqlGenerator`的样例程序,没有 `mybatis` 和 `mybatis-spring` 模块 | -| `mybatis-spring-native-sample-velocity` | 使用 `mybatis-velocity` 的样例程序 | -| `mybatis-spring-native-sample-freemarker` | 使用 `mybatis-freemarker` 的样例程序 | -| `mybatis-spring-native-sample-cache` | 使用二级缓存的样例程序 | -| `mybatis-spring-native-sample-configuration` | 使用配置属性功能定制MyBatis的配置的样例程序(`application.properties` ) | -| `mybatis-spring-native-sample-dynamic-sql` | 使用 `mybatis-dynamic-sql` 的样例程序 | - -# 文档的翻译版本 - -可以阅读以下 MyBatis-Spring-Native 文档的翻译版本: - - diff --git a/en/apidocs/allclasses-index.html b/en/apidocs/allclasses-index.html new file mode 100644 index 0000000..f5f6594 --- /dev/null +++ b/en/apidocs/allclasses-index.html @@ -0,0 +1,83 @@ + + + + +All Classes and Interfaces (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
Classes
+
+
Class
+
Description
+ +
+
Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
+
+ +
+
Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
+
+ +
+
Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
+
+ +
+
Registers hints to make a MyBatis Velocity component work in a Spring Native context.
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/allpackages-index.html b/en/apidocs/allpackages-index.html new file mode 100644 index 0000000..803988f --- /dev/null +++ b/en/apidocs/allpackages-index.html @@ -0,0 +1,67 @@ + + + + +All Packages (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
 
+
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/copy.svg b/en/apidocs/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/en/apidocs/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/en/apidocs/element-list b/en/apidocs/element-list new file mode 100644 index 0000000..6b31b7e --- /dev/null +++ b/en/apidocs/element-list @@ -0,0 +1 @@ +org.mybatis.spring.nativex diff --git a/en/apidocs/help-doc.html b/en/apidocs/help-doc.html new file mode 100644 index 0000000..c5fae5b --- /dev/null +++ b/en/apidocs/help-doc.html @@ -0,0 +1,186 @@ + + + + +API Help (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enums
  • +
  • Exception Classes
  • +
  • Annotation Types
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Use

+

Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

+
+
+

Tree (Class Hierarchy)

+

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ +
+
+
+ + diff --git a/en/apidocs/index-all.html b/en/apidocs/index-all.html new file mode 100644 index 0000000..7c999d1 --- /dev/null +++ b/en/apidocs/index-all.html @@ -0,0 +1,93 @@ + + + + +Index (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+M O 
All Classes and Interfaces|All Packages +

M

+
+
MyBatisDynamicSqlNativeConfiguration - Class in org.mybatis.spring.nativex
+
+
Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
+
+
MyBatisDynamicSqlNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
+
 
+
MyBatisFreeMarkerNativeConfiguration - Class in org.mybatis.spring.nativex
+
+
Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
+
+
MyBatisFreeMarkerNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
+
 
+
MyBatisThymeleafNativeConfiguration - Class in org.mybatis.spring.nativex
+
+
Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
+
+
MyBatisThymeleafNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
+
 
+
MyBatisVelocityNativeConfiguration - Class in org.mybatis.spring.nativex
+
+
Registers hints to make a MyBatis Velocity component work in a Spring Native context.
+
+
MyBatisVelocityNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
+
 
+
+

O

+
+
org.mybatis.spring.nativex - package org.mybatis.spring.nativex
+
 
+
+M O 
All Classes and Interfaces|All Packages
+
+
+ +
+
+
+ + diff --git a/en/apidocs/index.html b/en/apidocs/index.html new file mode 100644 index 0000000..5cc2fc6 --- /dev/null +++ b/en/apidocs/index.html @@ -0,0 +1,25 @@ + + + + +mybatis-spring-native-extensions 0.1.0-SNAPSHOT API + + + + + + + + + + +
+ +

org/mybatis/spring/nativex/package-summary.html

+
+ + diff --git a/en/apidocs/legal/ADDITIONAL_LICENSE_INFO b/en/apidocs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/en/apidocs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/en/apidocs/legal/ASSEMBLY_EXCEPTION b/en/apidocs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/en/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/en/apidocs/legal/LICENSE b/en/apidocs/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/en/apidocs/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/en/apidocs/legal/jquery.md b/en/apidocs/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/en/apidocs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/en/apidocs/legal/jqueryUI.md b/en/apidocs/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/en/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/en/apidocs/link.svg b/en/apidocs/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/en/apidocs/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/en/apidocs/member-search-index.js b/en/apidocs/member-search-index.js new file mode 100644 index 0000000..054b926 --- /dev/null +++ b/en/apidocs/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"org.mybatis.spring.nativex","c":"MyBatisDynamicSqlNativeConfiguration","l":"MyBatisDynamicSqlNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisFreeMarkerNativeConfiguration","l":"MyBatisFreeMarkerNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisThymeleafNativeConfiguration","l":"MyBatisThymeleafNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisVelocityNativeConfiguration","l":"MyBatisVelocityNativeConfiguration()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/en/apidocs/module-search-index.js b/en/apidocs/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/en/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..977a617 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,168 @@ + + + + +MyBatisCoreNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisCoreNativeConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration
+
+
+
+
All Implemented Interfaces:
+
org.springframework.nativex.type.NativeConfiguration
+
+
+
public class MyBatisCoreNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
+
Registers hints to make a MyBatis Core components work in a Spring Native context.
+
+
Author:
+
Kazuki Shimizu, Josh Long
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisCoreNativeConfiguration

      +
      public MyBatisCoreNativeConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..1537aae --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisDynamicSqlNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisDynamicSqlNativeConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
+
+
+
+
All Implemented Interfaces:
+
org.springframework.nativex.type.NativeConfiguration
+
+
+
public class MyBatisDynamicSqlNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
+
Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisDynamicSqlNativeConfiguration

      +
      public MyBatisDynamicSqlNativeConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..f9c9e9f --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisFreeMarkerNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisFreeMarkerNativeConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
+
+
+
+
All Implemented Interfaces:
+
org.springframework.nativex.type.NativeConfiguration
+
+
+
public class MyBatisFreeMarkerNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
+
Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisFreeMarkerNativeConfiguration

      +
      public MyBatisFreeMarkerNativeConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..e4ed7a9 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,192 @@ + + + + +MyBatisMapperNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisMapperNativeConfigurationProcessor

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor
+
+
+
+
All Implemented Interfaces:
+
org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
+
+
+
public class MyBatisMapperNativeConfigurationProcessor +extends Object +implements org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
+
Finds and registers reflection hints for all scanned mappers in the beanFactory.
+
+
Author:
+
Kazuki Shimizu, Josh Long
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisMapperNativeConfigurationProcessor

      +
      public MyBatisMapperNativeConfigurationProcessor()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, + org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry registry)
      +
      +
      Specified by:
      +
      process in interface org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html new file mode 100644 index 0000000..44a8ada --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html @@ -0,0 +1,145 @@ + + + + +MyBatisResourcesScan.List (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Annotation Type MyBatisResourcesScan.List

+
+
+
+
Enclosing class:
+
MyBatisResourcesScan
+
+
+
@Import(org.mybatis.spring.nativex.MyBatisScannedResourcesHolder.RepeatableRegistrar.class) +@Retention(RUNTIME) +public static @interface MyBatisResourcesScan.List
+
Repeatable annotation for MyBatisResourcesScan.
+
+
+
    + +
  • +
    +

    Optional Element Summary

    +
    Optional Elements
    +
    +
    Modifier and Type
    +
    Optional Element
    +
    Description
    + + +
     
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html new file mode 100644 index 0000000..a9e007e --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html @@ -0,0 +1,336 @@ + + + + +MyBatisResourcesScan (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Annotation Type MyBatisResourcesScan

+
+
+
+
@Import(org.mybatis.spring.nativex.MyBatisScannedResourcesHolder.Registrar.class) +@Retention(RUNTIME) +@Repeatable(List.class) +public @interface MyBatisResourcesScan
+
The annotation that indicates scan rules of resources for running on native-image.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Element Details

    +
      +
    • +
      +

      typeAliasesPackages

      +
      String[] typeAliasesPackages
      +
      Return package names for scanning type aliases. +

      + Default is none. +

      +
      +
      Returns:
      +
      package names for scanning type aliases
      +
      +
      +
      Default:
      +
      {}
      +
      +
      +
    • +
    • +
      +

      typeAliasesSupperType

      +
      Class<?> typeAliasesSupperType
      +
      Return the filter type(super class) for scanning type aliases. +

      + Default is none. +

      +
      +
      Returns:
      +
      the filter type for scanning type aliases
      +
      +
      +
      Default:
      +
      void.class
      +
      +
      +
    • +
    • +
      +

      typeHandlerPackages

      +
      String[] typeHandlerPackages
      +
      Return package names for scanning type handler. +

      + Default is none. +

      +
      +
      Returns:
      +
      package names for scanning type handler
      +
      +
      +
      Default:
      +
      {}
      +
      +
      +
    • +
    • +
      +

      mapperLocationPatterns

      +
      String[] mapperLocationPatterns
      +
      Return location patterns for scanning mapper xml file under classpath. +

      + Default is none. +

      +
      +
      Returns:
      +
      location patterns for scanning mapper xml file under classpath
      +
      +
      +
      Default:
      +
      {}
      +
      +
      +
    • +
    • +
      +

      reflectionTypePackages

      +
      String[] reflectionTypePackages
      +
      Return package names for scanning reflection hint type. +

      + Default is none. +

      +
      +
      Returns:
      +
      package names for scanning reflection hint type
      +
      +
      +
      Default:
      +
      {}
      +
      +
      +
    • +
    • +
      +

      reflectionTypeSupperType

      +
      Class<?> reflectionTypeSupperType
      +
      Return the filter type(super class) for scanning reflection hint type. +

      + Default is none. +

      +
      +
      Returns:
      +
      the filter type for scanning reflection hint type
      +
      +
      +
      Default:
      +
      void.class
      +
      +
      +
    • +
    • +
      +

      typeAccesses

      +
      org.springframework.nativex.hint.TypeAccess[] typeAccesses
      +
      Return access scopes for applying scanned classes to reflection hint. +

      + Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS, + DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS, + QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS. +

      +
      +
      Returns:
      +
      access scopes for applying scanned classes to reflection hint
      +
      +
      +
      Default:
      +
      {}
      +
      +
      +
    • +
    • +
      +

      resourceLocationPatterns

      +
      String[] resourceLocationPatterns
      +
      Return location patterns for adding resource hint file under classpath. +

      + Default is none. +

      +
      +
      Returns:
      +
      location patterns for adding resource hint file under classpath
      +
      +
      +
      Default:
      +
      {}
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..25d29c8 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html @@ -0,0 +1,364 @@ + + + + +MyBatisScannedResourcesHolder (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisScannedResourcesHolder

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisScannedResourcesHolder
+
+
+
+
public class MyBatisScannedResourcesHolder +extends Object
+
The holder class that scanned resources using @MyBatisResourcesScan.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisScannedResourcesHolder

      +
      public MyBatisScannedResourcesHolder()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getTypeAliasesClasses

      +
      public Set<Class<?>> getTypeAliasesClasses()
      +
      Return class list of scanned type aliases.
      +
      +
      Returns:
      +
      class list of scanned type aliases
      +
      +
      +
    • +
    • +
      +

      setTypeAliasesClasses

      +
      public void setTypeAliasesClasses(Set<Class<?>> typeAliasClasses)
      +
      Set class list of scanned type aliases.
      +
      +
      Parameters:
      +
      typeAliasClasses - class list of scanned type aliases
      +
      +
      +
    • +
    • +
      +

      getTypeHandlerClasses

      +
      public Set<Class<?>> getTypeHandlerClasses()
      +
      Return class list of scanned type handler.
      +
      +
      Returns:
      +
      class list of scanned type handler
      +
      +
      +
    • +
    • +
      +

      setTypeHandlerClasses

      +
      public void setTypeHandlerClasses(Set<Class<?>> typeHandlerClasses)
      +
      Set class list of scanned type handler.
      +
      +
      Parameters:
      +
      typeHandlerClasses - class list of scanned type handler
      +
      +
      +
    • +
    • +
      +

      getMapperLocations

      +
      public Set<String> getMapperLocations()
      +
      Return location list of scanned mapper xml file.
      +
      +
      Returns:
      +
      location list of scanned mapper xml file
      +
      +
      +
    • +
    • +
      +

      setMapperLocations

      +
      public void setMapperLocations(Set<String> mapperLocations)
      +
      Set location list of scanned mapper xml file.
      +
      +
      Parameters:
      +
      mapperLocations - location list of scanned mapper xml file
      +
      +
      +
    • +
    • +
      +

      setReflectionClasses

      +
      public void setReflectionClasses(Set<Class<?>> reflectionClasses)
      +
      Set class list of scanned reflection hint type.
      +
      +
      Parameters:
      +
      reflectionClasses - class list of scanned reflection hint type
      +
      +
      +
    • +
    • +
      +

      getReflectionClasses

      +
      public Set<Class<?>> getReflectionClasses()
      +
      Return class list of scanned reflection hint type.
      +
      +
      Returns:
      +
      class list of scanned reflection hint type
      +
      +
      +
    • +
    • +
      +

      setReflectionTypeAccesses

      +
      public void setReflectionTypeAccesses(org.springframework.nativex.hint.TypeAccess[] reflectionTypeAccesses)
      +
      Set access scopes for applying reflection type that scanned.
      +
      +
      Parameters:
      +
      reflectionTypeAccesses - access scopes for applying reflection type that scanned
      +
      +
      +
    • +
    • +
      +

      getReflectionTypeAccesses

      +
      public org.springframework.nativex.hint.TypeAccess[] getReflectionTypeAccesses()
      +
      Return access scopes for applying reflection type that scanned.
      +
      +
      Returns:
      +
      access scopes for applying reflection type that scanned
      +
      +
      +
    • +
    • +
      +

      setResourceLocations

      +
      public void setResourceLocations(Set<String> resourceLocations)
      +
      Set location list of adding resource hint file.
      +
      +
      Parameters:
      +
      resourceLocations - location list of adding resource hint file
      +
      +
      +
    • +
    • +
      +

      getResourceLocations

      +
      public Set<String> getResourceLocations()
      +
      Return location list of adding resource hint file.
      +
      +
      Returns:
      +
      location list of adding resource hint file
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..7fd092f --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,192 @@ + + + + +MyBatisScannedResourcesNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisScannedResourcesNativeConfigurationProcessor

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor
+
+
+
+
All Implemented Interfaces:
+
org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
+
+
+
public class MyBatisScannedResourcesNativeConfigurationProcessor +extends Object +implements org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
+
Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the BeanFactory.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisScannedResourcesNativeConfigurationProcessor

      +
      public MyBatisScannedResourcesNativeConfigurationProcessor()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, + org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry registry)
      +
      +
      Specified by:
      +
      process in interface org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..3de9cd9 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,162 @@ + + + + +MyBatisSpringNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisSpringNativeConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration
+
+
+
+
All Implemented Interfaces:
+
org.springframework.nativex.type.NativeConfiguration
+
+
+
public class MyBatisSpringNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
+
Registers hints to make a MyBatis Spring component work in a Spring Native context.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisSpringNativeConfiguration

      +
      public MyBatisSpringNativeConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..503750f --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisThymeleafNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisThymeleafNativeConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
+
+
+
+
All Implemented Interfaces:
+
org.springframework.nativex.type.NativeConfiguration
+
+
+
public class MyBatisThymeleafNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
+
Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisThymeleafNativeConfiguration

      +
      public MyBatisThymeleafNativeConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..7fb414d --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisVelocityNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisVelocityNativeConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
+
+
+
+
All Implemented Interfaces:
+
org.springframework.nativex.type.NativeConfiguration
+
+
+
public class MyBatisVelocityNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
+
Registers hints to make a MyBatis Velocity component work in a Spring Native context.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisVelocityNativeConfiguration

      +
      public MyBatisVelocityNativeConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..6ef2f74 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,157 @@ + + + + +MyBatisSpringNativeAutoConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MyBatisSpringNativeAutoConfiguration

+
+
java.lang.Object +
org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration
+
+
+
+
@Configuration +@ConditionalOnClass({org.apache.ibatis.session.Configuration.class,org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer.class}) +@AutoConfigureBefore(org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration.class) +public class MyBatisSpringNativeAutoConfiguration +extends Object
+
The configuration class that configure automatically for spring-native.
+
+
Author:
+
Kazuki Shimizu
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MyBatisSpringNativeAutoConfiguration

      +
      public MyBatisSpringNativeAutoConfiguration()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..af94105 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration

+
+No usage of org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..5832f92 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,108 @@ + + + + +org.mybatis.spring.nativex.autoconfigure (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Package org.mybatis.spring.nativex.autoconfigure

+
+
+
package org.mybatis.spring.nativex.autoconfigure
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html new file mode 100644 index 0000000..da42b1d --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html @@ -0,0 +1,75 @@ + + + + +org.mybatis.spring.nativex.autoconfigure Class Hierarchy (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.mybatis.spring.nativex.autoconfigure

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html new file mode 100644 index 0000000..78016fb --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html @@ -0,0 +1,61 @@ + + + + +Uses of Package org.mybatis.spring.nativex.autoconfigure (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.mybatis.spring.nativex.autoconfigure

+
+No usage of org.mybatis.spring.nativex.autoconfigure
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..c4349c0 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration

+
+No usage of org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..70f5921 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration

+
+No usage of org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..f1cb09b --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration

+
+No usage of org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..23ce672 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor

+
+No usage of org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html new file mode 100644 index 0000000..518ba63 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html @@ -0,0 +1,61 @@ + + + + +Uses of Annotation Type org.mybatis.spring.nativex.MyBatisResourcesScan.List (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Annotation Type
org.mybatis.spring.nativex.MyBatisResourcesScan.List

+
+No usage of org.mybatis.spring.nativex.MyBatisResourcesScan.List
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html new file mode 100644 index 0000000..bdc5387 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html @@ -0,0 +1,61 @@ + + + + +Uses of Annotation Type org.mybatis.spring.nativex.MyBatisResourcesScan (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Annotation Type
org.mybatis.spring.nativex.MyBatisResourcesScan

+
+No usage of org.mybatis.spring.nativex.MyBatisResourcesScan
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..59327ad --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisScannedResourcesHolder (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisScannedResourcesHolder

+
+No usage of org.mybatis.spring.nativex.MyBatisScannedResourcesHolder
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..97989a4 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor

+
+No usage of org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..cff583f --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration

+
+No usage of org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..b3c91d6 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration

+
+No usage of org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..4922e47 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration

+
+No usage of org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/package-summary.html b/en/apidocs/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..79d7ea0 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,108 @@ + + + + +org.mybatis.spring.nativex (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Package org.mybatis.spring.nativex

+
+
+
package org.mybatis.spring.nativex
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/package-tree.html b/en/apidocs/org/mybatis/spring/nativex/package-tree.html new file mode 100644 index 0000000..a5c1452 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.mybatis.spring.nativex Class Hierarchy (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.mybatis.spring.nativex

+
+
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/org/mybatis/spring/nativex/package-use.html b/en/apidocs/org/mybatis/spring/nativex/package-use.html new file mode 100644 index 0000000..03097b5 --- /dev/null +++ b/en/apidocs/org/mybatis/spring/nativex/package-use.html @@ -0,0 +1,60 @@ + + + + +Uses of Package org.mybatis.spring.nativex (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.mybatis.spring.nativex

+
+No usage of org.mybatis.spring.nativex
+
+
+ +
+
+
+ + diff --git a/en/apidocs/overview-summary.html b/en/apidocs/overview-summary.html new file mode 100644 index 0000000..adf2c76 --- /dev/null +++ b/en/apidocs/overview-summary.html @@ -0,0 +1,25 @@ + + + + +mybatis-spring-native-core 0.1.0-SNAPSHOT API + + + + + + + + + + +
+ +

index.html

+
+ + diff --git a/en/apidocs/overview-tree.html b/en/apidocs/overview-tree.html new file mode 100644 index 0000000..99ea3b9 --- /dev/null +++ b/en/apidocs/overview-tree.html @@ -0,0 +1,77 @@ + + + + +Class Hierarchy (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/en/apidocs/package-search-index.js b/en/apidocs/package-search-index.js new file mode 100644 index 0000000..50d984e --- /dev/null +++ b/en/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.mybatis.spring.nativex"}];updateSearchResults(); \ No newline at end of file diff --git a/en/apidocs/resources/glass.png b/en/apidocs/resources/glass.png new file mode 100644 index 0000000..a7f591f Binary files /dev/null and b/en/apidocs/resources/glass.png differ diff --git a/en/apidocs/resources/x.png b/en/apidocs/resources/x.png new file mode 100644 index 0000000..30548a7 Binary files /dev/null and b/en/apidocs/resources/x.png differ diff --git a/en/apidocs/script-dir/jquery-3.6.1.min.js b/en/apidocs/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/en/apidocs/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/en/apidocs/script.js b/en/apidocs/script.js new file mode 100644 index 0000000..8b9691a --- /dev/null +++ b/en/apidocs/script.js @@ -0,0 +1,253 @@ +/* + * Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; + +var oddRowColor = "odd-row-color"; +var evenRowColor = "even-row-color"; +var sortAsc = "sort-asc"; +var sortDesc = "sort-desc"; +var tableTab = "table-tab"; +var activeTableTab = "active-table-tab"; + +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +// Helper for making content containing release names comparable lexicographically +function makeComparable(s) { + return s.toLowerCase().replace(/(\d+)/g, + function(n, m) { + return ("000" + m).slice(-4); + }); +} + +// Switches between two styles depending on a condition +function toggleStyle(classList, condition, trueStyle, falseStyle) { + if (condition) { + classList.remove(falseStyle); + classList.add(trueStyle); + } else { + classList.remove(trueStyle); + classList.add(falseStyle); + } +} + +// Sorts the rows in a table lexicographically by the content of a specific column +function sortTable(header, columnIndex, columns) { + var container = header.parentElement; + var descending = header.classList.contains(sortAsc); + container.querySelectorAll("div.table-header").forEach( + function(header) { + header.classList.remove(sortAsc); + header.classList.remove(sortDesc); + } + ) + var cells = container.children; + var rows = []; + for (var i = columns; i < cells.length; i += columns) { + rows.push(Array.prototype.slice.call(cells, i, i + columns)); + } + var comparator = function(a, b) { + var ka = makeComparable(a[columnIndex].textContent); + var kb = makeComparable(b[columnIndex].textContent); + if (ka < kb) + return descending ? 1 : -1; + if (ka > kb) + return descending ? -1 : 1; + return 0; + }; + var sorted = rows.sort(comparator); + var visible = 0; + sorted.forEach(function(row) { + if (row[0].style.display !== 'none') { + var isEvenRow = visible++ % 2 === 0; + } + row.forEach(function(cell) { + toggleStyle(cell.classList, isEvenRow, evenRowColor, oddRowColor); + container.appendChild(cell); + }) + }); + toggleStyle(header.classList, descending, sortDesc, sortAsc); +} + +// Toggles the visibility of a table category in all tables in a page +function toggleGlobal(checkbox, selected, columns) { + var display = checkbox.checked ? '' : 'none'; + document.querySelectorAll("div.table-tabs").forEach(function(t) { + var id = t.parentElement.getAttribute("id"); + var selectedClass = id + "-tab" + selected; + // if selected is empty string it selects all uncategorized entries + var selectUncategorized = !Boolean(selected); + var visible = 0; + document.querySelectorAll('div.' + id) + .forEach(function(elem) { + if (selectUncategorized) { + if (elem.className.indexOf(selectedClass) === -1) { + elem.style.display = display; + } + } else if (elem.classList.contains(selectedClass)) { + elem.style.display = display; + } + if (elem.style.display === '') { + var isEvenRow = visible++ % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + } + }); + var displaySection = visible === 0 ? 'none' : ''; + t.parentElement.style.display = displaySection; + document.querySelector("li#contents-" + id).style.display = displaySection; + }) +} + +// Shows the elements of a table belonging to a specific category +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} +// Copy the contents of the local snippet to the clipboard +function copySnippet(button) { + copyToClipboard(button.nextElementSibling.innerText); + switchCopyLabel(button, button.firstElementChild); +} +function copyToClipboard(content) { + var textarea = document.createElement("textarea"); + textarea.style.height = 0; + document.body.appendChild(textarea); + textarea.value = content; + textarea.select(); + document.execCommand("copy"); + document.body.removeChild(textarea); +} +function switchCopyLabel(button, span) { + var copied = span.getAttribute("data-copied"); + button.classList.add("visible"); + var initialLabel = span.innerHTML; + span.innerHTML = copied; + setTimeout(function() { + button.classList.remove("visible"); + setTimeout(function() { + if (initialLabel !== copied) { + span.innerHTML = initialLabel; + } + }, 100); + }, 1900); +} +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + var timeoutId; + contentDiv.addEventListener("scroll", function(e) { + if (timeoutId) { + clearTimeout(timeoutId); + } + timeoutId = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + }, 100); + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/en/apidocs/search-page.js b/en/apidocs/search-page.js new file mode 100644 index 0000000..540c90f --- /dev/null +++ b/en/apidocs/search-page.js @@ -0,0 +1,284 @@ +/* + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +"use strict"; +$(function() { + var copy = $("#page-search-copy"); + var expand = $("#page-search-expand"); + var searchLink = $("span#page-search-link"); + var redirect = $("input#search-redirect"); + function setSearchUrlTemplate() { + var href = document.location.href.split(/[#?]/)[0]; + href += "?q=" + "%s"; + if (redirect.is(":checked")) { + href += "&r=1"; + } + searchLink.html(href); + copy[0].onmouseenter(); + } + function copyLink(e) { + copyToClipboard(this.previousSibling.innerText); + switchCopyLabel(this, this.lastElementChild); + } + copy.click(copyLink); + copy[0].onmouseenter = function() {}; + redirect.click(setSearchUrlTemplate); + setSearchUrlTemplate(); + copy.prop("disabled", false); + redirect.prop("disabled", false); + expand.click(function (e) { + var searchInfo = $("div.page-search-info"); + if(this.parentElement.hasAttribute("open")) { + searchInfo.attr("style", "border-width: 0;"); + } else { + searchInfo.attr("style", "border-width: 1px;").height(searchInfo.prop("scrollHeight")); + } + }); +}); +$(window).on("load", function() { + var input = $("#page-search-input"); + var reset = $("#page-search-reset"); + var notify = $("#page-search-notify"); + var resultSection = $("div#result-section"); + var resultContainer = $("div#result-container"); + var searchTerm = ""; + var activeTab = ""; + var fixedTab = false; + var visibleTabs = []; + var feelingLucky = false; + function renderResults(result) { + if (!result.length) { + notify.html(messages.noResult); + } else if (result.length === 1) { + notify.html(messages.oneResult); + } else { + notify.html(messages.manyResults.replace("{0}", result.length)); + } + resultContainer.empty(); + var r = { + "types": [], + "members": [], + "packages": [], + "modules": [], + "searchTags": [] + }; + for (var i in result) { + var item = result[i]; + var arr = r[item.category]; + arr.push(item); + } + if (!activeTab || r[activeTab].length === 0 || !fixedTab) { + Object.keys(r).reduce(function(prev, curr) { + if (r[curr].length > 0 && r[curr][0].score > prev) { + activeTab = curr; + return r[curr][0].score; + } + return prev; + }, 0); + } + if (feelingLucky && activeTab) { + notify.html(messages.redirecting) + var firstItem = r[activeTab][0]; + window.location = getURL(firstItem.indexItem, firstItem.category); + return; + } + if (result.length > 20) { + if (searchTerm[searchTerm.length - 1] === ".") { + if (activeTab === "types" && r["members"].length > r["types"].length) { + activeTab = "members"; + } else if (activeTab === "packages" && r["types"].length > r["packages"].length) { + activeTab = "types"; + } + } + } + var categoryCount = Object.keys(r).reduce(function(prev, curr) { + return prev + (r[curr].length > 0 ? 1 : 0); + }, 0); + visibleTabs = []; + var tabContainer = $("
    ").appendTo(resultContainer); + for (var key in r) { + var id = "#result-tab-" + key.replace("searchTags", "search_tags"); + if (r[key].length) { + var count = r[key].length >= 1000 ? "999+" : r[key].length; + if (result.length > 20 && categoryCount > 1) { + var button = $("").appendTo(tabContainer); + button.click(key, function(e) { + fixedTab = true; + renderResult(e.data, $(this)); + }); + visibleTabs.push(key); + } else { + $("" + categories[key] + + " (" + count + ")").appendTo(tabContainer); + renderTable(key, r[key]).appendTo(resultContainer); + tabContainer = $("
    ").appendTo(resultContainer); + + } + } + } + if (activeTab && result.length > 20 && categoryCount > 1) { + $("button#result-tab-" + activeTab).addClass("active-table-tab"); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + } + resultSection.show(); + function renderResult(category, button) { + activeTab = category; + setSearchUrl(); + resultContainer.find("div.summary-table").remove(); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + button.siblings().removeClass("active-table-tab"); + button.addClass("active-table-tab"); + } + } + function selectTab(category) { + $("button#result-tab-" + category).click(); + } + function renderTable(category, items) { + var table = $("
    ") + .addClass(category === "modules" + ? "one-column-search-results" + : "two-column-search-results"); + var col1, col2; + if (category === "modules") { + col1 = "Module"; + } else if (category === "packages") { + col1 = "Module"; + col2 = "Package"; + } else if (category === "types") { + col1 = "Package"; + col2 = "Class" + } else if (category === "members") { + col1 = "Class"; + col2 = "Member"; + } else if (category === "searchTags") { + col1 = "Location"; + col2 = "Name"; + } + $("
    " + col1 + "
    ").appendTo(table); + if (category !== "modules") { + $("
    " + col2 + "
    ").appendTo(table); + } + $.each(items, function(index, item) { + var rowColor = index % 2 ? "odd-row-color" : "even-row-color"; + renderItem(item, table, rowColor); + }); + return table; + } + function renderItem(item, table, rowColor) { + var label = getHighlightedText(item.input, item.boundaries, item.prefix.length, item.input.length); + var link = $("") + .attr("href", getURL(item.indexItem, item.category)) + .attr("tabindex", "0") + .addClass("search-result-link") + .html(label); + var container = getHighlightedText(item.input, item.boundaries, 0, item.prefix.length - 1); + if (item.category === "searchTags") { + container = item.indexItem.h || ""; + } + if (item.category !== "modules") { + $("
    ").html(container).addClass("col-plain").addClass(rowColor).appendTo(table); + } + $("
    ").html(link).addClass("col-last").addClass(rowColor).appendTo(table); + } + var timeout; + function schedulePageSearch() { + if (timeout) { + clearTimeout(timeout); + } + timeout = setTimeout(function () { + doPageSearch() + }, 100); + } + function doPageSearch() { + setSearchUrl(); + var term = searchTerm = input.val().trim(); + if (term === "") { + notify.html(messages.enterTerm); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + resultSection.hide(); + } else { + notify.html(messages.searching); + doSearch({ term: term, maxResults: 1200 }, renderResults); + } + } + function setSearchUrl() { + var query = input.val().trim(); + var url = document.location.pathname; + if (query) { + url += "?q=" + encodeURI(query); + if (activeTab && fixedTab) { + url += "&c=" + activeTab; + } + } + history.replaceState({query: query}, "", url); + } + input.on("input", function(e) { + feelingLucky = false; + schedulePageSearch(); + }); + $(document).keydown(function(e) { + if ((e.ctrlKey || e.metaKey) && (e.key === "ArrowLeft" || e.key === "ArrowRight")) { + if (activeTab && visibleTabs.length > 1) { + var idx = visibleTabs.indexOf(activeTab); + idx += e.key === "ArrowLeft" ? visibleTabs.length - 1 : 1; + selectTab(visibleTabs[idx % visibleTabs.length]); + return false; + } + } + }); + reset.click(function() { + notify.html(messages.enterTerm); + resultSection.hide(); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + input.val('').focus(); + setSearchUrl(); + }); + input.prop("disabled", false); + reset.prop("disabled", false); + + var urlParams = new URLSearchParams(window.location.search); + if (urlParams.has("q")) { + input.val(urlParams.get("q")) + } + if (urlParams.has("c")) { + activeTab = urlParams.get("c"); + fixedTab = true; + } + if (urlParams.get("r")) { + feelingLucky = true; + } + if (input.val()) { + doPageSearch(); + } else { + notify.html(messages.enterTerm); + } + input.select().focus(); +}); diff --git a/en/apidocs/search.html b/en/apidocs/search.html new file mode 100644 index 0000000..906a788 --- /dev/null +++ b/en/apidocs/search.html @@ -0,0 +1,75 @@ + + + + +Search (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +

    Search

    +
    + + +
    +Additional resources +
    +
    +
    +

    The help page provides an introduction to the scope and syntax of JavaDoc search.

    +

    You can use the <ctrl> or <cmd> keys in combination with the left and right arrow keys to switch between result tabs in this page.

    +

    The URL template below may be used to configure this page as a search engine in browsers that support this feature. It has been tested to work in Google Chrome and Mozilla Firefox. Note that other browsers may not support this feature or require a different URL format.

    +link +

    + +

    +
    +

    Loading search index...

    + +
    +
    +
    + +
    +
    +
    + + diff --git a/en/apidocs/search.js b/en/apidocs/search.js new file mode 100644 index 0000000..7673397 --- /dev/null +++ b/en/apidocs/search.js @@ -0,0 +1,458 @@ +/* + * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +"use strict"; +const messages = { + enterTerm: "Enter a search term", + noResult: "No results found", + oneResult: "Found one result", + manyResults: "Found {0} results", + loading: "Loading search index...", + searching: "Searching...", + redirecting: "Redirecting to first result...", + linkIcon: "Link icon", + linkToSection: "Link to this section" +} +const categories = { + modules: "Modules", + packages: "Packages", + types: "Types", + members: "Members", + searchTags: "Search Tags" +}; +const highlight = "$&"; +const NO_MATCH = {}; +const MAX_RESULTS = 300; +function checkUnnamed(name, separator) { + return name === "" || !name ? "" : name + separator; +} +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(str, boundaries, from, to) { + var start = from; + var text = ""; + for (var i = 0; i < boundaries.length; i += 2) { + var b0 = boundaries[i]; + var b1 = boundaries[i + 1]; + if (b0 >= to || b1 <= from) { + continue; + } + text += escapeHtml(str.slice(start, Math.max(start, b0))); + text += ""; + text += escapeHtml(str.slice(Math.max(start, b0), Math.min(to, b1))); + text += ""; + start = Math.min(to, b1); + } + text += escapeHtml(str.slice(start, to)); + return text; +} +function getURLPrefix(item, category) { + var urlPrefix = ""; + var slash = "/"; + if (category === "modules") { + return item.l + slash; + } else if (category === "packages" && item.m) { + return item.m + slash; + } else if (category === "types" || category === "members") { + if (item.m) { + urlPrefix = item.m + slash; + } else { + $.each(packageSearchIndex, function(index, it) { + if (it.m && item.p === it.l) { + urlPrefix = it.m + slash; + } + }); + } + } + return urlPrefix; +} +function getURL(item, category) { + if (item.url) { + return item.url; + } + var url = getURLPrefix(item, category); + if (category === "modules") { + url += "module-summary.html"; + } else if (category === "packages") { + if (item.u) { + url = item.u; + } else { + url += item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (category === "types") { + if (item.u) { + url = item.u; + } else { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.l + ".html"; + } + } else if (category === "members") { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.c + ".html" + "#"; + if (item.u) { + url += item.u; + } else { + url += item.l; + } + } else if (category === "searchTags") { + url += item.u; + } + item.url = url; + return url; +} +function createMatcher(term, camelCase) { + if (camelCase && !isUpperCase(term)) { + return null; // no need for camel-case matcher for lower case query + } + var pattern = ""; + var upperCase = []; + term.trim().split(/\s+/).forEach(function(w, index, array) { + var tokens = w.split(/(?=[A-Z,.()<>?[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + // ',' and '?' are the only delimiters commonly followed by space in java signatures + pattern += "(" + $.ui.autocomplete.escapeRegex(s).replace(/[,?]/g, "$&\\s*?") + ")"; + upperCase.push(false); + var isWordToken = /\w$/.test(s); + if (isWordToken) { + if (i === tokens.length - 1 && index < array.length - 1) { + // space in query string matches all delimiters + pattern += "(.*?)"; + upperCase.push(isUpperCase(s[0])); + } else { + if (!camelCase && isUpperCase(s) && s.length === 1) { + pattern += "()"; + } else { + pattern += "([a-z0-9$<>?[\\]]*?)"; + } + upperCase.push(isUpperCase(s[0])); + } + } else { + pattern += "()"; + upperCase.push(false); + } + } + }); + var re = new RegExp(pattern, "gi"); + re.upperCase = upperCase; + return re; +} +function findMatch(matcher, input, startOfName, endOfName) { + var from = startOfName; + matcher.lastIndex = from; + var match = matcher.exec(input); + // Expand search area until we get a valid result or reach the beginning of the string + while (!match || match.index + match[0].length < startOfName || endOfName < match.index) { + if (from === 0) { + return NO_MATCH; + } + from = input.lastIndexOf(".", from - 2) + 1; + matcher.lastIndex = from; + match = matcher.exec(input); + } + var boundaries = []; + var matchEnd = match.index + match[0].length; + var score = 5; + var start = match.index; + var prevEnd = -1; + for (var i = 1; i < match.length; i += 2) { + var isUpper = isUpperCase(input[start]); + var isMatcherUpper = matcher.upperCase[i]; + // capturing groups come in pairs, match and non-match + boundaries.push(start, start + match[i].length); + // make sure groups are anchored on a left word boundary + var prevChar = input[start - 1] || ""; + var nextChar = input[start + 1] || ""; + if (start !== 0 && !/[\W_]/.test(prevChar) && !/[\W_]/.test(input[start])) { + if (isUpper && (isLowerCase(prevChar) || isLowerCase(nextChar))) { + score -= 0.1; + } else if (isMatcherUpper && start === prevEnd) { + score -= isUpper ? 0.1 : 1.0; + } else { + return NO_MATCH; + } + } + prevEnd = start + match[i].length; + start += match[i].length + match[i + 1].length; + + // lower score for parts of the name that are missing + if (match[i + 1] && prevEnd < endOfName) { + score -= rateNoise(match[i + 1]); + } + } + // lower score if a type name contains unmatched camel-case parts + if (input[matchEnd - 1] !== "." && endOfName > matchEnd) + score -= rateNoise(input.slice(matchEnd, endOfName)); + score -= rateNoise(input.slice(0, Math.max(startOfName, match.index))); + + if (score <= 0) { + return NO_MATCH; + } + return { + input: input, + score: score, + boundaries: boundaries + }; +} +function isUpperCase(s) { + return s !== s.toLowerCase(); +} +function isLowerCase(s) { + return s !== s.toUpperCase(); +} +function rateNoise(str) { + return (str.match(/([.(])/g) || []).length / 5 + + (str.match(/([A-Z]+)/g) || []).length / 10 + + str.length / 20; +} +function doSearch(request, response) { + var term = request.term.trim(); + var maxResults = request.maxResults || MAX_RESULTS; + if (term.length === 0) { + return this.close(); + } + var matcher = { + plainMatcher: createMatcher(term, false), + camelCaseMatcher: createMatcher(term, true) + } + var indexLoaded = indexFilesLoaded(); + + function getPrefix(item, category) { + switch (category) { + case "packages": + return checkUnnamed(item.m, "/"); + case "types": + return checkUnnamed(item.p, "."); + case "members": + return checkUnnamed(item.p, ".") + item.c + "."; + default: + return ""; + } + } + function useQualifiedName(category) { + switch (category) { + case "packages": + return /[\s/]/.test(term); + case "types": + case "members": + return /[\s.]/.test(term); + default: + return false; + } + } + function searchIndex(indexArray, category) { + var matches = []; + if (!indexArray) { + if (!indexLoaded) { + matches.push({ l: messages.loading, category: category }); + } + return matches; + } + $.each(indexArray, function (i, item) { + var prefix = getPrefix(item, category); + var simpleName = item.l; + var qualifiedName = prefix + simpleName; + var useQualified = useQualifiedName(category); + var input = useQualified ? qualifiedName : simpleName; + var startOfName = useQualified ? prefix.length : 0; + var endOfName = category === "members" && input.indexOf("(", startOfName) > -1 + ? input.indexOf("(", startOfName) : input.length; + var m = findMatch(matcher.plainMatcher, input, startOfName, endOfName); + if (m === NO_MATCH && matcher.camelCaseMatcher) { + m = findMatch(matcher.camelCaseMatcher, input, startOfName, endOfName); + } + if (m !== NO_MATCH) { + m.indexItem = item; + m.prefix = prefix; + m.category = category; + if (!useQualified) { + m.input = qualifiedName; + m.boundaries = m.boundaries.map(function(b) { + return b + prefix.length; + }); + } + matches.push(m); + } + return true; + }); + return matches.sort(function(e1, e2) { + return e2.score - e1.score; + }).slice(0, maxResults); + } + + var result = searchIndex(moduleSearchIndex, "modules") + .concat(searchIndex(packageSearchIndex, "packages")) + .concat(searchIndex(typeSearchIndex, "types")) + .concat(searchIndex(memberSearchIndex, "members")) + .concat(searchIndex(tagSearchIndex, "searchTags")); + + if (!indexLoaded) { + updateSearchResults = function() { + doSearch(request, response); + } + } else { + updateSearchResults = function() {}; + } + response(result); +} +// JQuery search menu implementation +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> .result-item"); + // workaround for search result scrolling + this.menu._scrollIntoView = function _scrollIntoView( item ) { + var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight; + if ( this._hasScroll() ) { + borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0; + paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0; + offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop; + scroll = this.activeMenu.scrollTop(); + elementHeight = this.activeMenu.height() - 26; + itemHeight = item.outerHeight(); + + if ( offset < 0 ) { + this.activeMenu.scrollTop( scroll + offset ); + } else if ( offset + itemHeight > elementHeight ) { + this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight ); + } + } + }; + }, + _renderMenu: function(ul, items) { + var currentCategory = ""; + var widget = this; + widget.menu.bindings = $(); + $.each(items, function(index, item) { + if (item.category && item.category !== currentCategory) { + ul.append("
  • " + categories[item.category] + "
  • "); + currentCategory = item.category; + } + var li = widget._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", categories[item.category] + " : " + item.l); + } else { + li.attr("aria-label", item.l); + } + li.attr("class", "result-item"); + }); + ul.append(""); + }, + _renderItem: function(ul, item) { + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + var label = item.l + ? item.l + : getHighlightedText(item.input, item.boundaries, 0, item.input.length); + var idx = item.indexItem; + if (item.category === "searchTags" && idx && idx.h) { + if (idx.d) { + div.html(label + " (" + idx.h + ")
    " + + idx.d + "
    "); + } else { + div.html(label + " (" + idx.h + ")"); + } + } else { + div.html(label); + } + return li; + } +}); +$(function() { + var expanded = false; + var windowWidth; + function collapse() { + if (expanded) { + $("div#navbar-top").removeAttr("style"); + $("button#navbar-toggle-button") + .removeClass("expanded") + .attr("aria-expanded", "false"); + expanded = false; + } + } + $("button#navbar-toggle-button").click(function (e) { + if (expanded) { + collapse(); + } else { + var navbar = $("div#navbar-top"); + navbar.height(navbar.prop("scrollHeight")); + $("button#navbar-toggle-button") + .addClass("expanded") + .attr("aria-expanded", "true"); + expanded = true; + windowWidth = window.innerWidth; + } + }); + $("ul.sub-nav-list-small li a").click(collapse); + $("input#search-input").focus(collapse); + $("main").click(collapse); + $("section[id] > :header, :header[id], :header:has(a[id])").each(function(idx, el) { + // Create anchor links for headers with an associated id attribute + var hdr = $(el); + var id = hdr.attr("id") || hdr.parent("section").attr("id") || hdr.children("a").attr("id"); + if (id) { + hdr.append(" " + messages.linkIcon +""); + } + }); + $(window).on("orientationchange", collapse).on("resize", function(e) { + if (expanded && windowWidth !== window.innerWidth) collapse(); + }); + var search = $("#search-input"); + var reset = $("#reset-button"); + search.catcomplete({ + minLength: 1, + delay: 200, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push({ l: messages.noResult }); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.indexItem) { + var url = getURL(ui.item.indexItem, ui.item.category); + window.location.href = pathtoroot + url; + $("#search-input").focus(); + } + } + }); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + reset.click(function() { + search.val('').focus(); + }); + search.focus(); +}); diff --git a/en/apidocs/stylesheet.css b/en/apidocs/stylesheet.css new file mode 100644 index 0000000..f71489f --- /dev/null +++ b/en/apidocs/stylesheet.css @@ -0,0 +1,1272 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * These CSS custom properties (variables) define the core color and font + * properties used in this stylesheet. + */ +:root { + /* body, block and code fonts */ + --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + --code-font-family: 'DejaVu Sans Mono', monospace; + /* Base font sizes for body and code elements */ + --body-font-size: 14px; + --code-font-size: 14px; + /* Text colors for body and block elements */ + --body-text-color: #353833; + --block-text-color: #474747; + /* Background colors for various structural elements */ + --body-background-color: #ffffff; + --section-background-color: #f8f8f8; + --detail-background-color: #ffffff; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #4D7A97; + --navbar-text-color: #ffffff; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #dee3e9; + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #f8981d; + --selected-text-color: #253441; + --selected-link-color: #1f389c; + /* Background colors for generated tables */ + --even-row-color: #ffffff; + --odd-row-color: #eeeeef; + /* Text color for page title */ + --title-color: #2c4557; + /* Text colors for links */ + --link-color: #4A6782; + --link-color-active: #bb7a2a; + /* Snippet colors */ + --snippet-background-color: #ebecee; + --snippet-text-color: var(--block-text-color); + --snippet-highlight-color: #f7c590; + /* Border colors for structural elements and user defined tables */ + --border-color: #ededed; + --table-border-color: #000000; + /* Search input colors */ + --search-input-background-color: #ffffff; + --search-input-text-color: #000000; + --search-input-placeholder-color: #909090; + /* Highlight color for active search tag target */ + --search-tag-highlight-color: #ffff00; + /* Adjustments for icon and active background colors of copy-to-clipboard buttons */ + --copy-icon-brightness: 100%; + --copy-button-background-color-active: rgba(168, 168, 176, 0.3); + /* Colors for invalid tag notifications */ + --invalid-tag-background-color: #ffe6e6; + --invalid-tag-text-color: #000000; +} +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ +body { + background-color:var(--body-background-color); + color:var(--body-text-color); + font-family:var(--body-font-family); + font-size:var(--body-font-size); + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:var(--link-color); +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:var(--link-color-active); +} +pre { + font-family:var(--code-font-family); + font-size:1em; +} +h1 { + font-size:1.428em; +} +h2 { + font-size:1.285em; +} +h3 { + font-size:1.14em; +} +h4 { + font-size:1.072em; +} +h5 { + font-size:1.001em; +} +h6 { + font-size:0.93em; +} +/* Disable font boosting for selected elements */ +h1, h2, h3, h4, h5, h6, div.member-signature { + max-height: 1000em; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:var(--code-font-family); +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:var(--code-font-size); + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:var(--code-font-family); + font-size:1em; + padding-top:4px; +} +.summary-table dt code { + font-family:var(--code-font-family); + font-size:1em; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: var(--body-font-family); + font-size: 1em; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:0.915em; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +/* + * Styles for navigation bar. + */ +@media screen { + div.flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + header.flex-header { + flex: 0 0 auto; + } + div.flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + float:left; + width:100%; + clear:right; + min-height:2.8em; + padding:10px 0 0 0; + overflow:hidden; + font-size:0.857em; +} +button#navbar-toggle-button { + display:none; +} +ul.sub-nav-list-small { + display: none; +} +.sub-nav { + background-color:var(--subnav-background-color); + float:left; + width:100%; + overflow:hidden; + font-size:0.857em; +} +.sub-nav div { + clear:left; + float:left; + padding:6px; + text-transform:uppercase; +} +.sub-nav .sub-nav-list { + padding-top:4px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0; + padding:6px; + clear:none; + text-align:right; + position:relative; +} +ul.sub-nav-list li { + list-style:none; + float:left; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:var(--navbar-text-color); + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + color:var(--link-color-active); +} +.nav-bar-cell1-rev { + background-color:var(--selected-background-color); + color:var(--selected-text-color); + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header. + */ +.title { + color:var(--title-color); + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +ul.contents-list { + margin: 0 0 15px 0; + padding: 0; + list-style: none; +} +ul.contents-list li { + font-size:0.93em; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:var(--subnav-background-color); + border:1px solid var(--border-color); + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: var(--body-font-family); + font-size:0.856em; + font-weight:bold; + margin:10px 0 0 0; + color:var(--body-text-color); +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:1em; + font-family:var(--block-font-family) +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.ref-list { + padding:0; + margin:0; +} +ul.ref-list > li { + list-style:none; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.tag-list, ul.tag-list-long { + padding-left: 0; + list-style: none; +} +ul.tag-list li { + display: inline; +} +ul.tag-list li:not(:last-child):after, +ul.tag-list-long li:not(:last-child):after +{ + content: ", "; + white-space: pre-wrap; +} +ul.preview-feature-list { + list-style: none; + margin:0; + padding:0.1em; + line-height: 1.6em; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border:1px solid var(--border-color); + border-top:0; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:var(--selected-text-color); + clear:none; + overflow:hidden; + padding: 10px 0 0 1px; + margin:0; +} +.caption a:link, .caption a:visited { + color:var(--selected-link-color); +} +.caption a:hover, +.caption a:active { + color:var(--navbar-text-color); +} +.caption span { + font-weight:bold; + white-space:nowrap; + padding:5px 12px 7px 12px; + display:inline-block; + float:left; + background-color:var(--selected-background-color); + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:10px 0 0 0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 8px; +} +div.table-tabs > .active-table-tab { + background: var(--selected-background-color); + color: var(--selected-text-color); +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.two-column-search-results { + display: grid; + grid-template-columns: minmax(400px, max-content) minmax(400px, auto); +} +div.checkboxes { + line-height: 2em; +} +div.checkboxes > span { + margin-left: 10px; +} +div.checkboxes > label { + margin-left: 8px; + white-space: nowrap; +} +div.checkboxes > label > input { + margin: 0 2px; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(25%, max-content) minmax(25%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto); +} +.three-column-release-summary { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +@media screen and (max-width: 800px) { + .two-column-search-results { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); + } + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-release-summary { + display: grid; + grid-template-columns: minmax(70%, max-content) minmax(30%, max-content) + } + .three-column-summary .col-last, + .three-column-release-summary .col-last{ + grid-column-end: span 2; + } +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; + overflow-x: auto; + scrollbar-width: thin; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:var(--subnav-background-color); + font-weight: bold; +} +/* Sortable table columns */ +.table-header[onclick] { + cursor: pointer; +} +.table-header[onclick]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + '); + background-size:100% 100%; + width:9px; + height:14px; + margin-left:4px; + margin-bottom:-3px; +} +.table-header[onclick].sort-asc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + +} +.table-header[onclick].sort-desc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +.col-first, .col-first { + font-size:0.93em; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:0.93em; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited { + font-weight:bold; +} +.even-row-color, .even-row-color .table-header { + background-color:var(--even-row-color); +} +.odd-row-color, .odd-row-color .table-header { + background-color:var(--odd-row-color); +} +/* + * Styles for contents. + */ +div.block { + font-size:var(--body-font-size); + font-family:var(--block-font-family); +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:var(--code-font-family); + font-size:1em; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + /* Color of line numbers in source pages can be set via custom property below */ + color:var(--source-linenumber-color, green); + padding:0 30px 0 0; +} +.block { + display:block; + margin:0 10px 5px 0; + color:var(--block-text-color); +} +.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +details.invalid-tag, span.invalid-tag { + font-size:1em; + font-family:var(--block-font-family); + color: var(--invalid-tag-text-color); + background: var(--invalid-tag-background-color); + border: thin solid var(--table-border-color); + border-radius:2px; + padding: 2px 4px; + display:inline-block; +} +details summary { + cursor: pointer; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-state-active { + /* Overrides the color of selection used in jQuery UI */ + background: var(--selected-background-color); + border: 1px solid var(--selected-background-color); + color: var(--selected-text-color); +} +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:auto; + overflow-x:auto; + scrollbar-width: thin; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:1; + background-color: var(--body-background-color); +} +ul.ui-autocomplete li { + float:left; + clear:both; + min-width:100%; +} +ul.ui-autocomplete li.ui-static-link { + position:sticky; + bottom:0; + left:0; + background: var(--subnav-background-color); + padding: 5px 0; + font-family: var(--body-font-family); + font-size: 0.93em; + font-weight: bolder; + z-index: 2; +} +li.ui-static-link a, li.ui-static-link a:visited { + text-decoration:none; + color:var(--link-color); + float:right; + margin-right:20px; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +.ui-autocomplete .result-highlight { + font-weight:bold; +} +#search-input, #page-search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + background-color: var(--search-input-background-color); + color: var(--search-input-text-color); + border-color: var(--border-color); + padding-left:20px; + width: 250px; + margin: 0; +} +#search-input { + margin-left: 4px; +} +#reset-button { + background-color: transparent; + background-image:url('resources/x.png'); + background-repeat:no-repeat; + background-size:contain; + border:0; + border-radius:0; + width:12px; + height:12px; + position:absolute; + right:12px; + top:10px; + font-size:0; +} +::placeholder { + color:var(--search-input-placeholder-color); + opacity: 1; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:var(--search-tag-highlight-color); +} +details.page-search-details { + display: inline-block; +} +div#result-container { + font-size: 1em; +} +div#result-container a.search-result-link { + padding: 0; + margin: 4px 0; + width: 100%; +} +#result-container .result-highlight { + font-weight:bolder; +} +.page-search-info { + background-color: var(--subnav-background-color); + border-radius: 3px; + border: 0 solid var(--border-color); + padding: 0 8px; + overflow: hidden; + height: 0; + transition: all 0.2s ease; +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.page-search-header { + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + display: inline-block; +} +button.page-search-header { + border: none; + cursor: pointer; +} +span#page-search-link { + text-decoration: underline; +} +.module-graph span, .sealed-graph span { + display:none; + position:absolute; +} +.module-graph:hover span, .sealed-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0 20px 5px 10px; + border: 1px solid var(--border-color); + background-color: var(--section-background-color); +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:var(--detail-background-color); + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +/* + * Styles for header/section anchor links + */ +a.anchor-link { + opacity: 0; + transition: opacity 0.1s; +} +:hover > a.anchor-link { + opacity: 80%; +} +a.anchor-link:hover, +a.anchor-link:focus-visible, +a.anchor-link.visible { + opacity: 100%; +} +a.anchor-link > img { + width: 0.9em; + height: 0.9em; +} +/* + * Styles for copy-to-clipboard buttons + */ +button.copy { + opacity: 70%; + border: none; + border-radius: 3px; + position: relative; + background:none; + transition: opacity 0.3s; + cursor: pointer; +} +:hover > button.copy { + opacity: 80%; +} +button.copy:hover, +button.copy:active, +button.copy:focus-visible, +button.copy.visible { + opacity: 100%; +} +button.copy img { + position: relative; + background: none; + filter: brightness(var(--copy-icon-brightness)); +} +button.copy:active { + background-color: var(--copy-button-background-color-active); +} +button.copy span { + color: var(--body-text-color); + position: relative; + top: -0.1em; + transition: all 0.1s; + font-size: 0.76rem; + line-height: 1.2em; + opacity: 0; +} +button.copy:hover span, +button.copy:focus-visible span, +button.copy.visible span { + opacity: 100%; +} +/* search page copy button */ +button#page-search-copy { + margin-left: 0.4em; + padding:0.3em; + top:0.13em; +} +button#page-search-copy img { + width: 1.2em; + height: 1.2em; + padding: 0.01em 0; + top: 0.15em; +} +button#page-search-copy span { + color: var(--body-text-color); + line-height: 1.2em; + padding: 0.2em; + top: -0.18em; +} +div.page-search-info:hover button#page-search-copy span { + opacity: 100%; +} +/* snippet copy button */ +button.snippet-copy { + position: absolute; + top: 6px; + right: 6px; + height: 1.7em; + padding: 2px; +} +button.snippet-copy img { + width: 18px; + height: 18px; + padding: 0.05em 0; +} +button.snippet-copy span { + line-height: 1.2em; + padding: 0.2em; + position: relative; + top: -0.5em; +} +div.snippet-container:hover button.snippet-copy span { + opacity: 100%; +} +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.striped > thead { + background-color: var(--subnav-background-color); +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped > tbody > tr:nth-child(even) { + background-color: var(--odd-row-color) +} +table.striped > tbody > tr:nth-child(odd) { + background-color: var(--even-row-color) +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid var(--table-border-color); + border-right: 1px solid var(--table-border-color); +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak style for small screens. + */ +@media screen and (max-width: 920px) { + header.flex-header { + max-height: 100vh; + overflow-y: auto; + } + div#navbar-top { + height: 2.8em; + transition: height 0.35s ease; + } + ul.nav-list { + display: block; + width: 40%; + float:left; + clear: left; + margin: 10px 0 0 0; + padding: 0; + } + ul.nav-list li { + float: none; + padding: 6px; + margin-left: 10px; + margin-top: 2px; + } + ul.sub-nav-list-small { + display:block; + height: 100%; + width: 50%; + float: right; + clear: right; + background-color: var(--subnav-background-color); + color: var(--body-text-color); + margin: 6px 0 0 0; + padding: 0; + } + ul.sub-nav-list-small ul { + padding-left: 20px; + } + ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited { + color:var(--link-color); + } + ul.sub-nav-list-small a:hover { + color:var(--link-color-active); + } + ul.sub-nav-list-small li { + list-style:none; + float:none; + padding: 6px; + margin-top: 1px; + text-transform:uppercase; + } + ul.sub-nav-list-small > li { + margin-left: 10px; + } + ul.sub-nav-list-small li p { + margin: 5px 0; + } + div#navbar-sub-list { + display: none; + } + .top-nav a:link, .top-nav a:active, .top-nav a:visited { + display: block; + } + button#navbar-toggle-button { + width: 3.4em; + height: 2.8em; + background-color: transparent; + display: block; + float: left; + border: 0; + margin: 0 10px; + cursor: pointer; + font-size: 10px; + } + button#navbar-toggle-button .nav-bar-toggle-icon { + display: block; + width: 24px; + height: 3px; + margin: 1px 0 4px 0; + border-radius: 2px; + transition: all 0.1s; + background-color: var(--navbar-text-color); + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { + transform: rotate(45deg); + transform-origin: 10% 10%; + width: 26px; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { + opacity: 0; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { + transform: rotate(-45deg); + transform-origin: 10% 90%; + width: 26px; + } +} +@media screen and (max-width: 800px) { + .about-language { + padding-right: 16px; + } + ul.nav-list li { + margin-left: 5px; + } + ul.sub-nav-list-small > li { + margin-left: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 400px) { + .about-language { + font-size: 10px; + padding-right: 12px; + } +} +@media screen and (max-width: 400px) { + .nav-list-search { + width: 94%; + } + #search-input, #page-search-input { + width: 70%; + } +} +@media screen and (max-width: 320px) { + .nav-list-search > label { + display: none; + } + .nav-list-search { + width: 90%; + } + #search-input, #page-search-input { + width: 80%; + } +} + +pre.snippet { + background-color: var(--snippet-background-color); + color: var(--snippet-text-color); + padding: 10px; + margin: 12px 0; + overflow: auto; + white-space: pre; +} +div.snippet-container { + position: relative; +} +@media screen and (max-width: 800px) { + pre.snippet { + padding-top: 26px; + } + button.snippet-copy { + top: 4px; + right: 4px; + } +} +pre.snippet .italic { + font-style: italic; +} +pre.snippet .bold { + font-weight: bold; +} +pre.snippet .highlighted { + background-color: var(--snippet-highlight-color); + border-radius: 10%; +} diff --git a/en/apidocs/tag-search-index.js b/en/apidocs/tag-search-index.js new file mode 100644 index 0000000..0367dae --- /dev/null +++ b/en/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/en/apidocs/type-search-index.js b/en/apidocs/type-search-index.js new file mode 100644 index 0000000..05c9d7d --- /dev/null +++ b/en/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"org.mybatis.spring.nativex","l":"MyBatisDynamicSqlNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisFreeMarkerNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisThymeleafNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisVelocityNativeConfiguration"}];updateSearchResults(); \ No newline at end of file diff --git a/en/checkstyle-aggregate.html b/en/checkstyle-aggregate.html new file mode 100644 index 0000000..fa8d8b1 --- /dev/null +++ b/en/checkstyle-aggregate.html @@ -0,0 +1,1089 @@ + + + + + + + + + + mybatis-spring-native – Checkstyle Results + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Checkstyle Results

    +

    The following document contains the results of Checkstyle 10.13.0 with checkstyle.xml ruleset.

    +

    Summary

    + + + + + + + + + + +
    Files Info Warnings Errors
    470730
    +

    Files

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    File I W E
    org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java010
    org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java010
    org/mybatis/spring/nativex/MyBatisResourcesScan.java020
    org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java010
    org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java010
    org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java010
    org/mybatis/spring/nativex/sample/cache/City.java020
    org/mybatis/spring/nativex/sample/cache/CityMapper.java020
    org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java020
    org/mybatis/spring/nativex/sample/configuration/City.java010
    org/mybatis/spring/nativex/sample/configuration/CityMapper.java020
    org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java010
    org/mybatis/spring/nativex/sample/dao/City.java020
    org/mybatis/spring/nativex/sample/dao/CityDao.java020
    org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java020
    org/mybatis/spring/nativex/sample/dynamicsql/City.java020
    org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java040
    org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java010
    org/mybatis/spring/nativex/sample/external/entity/City.java020
    org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java020
    org/mybatis/spring/nativex/sample/freemarker/City.java020
    org/mybatis/spring/nativex/sample/freemarker/CityMapper.java020
    org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java010
    org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java030
    org/mybatis/spring/nativex/sample/simple/City.java020
    org/mybatis/spring/nativex/sample/simple/CityMapper.java020
    org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java010
    org/mybatis/spring/nativex/sample/sqlprovider/City.java020
    org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java040
    org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java010
    org/mybatis/spring/nativex/sample/thymeleaf/City.java040
    org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java020
    org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java030
    org/mybatis/spring/nativex/sample/velocity/City.java020
    org/mybatis/spring/nativex/sample/velocity/CityMapper.java020
    org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java010
    org/mybatis/spring/nativex/sample/xml/City.java020
    org/mybatis/spring/nativex/sample/xml/CityMapper.java020
    org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java010
    +

    Rules

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    CategoryRuleViolationsSeverity
    codingOverloadMethodsDeclarationOrder1 Warning
    importsCustomImportOrder +
      +
    • separateLineBetweenGroups: "true"
    • +
    • sortImportsInGroupAlphabetically: "true"
    • +
    • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
    • +
    • tokens: "IMPORT, STATIC_IMPORT, PACKAGE_DEF"
    18 Warning
    javadocMissingJavadocMethod +
      +
    • scope: "public"
    • +
    • tokens: "METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"
    • +
    • minLineCount: "2"
    • +
    • allowedAnnotations: "Override, Test"
    12 Warning
    MissingJavadocType +
      +
    • scope: "protected"
    • +
    • excludeScope: "nothing"
    • +
    • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, RECORD_DEF, ANNOTATION_DEF"
    38 Warning
    sizesLineLength +
      +
    • fileExtensions: "java"
    • +
    • max: "120"
    • +
    • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
    4 Error
    +

    Details

    +

    org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.DeleteProvider'35
    +

    org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.reflection.TypeParameterResolver'26
    +

    org/mybatis/spring/nativex/MyBatisResourcesScan.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.springframework.context.annotation.Import'22
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.123
    +

    org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.commons.logging.Log'30
    +

    org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor'35
    +

    org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer'20
    +

    org/mybatis/spring/nativex/sample/cache/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.20
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
    +

    org/mybatis/spring/nativex/sample/cache/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.CacheNamespace'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.26
    +

    org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.slf4j.Logger'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.29
    +

    org/mybatis/spring/nativex/sample/configuration/City.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
    +

    org/mybatis/spring/nativex/sample/configuration/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/dao/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/dao/CityDao.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.session.SqlSession'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.23
    +

    org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningsizesLineLengthLine is longer than 120 characters (found 128).26
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.26
    +

    org/mybatis/spring/nativex/sample/dynamicsql/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'22
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.40
     WarningcodingOverloadMethodsDeclarationOrderAll overloaded methods should be placed next to each other. Placing non-overloaded methods in between overloaded methods with the same type is a violation. Previous overloaded method located at line '44'.51
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.61
    +

    org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/external/entity/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Mapper'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.23
    +

    org/mybatis/spring/nativex/sample/freemarker/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
    +

    org/mybatis/spring/nativex/sample/freemarker/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.28
    +

    org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningsizesLineLengthLine is longer than 120 characters (found 125).29
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.29
     WarningsizesLineLengthLine is longer than 120 characters (found 146).30
    +

    org/mybatis/spring/nativex/sample/simple/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/simple/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/sqlprovider/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.35
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.46
    +

    org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/thymeleaf/City.java

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
    +

    org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.28
     WarningsizesLineLengthLine is longer than 120 characters (found 137).34
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.34
    +

    org/mybatis/spring/nativex/sample/velocity/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/velocity/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/xml/City.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
     WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
    +

    org/mybatis/spring/nativex/sample/xml/CityMapper.java

    + + + + + + + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Mapper'20
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.22
    +

    org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java

    + + + + + + + + + + + + +
    SeverityCategoryRuleMessageLine
     WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
    +
    +
    +
    +
    + + + + diff --git a/en/checkstyle.html b/en/checkstyle.html new file mode 100644 index 0000000..d1c8cbb --- /dev/null +++ b/en/checkstyle.html @@ -0,0 +1,102 @@ + + + + + + + + + + mybatis-spring-native-docs – Checkstyle Results + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Checkstyle Results

    +

    The following document contains the results of Checkstyle 10.13.0 with checkstyle.xml ruleset.

    +

    Summary

    + + + + + + + + + + +
    Files Info Warnings Errors
    0000
    +

    Files

    + + + + + +
    File I W E
    +

    Rules

    + + + + + +
    CategoryRuleViolationsSeverity
    +

    Details

    +
    +
    +
    +
    + + + + diff --git a/en/ci-management.html b/en/ci-management.html new file mode 100644 index 0000000..25efcd6 --- /dev/null +++ b/en/ci-management.html @@ -0,0 +1,81 @@ + + + + + + + + + + mybatis-spring-native-docs – CI Management + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This project uses GitHub Actions.

    +

    Access

    +

    The following is a link to the continuous integration system used by the project:

    +
    +

    Notifiers

    +

    No notifiers are defined. Please check back at a later date.

    +
    +
    +
    +
    + + + + diff --git a/en/clirr-report.html b/en/clirr-report.html new file mode 100644 index 0000000..2e0c2a6 --- /dev/null +++ b/en/clirr-report.html @@ -0,0 +1,73 @@ + + + + + + + + + + mybatis-spring-native-docs + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +$bodyContent.replaceAll( '
    (\r?\n)?
    ', '
    ' ).replaceAll( 'class="bodyTable"', 'class="table table-striped"' ).replaceAll( 'class="bodyTable bodyTableBorder"', 'class="table table-bordered table-striped"' )
    +        
    +
    +
    +
    + + + + diff --git a/en/cpd.html b/en/cpd.html new file mode 100644 index 0000000..682f98f --- /dev/null +++ b/en/cpd.html @@ -0,0 +1,76 @@ + + + + + + + + + + mybatis-spring-native-docs – CPD Results + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    CPD Results

    +

    The following document contains the results of PMD's CPD 6.55.0.

    +

    CPD found no problems in your source code.

    +
    +
    +
    +
    + + + + diff --git a/en/css/apache-maven-fluido-2.0.0-M8.min.css b/en/css/apache-maven-fluido-2.0.0-M8.min.css new file mode 100644 index 0000000..1b7eff7 --- /dev/null +++ b/en/css/apache-maven-fluido-2.0.0-M8.min.css @@ -0,0 +1,20 @@ +/*! + * Bootstrap v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media print{*{color:#000 !important;text-shadow:none !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover,a:focus{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;line-height:0;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:""}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:bold}em{font-style:italic}cite{font-style:normal}.muted{color:#999}a.muted:hover,a.muted:focus{color:gray}.text-warning{color:#c09853}a.text-warning:hover,a.text-warning:focus{color:#a47e3c}.text-error{color:#b94a48}a.text-error:hover,a.text-error:focus{color:#953b39}.text-info{color:#3a87ad}a.text-info:hover,a.text-info:focus{color:#2d6987}.text-success{color:#468847}a.text-success:hover,a.text-success:focus{color:#356635}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{line-height:40px}h1{font-size:38.5px}h2{font-size:31.5px}h3{font-size:24.5px}h4{font-size:17.5px}h5{font-size:14px}h6{font-size:11.9px}h1 small{font-size:24.5px}h2 small{font-size:17.5px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;padding-right:5px;padding-left:5px;*zoom:1}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:bold}dd{margin-left:10px}.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:""}.dl-horizontal:after{clear:both}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}input,textarea,.uneditable-input{width:206px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;background-color:#fff;border:1px solid #ccc}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:20px;padding-left:20px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;line-height:0;content:""}.controls-row:after{clear:both}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left}.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad}.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3}.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;line-height:0;content:""}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-append,.input-prepend{display:inline-block;margin-bottom:10px;font-size:0;white-space:nowrap;vertical-align:middle}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:180px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0}.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5}table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0}.table td.span1,.table th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success>td{background-color:#dff0d8}.table tbody tr.error>td{background-color:#f2dede}.table tbody tr.warning>td{background-color:#fcf8e3}.table tbody tr.info>td{background-color:#d9edf7}.table-hover tbody tr.success:hover>td{background-color:#d0e9c6}.table-hover tbody tr.error:hover>td{background-color:#ebcccc}.table-hover tbody tr.warning:hover>td{background-color:#faf2cc}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{width:16px;background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{width:16px;background-position:-384px -120px}.icon-folder-open{width:16px;background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open{*z-index:1000}.open>.dropdown-menu{display:block}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px}.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-large .caret{margin-top:6px}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px}.btn-mini .caret,.btn-small .caret{margin-top:8px}.dropup .btn-large .caret{border-bottom-width:5px}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert h4{color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success h4{color:#468847}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger h4,.alert-error h4{color:#b94a48}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:20px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px}.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;line-height:0;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent}.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065)}.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:""}.navbar-inner:after{clear:both}.navbar .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff}.navbar-inverse .brand{color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff}.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111}.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb>li>.divider{padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{margin:20px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default}.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;cursor:default;background-color:transparent}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px}.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px}.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;line-height:0;content:""}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:default;background-color:#fff}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.label:empty,.badge:empty{display:none}a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress .bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}/*! + * Bootstrap Responsive v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.visible-phone{display:none !important}.visible-tablet{display:none !important}.hidden-desktop{display:none !important}.visible-desktop{display:inherit !important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important}.visible-desktop{display:none !important}.visible-tablet{display:inherit !important}.hidden-tablet{display:none !important}}@media(max-width:767px){.hidden-desktop{display:inherit !important}.visible-desktop{display:none !important}.visible-phone{display:inherit !important}.hidden-phone{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:inherit !important}.hidden-print{display:none !important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}.clear{clear:both;visibility:hidden}.clear hr{display:none}section>p,section>dt,section>dl,section>table.table,section>div.verbatim{margin-right:7px;margin-left:7px}#poweredBy{text-align:center}a.externalLink{padding-right:18px}a.newWindow{background:url('../images/window-new.png') right center no-repeat;padding-right:18px}a.externalLink[href^=http]{background:url('../images/internet-web-browser.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".asc"]{background:url('../images/accessories-text-editor.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".jpg"],a.externalLink[href$=".jpeg"],a.externalLink[href$=".gif"],a.externalLink[href$=".png"]{background:url('../images/image-x-generic.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".tar.gz"],a.externalLink[href$=".zip"]{background:url('../images/package-x-generic.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".md5"],a.externalLink[href$=".sha1"]{background:url('../images/document-properties.png') right center no-repeat;padding-right:18px}a.externalLink[href^=https]{background:url('../images/application-certificate.png') right center no-repeat;padding-right:18px}a.externalLink[href^=file]{background:url('../images/drive-harddisk.png') right center no-repeat;padding-right:18px}a.externalLink[href^=ftp]{background:url('../images/network-server.png') right center no-repeat;padding-right:18px}a.externalLink[href^=mailto]{background:url('../images/contact-new.png') right center no-repeat;padding-right:18px}li.none{list-style:none}.search-query{width:95%}.sidebar-nav .search-query{width:calc(100% - 30px)}body.topBarEnabled{padding-top:43px}div.container-top,div.container-fluid-top{padding-top:10px}.builtBy{display:block}img.builtBy{margin:10px auto}#search-form{margin-left:9px;margin-right:9px}li{color:#404040}table.zebra-striped{background-color:#FFF}.footer{background-color:#EEE}.sidebar-nav{padding-left:0;padding-right:0}.sidebar-nav .icon-chevron-right,.sidebar-nav .icon-chevron-down{margin-top:2px;margin-right:-6px;float:right;opacity:.25}li.pull-right{margin-left:3px;margin-right:3px}.well{margin-bottom:10px}a.dropdown-toggle{cursor:pointer}h1>code,h2>code,h3>code,h4>code,h5>code{font-size:unset}.table th,.table td{text-align:revert}.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0;padding-left:15px}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}/*! + * "Fork me on GitHub" CSS ribbon v0.2.3 | MIT License + * https://github.com/simonwhitaker/github-fork-ribbon-css +*/.github-fork-ribbon{width:12.1em;height:12.1em;position:absolute;overflow:hidden;top:0;right:0;z-index:9999;pointer-events:none;font-size:13px;text-decoration:none;text-indent:-999999px}.github-fork-ribbon.fixed{position:fixed}.github-fork-ribbon:hover,.github-fork-ribbon:active{background-color:rgba(0,0,0,0.0)}.github-fork-ribbon:before,.github-fork-ribbon:after{position:absolute;display:block;width:15.38em;height:1.54em;top:3.23em;right:-3.23em;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.github-fork-ribbon:before{content:"";padding:.38em 0;background-color:#a00;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0.15)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,0.15));-webkit-box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);-moz-box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);pointer-events:auto}.github-fork-ribbon:after{content:attr(data-ribbon);color:#fff;font:700 1em "Helvetica Neue",Helvetica,Arial,sans-serif;line-height:1.54em;text-decoration:none;text-shadow:0 -.08em rgba(0,0,0,0.5);text-align:center;text-indent:0;padding:.15em 0;margin:.15em 0;border-width:.08em 0;border-style:dotted;border-color:#fff;border-color:rgba(255,255,255,0.7)}.github-fork-ribbon.left-top,.github-fork-ribbon.left-bottom{right:auto;left:0}.github-fork-ribbon.left-bottom,.github-fork-ribbon.right-bottom{top:auto;bottom:0}.github-fork-ribbon.left-top:before,.github-fork-ribbon.left-top:after,.github-fork-ribbon.left-bottom:before,.github-fork-ribbon.left-bottom:after{right:auto;left:-3.23em}.github-fork-ribbon.left-bottom:before,.github-fork-ribbon.left-bottom:after,.github-fork-ribbon.right-bottom:before,.github-fork-ribbon.right-bottom:after{top:auto;bottom:3.23em}.github-fork-ribbon.left-top:before,.github-fork-ribbon.left-top:after,.github-fork-ribbon.right-bottom:before,.github-fork-ribbon.right-bottom:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)} \ No newline at end of file diff --git a/en/css/print.css b/en/css/print.css new file mode 100644 index 0000000..34af557 --- /dev/null +++ b/en/css/print.css @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +#banner, +#footer, +#leftcol, +#breadcrumbs, +.docs #toc, +.docs .courtesylinks, +#leftColumn, +#navColumn { + display: none !important; +} + +#bodyColumn, +body.docs div.docs { + margin: 0 !important; + border: none !important; +} diff --git a/en/css/site.css b/en/css/site.css new file mode 100644 index 0000000..055e7e2 --- /dev/null +++ b/en/css/site.css @@ -0,0 +1 @@ +/* You can override this file with your own styles */ \ No newline at end of file diff --git a/en/dependencies.html b/en/dependencies.html new file mode 100644 index 0000000..7419471 --- /dev/null +++ b/en/dependencies.html @@ -0,0 +1,945 @@ + + + + + + + + + + mybatis-spring-native-extensions – Project Dependencies + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Dependencies

    +

    compile

    +

    The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:

    + + + + + + + + + + + + +
    GroupIdArtifactIdVersionTypeLicenses
    org.mybatis.spring.nativemybatis-spring-native-core0.1.0-SNAPSHOTjarThe Apache Software License, Version 2.0
    +

    provided

    +

    The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersionTypeLicensesOptional
    org.springframework.experimentalspring-aot0.12.2jarApache License, Version 2.0No
    org.springframework.experimentalspring-native0.12.2jarApache License, Version 2.0No
    org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jarThe Apache Software License, Version 2.0Yes
    org.mybatis.scriptingmybatis-freemarker1.2.4jarThe Apache Software License, Version 2.0Yes
    org.mybatis.scriptingmybatis-thymeleaf1.0.4jarThe Apache Software License, Version 2.0Yes
    org.mybatis.scriptingmybatis-velocity2.1.2jarThe Apache Software License, Version 2.0Yes
    +

    Project Transitive Dependencies

    +

    The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.

    +

    provided

    +

    The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersionTypeLicensesOptional
    com.squareupjavapoet1.13.0jarApache 2.0No
    info.picoclipicocli4.6.1jarThe Apache Software License, version 2.0No
    jakarta.annotationjakarta.annotation-api1.3.5jarEPL 2.0GPL2 w/ CPENo
    net.bytebuddybyte-buddy1.12.23jarApache License, Version 2.0No
    org.apache.commonscommons-compress1.21jarApache License, Version 2.0No
    org.springframeworkspring-aop5.3.31jarApache License, Version 2.0No
    org.springframeworkspring-beans5.3.31jarApache License, Version 2.0No
    org.springframeworkspring-context5.3.31jarApache License, Version 2.0No
    org.springframeworkspring-core5.3.31jarApache License, Version 2.0No
    org.springframeworkspring-expression5.3.31jarApache License, Version 2.0No
    org.springframeworkspring-jcl5.3.31jarApache License, Version 2.0No
    org.springframework.bootspring-boot-loader-tools2.7.18jarApache License, Version 2.0No
    ognlognl3.1.26jarThe Apache Software License, Version 2.0Yes
    org.apache.commonscommons-lang33.12.0jarApache License, Version 2.0Yes
    org.apache.commonscommons-text1.10.0jarApache License, Version 2.0Yes
    org.apache.velocityvelocity-engine-core2.3jarApache License, Version 2.0Yes
    org.attoparserattoparser2.0.5.RELEASEjarThe Apache Software License, Version 2.0Yes
    org.freemarkerfreemarker2.3.32jarApache License, Version 2.0Yes
    org.javassistjavassist3.20.0-GAjarMPL 1.1LGPL 2.1Apache License 2.0Yes
    org.mybatismybatis3.5.15jarThe Apache Software License, Version 2.0Yes
    org.slf4jslf4j-api1.7.36jarMIT LicenseYes
    org.thymeleafthymeleaf3.0.15.RELEASEjarThe Apache Software License, Version 2.0Yes
    org.unbescapeunbescape1.1.6.RELEASEjarThe Apache Software License, Version 2.0Yes
    +

    Project Dependency Graph

    +

    Dependency Tree

    +
    +

    Licenses

    +

    The Apache Software License, version 2.0: picocli - a mighty tiny Command Line Interface

    +

    Apache License 2.0: Javassist

    +

    Apache 2.0: JavaPoet

    +

    MIT License: SLF4J API Module

    +

    Apache License, Version 2.0: Apache Commons Compress, Apache Commons Lang, Apache Commons Text, Apache FreeMarker, Apache Velocity - Engine, Byte Buddy (without dependencies), Spring AOP, Spring AOT, Spring Beans, Spring Commons Logging Bridge, Spring Context, Spring Core, Spring Expression Language (SpEL), Spring Native, spring-boot-loader-tools

    +

    LGPL 2.1: Javassist

    +

    EPL 2.0: Jakarta Annotations API

    +

    GPL2 w/ CPE: Jakarta Annotations API

    +

    MPL 1.1: Javassist

    +

    The Apache Software License, Version 2.0: MyBatis Dynamic SQL, MyBatis FreeMarker, MyBatis Thymeleaf, MyBatis Velocity, OGNL - Object Graph Navigation Library, attoparser, mybatis, mybatis-spring-native-core, mybatis-spring-native-extensions, thymeleaf, unbescape

    +

    Dependency File Details

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    FilenameSizeEntriesClassesPackagesJava VersionDebug Information
    javapoet-1.13.0.jar106.1 kB534311.8Yes
    picocli-4.6.1.jar402.1 kB22922429Yes
    jakarta.annotation-api-1.3.5.jar25.1 kB281531.8Yes
    byte-buddy-1.12.23.jar3.9 MB27632709399Yes
    commons-compress-1.21.jar1 MB576524351.8Yes
    core/target/classes-000--
    spring-aop-5.3.31.jar384.5 kB308279171.8Yes
    spring-beans-5.3.31.jar706.4 kB422392131.8Yes
    spring-context-5.3.31.jar1.3 MB979892641.8Yes
    spring-core-5.3.31.jar1.5 MB1037978491.8Yes
    spring-expression-5.3.31.jar293.2 kB16415061.8Yes
    spring-jcl-5.3.31.jar25.2 kB281721.8Yes
    spring-boot-loader-tools-2.7.18.jar250.3 kB937821.8Yes
    spring-aot-0.12.2.jar870.1 kB4613815111Yes
    spring-native-0.12.2.jar169.6 kB1761282711Yes
    ognl-3.1.26.jar262.2 kB15113941.6Yes
    commons-lang3-3.12.0.jar587.4 kB374345171.8Yes
    commons-text-1.10.0.jar238.4 kB17415481.8Yes
    velocity-engine-core-2.3.jar531.3 kB299256191.8Yes
    attoparser-2.0.5.RELEASE.jar245 kB165147121.6Yes
    freemarker-2.3.32.jar1.7 MB12501225171.8Yes
    javassist-3.20.0-GA.jar750.6 kB423399171.6Yes
    mybatis-3.5.15.jar1.8 MB11831083771.8Yes
    mybatis-dynamic-sql-1.5.0.jar632.4 kB562520281.8Yes
    mybatis-freemarker-1.2.4.jar26.2 kB241021.8Yes
    mybatis-thymeleaf-1.0.4.jar71.8 kB665051.8Yes
    mybatis-velocity-2.1.2.jar43.5 kB321911.8Yes
    slf4j-api-1.7.36.jar41.1 kB463441.5Yes
    thymeleaf-3.0.15.RELEASE.jar870.9 kB606559381.6Yes
    unbescape-1.1.6.RELEASE.jar173.9 kB8569101.6Yes
    TotalSizeEntriesClassesPackagesJava VersionDebug Information
    3019 MB12757118195701129
    compile: 1compile: 4.1 kB---11-
    provided: 29provided: 19 MBprovided: 12757provided: 11819provided: 570provided: 29
    +
    +
    +
    +
    + + + + diff --git a/en/dependency-convergence.html b/en/dependency-convergence.html new file mode 100644 index 0000000..1f1f260 --- /dev/null +++ b/en/dependency-convergence.html @@ -0,0 +1,97 @@ + + + + + + + + + + mybatis-spring-native – Reactor Dependency Convergence + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Reactor Dependency Convergence

    + + + + + + + + + + + + + + + + + + + + + +
    + Statistics: +
    Number of modules:17
    Number of dependencies (NOD):76
    Number of unique artifacts (NOA):76
    Number of version-conflicting artifacts (NOC):0
    Number of SNAPSHOT artifacts (NOS):0
    Convergence (NOD/NOA):[Success] 100 %
    Ready for release (100% convergence and no SNAPSHOTS):[Success] Success
    +
    +
    +
    +
    + + + + diff --git a/en/dependency-info.html b/en/dependency-info.html new file mode 100644 index 0000000..b6192ed --- /dev/null +++ b/en/dependency-info.html @@ -0,0 +1,100 @@ + + + + + + + + + + mybatis-spring-native-docs – Dependency Information + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Dependency Information

    +

    Apache Maven

    +
    +
    <dependency>
    +  <groupId>org.mybatis.spring.native</groupId>
    +  <artifactId>mybatis-spring-native-docs</artifactId>
    +  <version>0.1.0-SNAPSHOT</version>
    +</dependency>
    +

    Apache Ivy

    +
    +
    <dependency org="org.mybatis.spring.native" name="mybatis-spring-native-docs" rev="0.1.0-SNAPSHOT">
    +  <artifact name="mybatis-spring-native-docs" type="jar" />
    +</dependency>
    +

    Groovy Grape

    +
    +
    @Grapes(
    +@Grab(group='org.mybatis.spring.native', module='mybatis-spring-native-docs', version='0.1.0-SNAPSHOT')
    +)
    +

    Gradle/Grails

    +
    +
    implementation 'org.mybatis.spring.native:mybatis-spring-native-docs:0.1.0-SNAPSHOT'
    +

    Scala SBT

    +
    +
    libraryDependencies += "org.mybatis.spring.native" % "mybatis-spring-native-docs" % "0.1.0-SNAPSHOT"
    +

    Leiningen

    +
    +
    [org.mybatis.spring.native/mybatis-spring-native-docs "0.1.0-SNAPSHOT"]
    +
    +
    +
    +
    + + + + diff --git a/en/dependency-management.html b/en/dependency-management.html new file mode 100644 index 0000000..add6d78 --- /dev/null +++ b/en/dependency-management.html @@ -0,0 +1,8421 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Dependency Management + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Dependency Management

    +

    compile

    +

    The following is a list of compile dependencies in the DependencyManagement of this project. These dependencies can be included in the submodules to compile and run the submodule:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersionClassifierTypeLicense
    antlrantlr2.7.7-jarBSD License
    ch.qos.logbacklogback-access1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
    ch.qos.logbacklogback-classic1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
    ch.qos.logbacklogback-core1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
    com.atomikostransactions-jdbc4.0.6-jarAtomikos Multiple Licensing Scheme
    com.atomikostransactions-jms4.0.6-jarAtomikos Multiple Licensing Scheme
    com.atomikostransactions-jta4.0.6-jarAtomikos Multiple Licensing Scheme
    com.couchbase.clientjava-client3.3.4-jarThe Apache Software License, Version 2.0
    com.datastax.ossjava-driver-core4.14.1-jarApache 2
    com.datastax.ossjava-driver-core-shaded4.14.1-jarApache 2
    com.datastax.ossjava-driver-mapper-processor4.14.1-jarApache 2
    com.datastax.ossjava-driver-mapper-runtime4.14.1-jarApache 2
    com.datastax.ossjava-driver-metrics-micrometer4.14.1-jarApache 2
    com.datastax.ossjava-driver-metrics-microprofile4.14.1-jarApache 2
    com.datastax.ossjava-driver-query-builder4.14.1-jarApache 2
    com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1-jarApache 2
    com.datastax.ossjava-driver-test-infra4.14.1-jarApache 2
    com.datastax.ossnative-protocol1.5.1-jarApache 2
    com.fasterxmlclassmate1.5.1-jarApache License, Version 2.0
    com.fasterxml.jackson.corejackson-annotations2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.corejackson-core2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.corejackson-databind2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jrjackson-jr-all2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jrjackson-jr-objects2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.jrjackson-jr-stree2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-afterburner2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-blackbird2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-guice2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-kotlin2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-mrbean2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-osgi2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-paranamer2.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5-jarThe Apache Software License, Version 2.0
    com.fasterxml.jackson.modulejackson-module-scala_32.13.5-jarThe Apache Software License, Version 2.0
    com.github.ben-manes.caffeinecaffeine2.9.3-jarApache License, Version 2.0
    com.github.ben-manes.caffeineguava2.9.3-jarApache License, Version 2.0
    com.github.ben-manes.caffeinejcache2.9.3-jarApache License, Version 2.0
    com.github.ben-manes.caffeinesimulator2.9.3-jarApache License, Version 2.0
    com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1-jarThe Apache Software License, Version 2.0
    com.google.appengineappengine-api-1.0-sdk1.9.98-jarApache License, Version 2.0, CDDL/GPLv2+CE, JSR-000107 JCACHE 2.9 Public Review - Updated Specification License
    com.google.code.gsongson2.9.1-jarApache-2.0
    com.graphql-javagraphql-java18.5-jarMIT
    com.h2databaseh22.1.214-jarMPL 2.0, EPL 1.0
    com.hazelcasthazelcast5.1.7-jarThe Apache Software License, Version 2.0
    com.hazelcasthazelcast-hibernate522.2.1-jarThe Hazelcast Community License
    com.hazelcasthazelcast-hibernate532.2.1-jarThe Hazelcast Community License
    com.hazelcasthazelcast-spring5.1.7-jarThe Apache Software License, Version 2.0
    com.ibm.db2jcc11.5.9.0-jarInternational Program License Agreement (IPLA)
    com.jayway.jsonpathjson-path2.7.0-jarThe Apache Software License, Version 2.0
    com.jayway.jsonpathjson-path-assert2.7.0-jarThe Apache Software License, Version 2.0
    com.microsoft.sqlservermssql-jdbc10.2.3.jre8-jarMIT License
    com.mysqlmysql-connector-j8.0.33-jarThe GNU General Public License, v2 with Universal FOSS Exception, v1.0
    com.oracle.database.haons21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.hasimplefan21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcojdbc1121.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcojdbc11-production21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcojdbc821.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcojdbc8-production21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcrsi21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcucp21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbcucp1121.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc11_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc8_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.nlsorai18n21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.observabilitydms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.observabilityojdbc11-observability21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.observabilityojdbc11dms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.observabilityojdbc8-observability21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.observabilityojdbc8dms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.r2dbcoracle-r2dbc0.4.0-jarUniversal Permissive License v1.0, Apache License, Version 2.0
    com.oracle.database.securityoraclepki21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.securityosdt_cert21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.securityosdt_core21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.xmlxdb21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.oracle.database.xmlxmlparserv221.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
    com.querydslquerydsl-apt5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-codegen5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-codegen-utils5.0.0-jar-
    com.querydslquerydsl-collections5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-core5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-guava5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-hibernate-search5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-jdo5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-jpa5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-jpa-codegen5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-kotlin5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-kotlin-codegen5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-lucene35.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-lucene45.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-lucene55.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-mongodb5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-scala5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-spatial5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-sql5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-sql-codegen5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-sql-spatial5.0.0-jarApache License, Version 2.0
    com.querydslquerydsl-sql-spring5.0.0-jarApache License, Version 2.0
    com.rabbitmqamqp-client5.14.3-jarAL 2.0, GPL v2, MPL 2.0
    com.rabbitmqstream-client0.5.0-jarASL 2.0, MPL 2.0
    com.samskivertjmustache1.15-jarThe (New) BSD License
    com.sendgridsendgrid-java4.9.3-jarThe MIT License (MIT)
    com.squareup.okhttp3logging-interceptor4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3mockwebserver4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okcurl4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okhttp4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okhttp-brotli4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okhttp-dnsoverhttps4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okhttp-sse4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okhttp-tls4.9.3-jarThe Apache Software License, Version 2.0
    com.squareup.okhttp3okhttp-urlconnection4.9.3-jarThe Apache Software License, Version 2.0
    com.sun.activationjakarta.activation1.2.2-jarEDL 1.0
    com.sun.mailjakarta.mail1.6.7-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0
    com.sun.xml.messaging.saajsaaj-impl1.5.3-jarEclipse Distribution License - v 1.0
    com.unboundidunboundid-ldapsdk6.0.10-jarApache License, Version 2, GNU General Public License version 2 (GPLv2), GNU Lesser General Public License version 2.1 (LGPLv2.1), UnboundID LDAP SDK Free Use License
    com.zaxxerHikariCP4.0.3-jarThe Apache Software License, Version 2.0
    commons-codeccommons-codec1.15-jarApache License, Version 2.0
    commons-poolcommons-pool1.6-jarThe Apache Software License, Version 2.0
    de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11-jarThe Apache Software License, Version 2.0
    io.dropwizard.metricsmetrics-annotation4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-caffeine4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-caffeine34.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-collectd4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-core4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-ehcache4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-graphite4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-healthchecks4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-httpasyncclient4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-httpclient4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-httpclient54.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jakarta-servlet4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jakarta-servlet64.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jakarta-servlets4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jcache4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jdbi4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jdbi34.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jersey24.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jersey34.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jersey314.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jetty104.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jetty114.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jetty124.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jetty12-ee104.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jetty94.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jmx4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-json4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-jvm4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-log4j24.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-logback4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-logback134.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-logback144.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-servlet4.2.22-jarApache License 2.0
    io.dropwizard.metricsmetrics-servlets4.2.22-jarApache License 2.0
    io.lettucelettuce-core6.1.10.RELEASE-jarApache License, Version 2.0
    io.micrometermicrometer-core1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-appoptics1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-atlas1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-azure-monitor1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-cloudwatch1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-cloudwatch21.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-datadog1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-dynatrace1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-elastic1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-ganglia1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-graphite1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-health1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-humio1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-influx1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-jmx1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-kairos1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-new-relic1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-opentsdb1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-otlp1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-prometheus1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-signalfx1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-stackdriver1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-statsd1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-registry-wavefront1.9.17-jarThe Apache Software License, Version 2.0
    io.micrometermicrometer-test1.9.17-jarThe Apache Software License, Version 2.0
    io.nettynetty-all4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-buffer4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-dns4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-haproxy4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-http4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-http24.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-memcache4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-mqtt4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-redis4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-smtp4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-socks4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-stomp4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-codec-xml4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-common4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-dev-tools4.1.101.Final-jar-
    io.nettynetty-example4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-handler4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-handler-proxy4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-handler-ssl-ocsp4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-resolver4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-resolver-dns4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-resolver-dns-classes-macos4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-resolver-dns-native-macos4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
    io.nettynetty-resolver-dns-native-macos4.1.101.Finalosx-x86_64jarApache License, Version 2.0
    io.nettynetty-resolver-dns-native-macos4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-tcnative2.0.61.Finallinux-aarch_64-fedorajarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative2.0.61.Finallinux-x86_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative2.0.61.Finallinux-x86_64-fedorajarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative2.0.61.Finalosx-x86_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-boringssl-static2.0.61.Finallinux-aarch_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-boringssl-static2.0.61.Finallinux-x86_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-boringssl-static2.0.61.Finalosx-aarch_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-boringssl-static2.0.61.Finalosx-x86_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-boringssl-static2.0.61.Finalwindows-x86_64jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-boringssl-static2.0.61.Final-jarThe Apache Software License, Version 2.0
    io.nettynetty-tcnative-classes2.0.61.Final-jarThe Apache Software License, Version 2.0
    io.nettynetty-transport4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-classes-epoll4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-classes-kqueue4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-native-epoll4.1.101.Finallinux-aarch_64jarApache License, Version 2.0
    io.nettynetty-transport-native-epoll4.1.101.Finallinux-x86_64jarApache License, Version 2.0
    io.nettynetty-transport-native-epoll4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-native-kqueue4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
    io.nettynetty-transport-native-kqueue4.1.101.Finalosx-x86_64jarApache License, Version 2.0
    io.nettynetty-transport-native-kqueue4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-native-unix-common4.1.101.Finallinux-aarch_64jarApache License, Version 2.0
    io.nettynetty-transport-native-unix-common4.1.101.Finallinux-x86_64jarApache License, Version 2.0
    io.nettynetty-transport-native-unix-common4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
    io.nettynetty-transport-native-unix-common4.1.101.Finalosx-x86_64jarApache License, Version 2.0
    io.nettynetty-transport-native-unix-common4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-rxtx4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-sctp4.1.101.Final-jarApache License, Version 2.0
    io.nettynetty-transport-udt4.1.101.Final-jarApache License, Version 2.0
    io.projectreactorreactor-core3.4.34-jarApache License, Version 2.0
    io.projectreactorreactor-test3.4.34-jarApache License, Version 2.0
    io.projectreactorreactor-tools3.4.34-jarApache License, Version 2.0
    io.projectreactor.addonsreactor-adapter3.4.10-jarApache License, Version 2.0
    io.projectreactor.addonsreactor-extra3.4.10-jarApache License, Version 2.0
    io.projectreactor.addonsreactor-pool0.2.12-jarThe Apache Software License, Version 2.0
    io.projectreactor.kafkareactor-kafka1.3.22-jarThe Apache Software License, Version 2.0
    io.projectreactor.kotlinreactor-kotlin-extensions1.1.10-jarThe Apache Software License, Version 2.0
    io.projectreactor.nettyreactor-netty1.0.39-jarThe Apache Software License, Version 2.0
    io.projectreactor.nettyreactor-netty-core1.0.39-jarThe Apache Software License, Version 2.0
    io.projectreactor.nettyreactor-netty-http1.0.39-jarThe Apache Software License, Version 2.0
    io.projectreactor.nettyreactor-netty-http-brave1.0.39-jarThe Apache Software License, Version 2.0
    io.projectreactor.rabbitmqreactor-rabbitmq1.5.6-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_caffeine0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_common0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_dropwizard0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_graphite_bridge0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_guava0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_hibernate0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_hotspot0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_httpserver0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_jetty0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_jetty_jdk80.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_log4j0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_log4j20.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_logback0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_pushgateway0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_servlet0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_servlet_jakarta0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_spring_boot0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_spring_web0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_tracer_otel0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_tracer_otel_agent0.15.0-jarThe Apache Software License, Version 2.0
    io.prometheussimpleclient_vertx0.15.0-jarThe Apache Software License, Version 2.0
    io.r2dbcr2dbc-h20.9.1.RELEASE-jarApache License 2.0
    io.r2dbcr2dbc-mssql0.9.0.RELEASE-jarApache License 2.0
    io.r2dbcr2dbc-pool0.9.2.RELEASE-jarApache License 2.0
    io.r2dbcr2dbc-proxy0.9.1.RELEASE-jarApache License 2.0
    io.r2dbcr2dbc-spi0.9.1.RELEASE-jarApache License 2.0
    io.reactivexrxjava1.3.8-jarThe Apache Software License, Version 2.0
    io.reactivexrxjava-reactive-streams1.2.1-jarThe Apache Software License, Version 2.0
    io.reactivex.rxjava2rxjava2.2.21-jarThe Apache Software License, Version 2.0
    io.rest-assuredjson-path4.5.1-jarApache 2.0
    io.rest-assuredjson-schema-validator4.5.1-jarApache 2.0
    io.rest-assuredkotlin-extensions4.5.1-jarApache 2.0
    io.rest-assuredrest-assured4.5.1-jarApache 2.0
    io.rest-assuredrest-assured-all4.5.1-jarApache 2.0
    io.rest-assuredrest-assured-common4.5.1-jarApache 2.0
    io.rest-assuredscala-support4.5.1-jarApache 2.0
    io.rest-assuredspring-commons4.5.1-jarApache 2.0
    io.rest-assuredspring-mock-mvc4.5.1-jarApache 2.0
    io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1-jarApache 2.0
    io.rest-assuredspring-web-test-client4.5.1-jarApache 2.0
    io.rest-assuredxml-path4.5.1-jarApache 2.0
    io.rest-assured.exampleskotlin-example4.5.1-jar-
    io.rest-assured.examplesrest-assured-itest-java4.5.1-jar-
    io.rest-assured.examplesscala-example4.5.1-jar-
    io.rest-assured.examplesscala-mock-mvc-example4.5.1-jar-
    io.rest-assured.examplesscalatra-example4.5.1-jar-
    io.rest-assured.examplesscalatra-webapp4.5.1-war-
    io.rest-assured.examplesspring-mvc-webapp4.5.1-war-
    io.rsocketrsocket-core1.1.3-jarThe Apache Software License, Version 2.0
    io.rsocketrsocket-load-balancer1.1.3-jarThe Apache Software License, Version 2.0
    io.rsocketrsocket-micrometer1.1.3-jarThe Apache Software License, Version 2.0
    io.rsocketrsocket-test1.1.3-jarThe Apache Software License, Version 2.0
    io.rsocketrsocket-transport-local1.1.3-jarThe Apache Software License, Version 2.0
    io.rsocketrsocket-transport-netty1.1.3-jarThe Apache Software License, Version 2.0
    io.spring.gradledependency-management-plugin1.0.15.RELEASE-jarThe Apache Software License, Version 2.0
    io.undertowundertow-core2.2.28.Final-jarApache License Version 2.0
    io.undertowundertow-servlet2.2.28.Final-jarApache License Version 2.0
    io.undertowundertow-websockets-jsr2.2.28.Final-jarApache License Version 2.0
    jakarta.activationjakarta.activation-api1.2.2-jarEDL 1.0
    jakarta.annotationjakarta.annotation-api1.3.5-jarEPL 2.0, GPL2 w/ CPE
    jakarta.jmsjakarta.jms-api2.0.3-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
    jakarta.jsonjakarta.json-api1.1.6-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
    jakarta.json.bindjakarta.json.bind-api1.0.2-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
    jakarta.mailjakarta.mail-api1.6.7-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0
    jakarta.management.j2eejakarta.management.j2ee-api1.1.4-jarEPL 2.0, GPL2 w/ CPE
    jakarta.persistencejakarta.persistence-api2.2.3-jarEclipse Public License v. 2.0, Eclipse Distribution License v. 1.0
    jakarta.servletjakarta.servlet-api4.0.4-jarEPL 2.0, GPL2 w/ CPE
    jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7-jarEPL 2.0, GPL2 w/ CPE
    jakarta.transactionjakarta.transaction-api1.3.3-jarEPL 2.0, GPL2 w/ CPE
    jakarta.validationjakarta.validation-api2.0.2-jarApache License 2.0
    jakarta.websocketjakarta.websocket-api1.1.2-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
    jakarta.ws.rsjakarta.ws.rs-api2.1.6-jarEPL 2.0, GPL2 w/ CPE
    jakarta.xml.bindjakarta.xml.bind-api2.3.3-jarEclipse Distribution License - v 1.0
    jakarta.xml.soapjakarta.xml.soap-api1.4.2-jarEclipse Distribution License - v 1.0
    jakarta.xml.wsjakarta.xml.ws-api2.3.3-jarEclipse Distribution License - v 1.0
    javax.activationjavax.activation-api1.2.0-jarCDDL/GPLv2+CE
    javax.annotationjavax.annotation-api1.3.2-jarCDDL + GPLv2 with classpath exception
    javax.cachecache-api1.1.1-jarApache License, Version 2.0
    javax.jmsjavax.jms-api2.0.1-jarCDDL + GPLv2 with classpath exception
    javax.jsonjavax.json-api1.1.4-jarDual license consisting of the CDDL v1.1 and GPL v2
    javax.json.bindjavax.json.bind-api1.0-jarDual license consisting of the CDDL v1.1 and GPL v2
    javax.mailjavax.mail-api1.6.2-jarCDDL/GPLv2+CE
    javax.moneymoney-api1.1-jarApache License, Version 2.0
    javax.persistencejavax.persistence-api2.2-jarEclipse Public License v1.0, Eclipse Distribution License v. 1.0
    javax.servletjavax.servlet-api4.0.1-jarCDDL + GPLv2 with classpath exception
    javax.servletjstl1.2-jar-
    javax.transactionjavax.transaction-api1.3-jarCDDL + GPLv2 with classpath exception
    javax.validationvalidation-api2.0.1.Final-jarApache License 2.0
    javax.websocketjavax.websocket-api1.1-jarDual license consisting of the CDDL v1.1 and GPL v2
    javax.xml.bindjaxb-api2.3.1-jarCDDL 1.1, GPL2 w/ CPE
    javax.xml.wsjaxws-api2.3.1-jarCDDL + GPLv2 with classpath exception
    jaxenjaxen1.2.0-jarBSD License 2.0
    junitjunit4.13.2-jarEclipse Public License 1.0
    net.bytebuddybyte-buddy1.12.23-jarApache License, Version 2.0
    net.bytebuddybyte-buddy-agent1.12.23-jarApache License, Version 2.0
    net.minidevjson-smart2.4.11-jarThe Apache Software License, Version 2.0
    net.sf.ehcacheehcache2.10.9.2-jarThe Apache Software License, Version 2.0
    net.sourceforge.htmlunithtmlunit2.60.0-jarApache License, Version 2.0
    net.sourceforge.jtdsjtds1.3.1-jarLGPL
    net.sourceforge.nekohtmlnekohtml1.9.22-jarThe Apache Software License, Version 2.0
    nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0-jarThe Apache Software License, Version 2.0
    org.apache.activemqactivemq-amqp5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-blueprint5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-broker5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-camel5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-client5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-console5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-http5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-jaas5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-jdbc-store5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-jms-pool5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-kahadb-store5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-karaf5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-leveldb-store5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-log4j-appender5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-mqtt5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-openwire-generator5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-openwire-legacy5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-osgi5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-partition5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-pool5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-ra5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-run5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-runtime-config5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-shiro5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-spring5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-stomp5.16.7-jarApache License, Version 2.0
    org.apache.activemqactivemq-web5.16.7-jarApache License, Version 2.0
    org.apache.activemqartemis-amqp-protocol2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-commons2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-core-client2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-jdbc-store2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-jms-client2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-jms-server2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-journal2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-quorum-api2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-selector2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-server2.19.1-jarApache License, Version 2.0
    org.apache.activemqartemis-service-extensions2.19.1-jarApache License, Version 2.0
    org.apache.commonscommons-dbcp22.9.0-jarApache License, Version 2.0
    org.apache.commonscommons-lang33.12.0-jarApache License, Version 2.0
    org.apache.commonscommons-pool22.11.1-jarApache License, Version 2.0
    org.apache.derbyderby10.14.2.0-jarApache 2
    org.apache.derbyderbyclient10.14.2.0-jarApache 2
    org.apache.derbyderbynet10.14.2.0-jarApache 2
    org.apache.derbyderbyoptionaltools10.14.2.0-jarApache 2
    org.apache.derbyderbytools10.14.2.0-jarApache 2
    org.apache.httpcomponentsfluent-hc4.5.14-jarApache License, Version 2.0
    org.apache.httpcomponentshttpasyncclient4.1.5-jarApache License, Version 2.0
    org.apache.httpcomponentshttpclient4.5.14-jarApache License, Version 2.0
    org.apache.httpcomponentshttpclient-cache4.5.14-jarApache License, Version 2.0
    org.apache.httpcomponentshttpclient-osgi4.5.14-jarApache License, Version 2.0
    org.apache.httpcomponentshttpclient-win4.5.14-jarApache License, Version 2.0
    org.apache.httpcomponentshttpcore4.4.16-jarApache License, Version 2.0
    org.apache.httpcomponentshttpcore-nio4.4.16-jarApache License, Version 2.0
    org.apache.httpcomponentshttpmime4.5.14-jarApache License, Version 2.0
    org.apache.httpcomponents.client5httpclient55.1.4-jarApache License, Version 2.0
    org.apache.httpcomponents.client5httpclient5-cache5.1.4-jarApache License, Version 2.0
    org.apache.httpcomponents.client5httpclient5-fluent5.1.4-jarApache License, Version 2.0
    org.apache.httpcomponents.client5httpclient5-win5.1.4-jarApache License, Version 2.0
    org.apache.httpcomponents.core5httpcore55.1.5-jarApache License, Version 2.0
    org.apache.httpcomponents.core5httpcore5-h25.1.5-jarApache License, Version 2.0
    org.apache.httpcomponents.core5httpcore5-reactive5.1.5-jarApache License, Version 2.0
    org.apache.johnzonjohnzon-core1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.johnzonjohnzon-jaxrs1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.johnzonjohnzon-jsonb1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.johnzonjohnzon-jsonb-extras1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.johnzonjohnzon-jsonschema1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.johnzonjohnzon-mapper1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.johnzonjohnzon-websocket1.2.21-jarThe Apache Software License, Version 2.0
    org.apache.kafkaconnect3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-api3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-basic-auth-extension3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-file3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-json3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-mirror3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-mirror-client3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-runtime3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkaconnect-transforms3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkagenerator3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-clients3.1.2testjarThe Apache License, Version 2.0
    org.apache.kafkakafka-clients3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-log4j-appender3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-metadata3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-raft3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-server-common3.1.2testjarThe Apache License, Version 2.0
    org.apache.kafkakafka-server-common3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-shell3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-storage3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-storage-api3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-streams3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-streams-scala_2.123.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-streams-scala_2.133.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-streams-test-utils3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka-tools3.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka_2.123.1.2testjarThe Apache License, Version 2.0
    org.apache.kafkakafka_2.123.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkakafka_2.133.1.2testjarThe Apache License, Version 2.0
    org.apache.kafkakafka_2.133.1.2-jarThe Apache License, Version 2.0
    org.apache.kafkatrogdor3.1.2-jarThe Apache License, Version 2.0
    org.apache.logging.log4jlog4j-1.2-api2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-api2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-appserver2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-cassandra2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-core2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-couchdb2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-docker2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-flume-ng2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-iostreams2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-jcl2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-jmx-gui2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-jpa2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-jpl2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-jul2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-kubernetes2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-layout-template-json2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-liquibase2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-mongodb32.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-mongodb42.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-slf4j-impl2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-slf4j18-impl2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-spring-boot2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-taglib2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-to-slf4j2.17.2-jarApache License, Version 2.0
    org.apache.logging.log4jlog4j-web2.17.2-jarApache License, Version 2.0
    org.apache.solrsolr-analysis-extras8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-analytics8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-cell8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-core8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-dataimporthandler8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-dataimporthandler-extras8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-gcs-repository8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-jaegertracer-configurator8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-langid8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-ltr8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-prometheus-exporter8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-s3-repository8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-solrj8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-test-framework8.11.2-jarApache License, Version 2.0
    org.apache.solrsolr-velocity8.11.2-jarApache License, Version 2.0
    org.apache.tomcattomcat-annotations-api9.0.83-jarApache License, Version 2.0
    org.apache.tomcattomcat-jdbc9.0.83-jarApache License, Version 2.0
    org.apache.tomcattomcat-jsp-api9.0.83-jarApache License, Version 2.0
    org.apache.tomcat.embedtomcat-embed-core9.0.83-jarApache License, Version 2.0
    org.apache.tomcat.embedtomcat-embed-el9.0.83-jarApache License, Version 2.0
    org.apache.tomcat.embedtomcat-embed-jasper9.0.83-jarApache License, Version 2.0
    org.apache.tomcat.embedtomcat-embed-websocket9.0.83-jarApache License, Version 2.0
    org.aspectjaspectjrt1.9.7-jarEclipse Public License - v 2.0
    org.aspectjaspectjtools1.9.7-jarEclipse Public License - v 2.0
    org.aspectjaspectjweaver1.9.7-jarEclipse Public License - v 2.0
    org.assertjassertj-core3.22.0-jarApache License, Version 2.0
    org.awaitilityawaitility4.2.0-jarApache 2.0
    org.awaitilityawaitility-groovy4.2.0-jarApache 2.0
    org.awaitilityawaitility-kotlin4.2.0-jarApache 2.0
    org.awaitilityawaitility-scala4.2.0-jarApache 2.0
    org.cache2kcache2k-api2.6.1.Final-jarApache 2
    org.cache2kcache2k-config2.6.1.Final-jarApache 2
    org.cache2kcache2k-core2.6.1.Final-jarApache 2
    org.cache2kcache2k-jcache2.6.1.Final-jarApache 2
    org.cache2kcache2k-micrometer2.6.1.Final-jarApache 2
    org.cache2kcache2k-spring2.6.1.Final-jarApache 2
    org.codehaus.groovygroovy3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-ant3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-astbuilder3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-bsf3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-cli-commons3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-cli-picocli3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-console3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-datetime3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-dateutil3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-docgenerator3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-groovydoc3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-groovysh3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-jaxb3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-jmx3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-json3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-jsr2233.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-macro3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-nio3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-servlet3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-sql3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-swing3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-templates3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-test3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-test-junit53.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-testng3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-xml3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.groovygroovy-yaml3.0.19-jarThe Apache Software License, Version 2.0
    org.codehaus.janinocommons-compiler3.1.10-jarBSD-3-Clause
    org.codehaus.janinocommons-compiler-jdk3.1.10-jarBSD-3-Clause
    org.codehaus.janinojanino3.1.10-jarBSD-3-Clause
    org.eclipse.jettyapache-jsp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyapache-jstl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyinfinispan-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-alpn-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-annotations9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-ant9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-continuation9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-deploy9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-distribution9.4.53.v20231009-tar.gzApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-distribution9.4.53.v20231009-zipApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-hazelcast9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-home9.4.53.v20231009-tar.gzApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-home9.4.53.v20231009-zipApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-http9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-http-spi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-io9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-jaas9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-jaspi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-jmx9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-jndi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-nosql9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-openid9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-plus9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-proxy9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-quickstart9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-reactive-httpclient1.1.15-jarApache License Version 2.0
    org.eclipse.jettyjetty-rewrite9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-security9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-servlet9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-servlets9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-spring9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-unixsocket9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-util9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-util-ajax9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-webapp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jettyjetty-xml9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.http2http2-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.http2http2-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.http2http2-hpack9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.http2http2-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
    org.ehcacheehcache3.10.8-jarThe Apache Software License, Version 2.0
    org.ehcacheehcache-clustered3.10.8-jarThe Apache Software License, Version 2.0
    org.ehcacheehcache-transactions3.10.8-jarThe Apache Software License, Version 2.0
    org.elasticsearchelasticsearch7.17.15-jarElastic License 2.0, Server Side Public License, v 1
    org.elasticsearch.clientelasticsearch-rest-client7.17.15-jarThe Apache Software License, Version 2.0
    org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15-jarThe Apache Software License, Version 2.0
    org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15-jarElastic License 2.0
    org.elasticsearch.clienttransport7.17.15-jarElastic License 2.0, Server Side Public License, v 1
    org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15-zipElastic License 2.0, Server Side Public License, v 1
    org.elasticsearch.plugintransport-netty4-client7.17.15-jarElastic License 2.0, Server Side Public License, v 1
    org.firebirdsql.jdbcjaybird4.0.9.java8-jarGNU Lesser General Public License, Modified BSD (3-clause) License
    org.firebirdsql.jdbcjaybird-jdk184.0.9.java8-jarGNU Lesser General Public License, Modified BSD (3-clause) License
    org.flywaydbflyway-core8.5.13-jarApache License, Version 2.0
    org.flywaydbflyway-firebird8.5.13-jarApache License, Version 2.0
    org.flywaydbflyway-mysql8.5.13-jarApache License, Version 2.0
    org.flywaydbflyway-sqlserver8.5.13-jarApache License, Version 2.0
    org.freemarkerfreemarker2.3.32-jarApache License, Version 2.0
    org.glassfishjakarta.el3.0.4-jarEPL 2.0, GPL2 w/ CPE
    org.glassfish.jaxbcodemodel2.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbcodemodel-annotation-compiler2.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbjaxb-jxc2.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbjaxb-runtime2.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbjaxb-xjc2.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbtxw22.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbtxwc22.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jaxbxsom2.3.9-jarEclipse Distribution License - v 1.0
    org.glassfish.jersey.bundlesjaxrs-ri2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.connectorsjersey-apache-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.connectorsjersey-grizzly-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.connectorsjersey-helidon-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.connectorsjersey-jdk-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.connectorsjersey-jetty-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.connectorsjersey-netty-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-grizzly2-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-jdk-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-jetty-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-jetty-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-netty-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-servlet-core2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containersjersey-container-simple-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.corejersey-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.corejersey-common2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0, Public Domain
    org.glassfish.jersey.corejersey-server2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0, Modified BSD
    org.glassfish.jersey.extjersey-bean-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-declarative-linking2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-entity-filtering2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-metainf-services2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-mvc2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-mvc-bean-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-mvc-freemarker2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-mvc-jsp2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-mvc-mustache2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-proxy-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-servlet-portability2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-spring42.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-spring52.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.extjersey-wadl-doclet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-cdi1x2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.cdijersey-weld2-se2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.microprofilejersey-mp-config2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.injectjersey-cdi2-se2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.injectjersey-hk22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-jaxb2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-json-binding2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-json-jackson2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0
    org.glassfish.jersey.mediajersey-media-json-jettison2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-json-processing2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-kryo2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-moxy2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-multipart2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.mediajersey-media-sse2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.securityoauth1-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.securityoauth1-server2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.securityoauth1-signature2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.securityoauth2-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35-pomEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
    org.glassfish.webjakarta.servlet.jsp.jstl1.2.6-jarEPL 2.0, GPL2 w/ CPE
    org.hamcresthamcrest2.2-jarBSD License 3
    org.hamcresthamcrest-core2.2-jarBSD License 3
    org.hamcresthamcrest-library2.2-jarBSD License 3
    org.hibernatehibernate-c3p05.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-core5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-ehcache5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-entitymanager5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-envers5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-hikaricp5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-java85.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-jcache5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-jpamodelgen5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-micrometer5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-proxool5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-spatial5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-testing5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernatehibernate-vibur5.6.15.Final-jarGNU Library General Public License v2.1 or later
    org.hibernate.validatorhibernate-validator6.2.5.Final-jarApache License 2.0
    org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Final-jarApache License 2.0
    org.hsqldbhsqldb2.5.2-jarHSQLDB License, a BSD open source license
    org.infinispaninfinispan-anchored-keys13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-api13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cachestore-jdbc13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cachestore-jpa13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cachestore-remote13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cachestore-rocksdb13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cachestore-sql13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cdi-common13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cdi-embedded13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cdi-remote13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-checkstyle13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cli-client13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-client-hotrod13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-client-rest13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-cloudevents-integration13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-clustered-counter13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-clustered-lock13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-commons13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-commons-test13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-component-processor13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-console0.15.5.Final-jarApache License 2.0
    org.infinispaninfinispan-core13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-extended-statistics13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-hibernate-cache-commons13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-hibernate-cache-spi13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-hibernate-cache-v5313.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-jboss-marshalling13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-jcache13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-jcache-commons13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-jcache-remote13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-key-value-store-client13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-marshaller-kryo13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-marshaller-protostuff13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-multimap13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-objectfilter13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-query13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-query-core13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-query-dsl13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-remote-query-client13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-remote-query-server13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-scripting13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-core13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-hotrod13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-memcached13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-rest13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-router13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-runtime13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-testdriver-core13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-testdriver-junit413.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-server-testdriver-junit513.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-spring5-common13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-spring5-embedded13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-spring5-remote13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-tasks13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-tasks-api13.0.20.Final-jarApache License 2.0
    org.infinispaninfinispan-tools13.0.20.Final-jar-
    org.infinispan.protostreamprotostream4.4.4.Final-jarApache License 2.0
    org.infinispan.protostreamprotostream-types4.4.4.Final-jarApache License 2.0
    org.influxdbinfluxdb-java2.22-jarThe MIT License (MIT)
    org.jboss.loggingjboss-logging3.4.3.Final-jarApache License, version 2.0
    org.jdomjdom22.0.6.1-jarSimilar to Apache License but with the acknowledgment clause removed
    org.jetbrains.kotlinkotlin-compiler1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-daemon-client1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-main-kts1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-osgi-bundle1.6.21-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinkotlin-reflect1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-script-runtime1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-script-util1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-scripting-common1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-scripting-jvm1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-stdlib1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-stdlib-common1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-stdlib-js1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test-annotations-common1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test-common1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test-js1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test-junit1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test-junit51.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinkotlin-test-testng1.6.21-jarThe Apache License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4-jarThe Apache Software License, Version 2.0
    org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4-jarThe Apache Software License, Version 2.0
    org.jolokiajolokia-core1.7.2-jarApache 2
    org.jooqjooq3.14.16-jarApache License, Version 2.0
    org.jooqjooq-codegen3.14.16-jarApache License, Version 2.0
    org.jooqjooq-kotlin3.14.16-jarApache License, Version 2.0
    org.jooqjooq-meta3.14.16-jarApache License, Version 2.0
    org.junit.jupiterjunit-jupiter5.8.2-jarEclipse Public License v2.0
    org.junit.jupiterjunit-jupiter-api5.8.2-jarEclipse Public License v2.0
    org.junit.jupiterjunit-jupiter-engine5.8.2-jarEclipse Public License v2.0
    org.junit.jupiterjunit-jupiter-migrationsupport5.8.2-jarEclipse Public License v2.0
    org.junit.jupiterjunit-jupiter-params5.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-commons1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-console1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-engine1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-jfr1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-launcher1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-reporting1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-runner1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-suite1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-suite-api1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-suite-commons1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-suite-engine1.8.2-jarEclipse Public License v2.0
    org.junit.platformjunit-platform-testkit1.8.2-jarEclipse Public License v2.0
    org.junit.vintagejunit-vintage-engine5.8.2-jarEclipse Public License v2.0
    org.liquibaseliquibase-cdi4.9.1-jarApache License, Version 2.0
    org.liquibaseliquibase-core4.9.1-jarApache License, Version 2.0
    org.mariadbr2dbc-mariadb1.1.2-jarApache License 2.0
    org.mariadb.jdbcmariadb-java-client3.1.4-jarLGPL-2.1
    org.messaginghubpooled-jms1.2.6-jarThe Apache License, Version 2.0
    org.mockitomockito-android4.5.1-jarThe MIT License
    org.mockitomockito-core4.5.1-jarThe MIT License
    org.mockitomockito-errorprone4.5.1-jarThe MIT License
    org.mockitomockito-inline4.5.1-jarThe MIT License
    org.mockitomockito-junit-jupiter4.5.1-jarThe MIT License
    org.mockitomockito-proxy4.5.1-jarThe MIT License
    org.mongodbbson4.6.1-jarThe Apache License, Version 2.0
    org.mongodbbson-record-codec4.6.1-jarThe Apache License, Version 2.0
    org.mongodbmongodb-driver-core4.6.1-jarThe Apache License, Version 2.0
    org.mongodbmongodb-driver-legacy4.6.1-jarThe Apache License, Version 2.0
    org.mongodbmongodb-driver-reactivestreams4.6.1-jarThe Apache License, Version 2.0
    org.mongodbmongodb-driver-sync4.6.1-jarThe Apache License, Version 2.0
    org.mortbay.jasperapache-el9.0.52-jarApache License Version 2.0
    org.mybatismybatis3.5.15-jarThe Apache Software License, Version 2.0
    org.mybatismybatis-spring2.1.2-jarThe Apache Software License, Version 2.0
    org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0-jarThe Apache Software License, Version 2.0
    org.mybatis.scriptingmybatis-freemarker1.2.4-jarThe Apache Software License, Version 2.0
    org.mybatis.scriptingmybatis-thymeleaf1.0.4-jarThe Apache Software License, Version 2.0
    org.mybatis.scriptingmybatis-velocity2.1.2-jarThe Apache Software License, Version 2.0
    org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2-jarThe Apache Software License, Version 2.0
    org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2-jarThe Apache Software License, Version 2.0
    org.neo4j.driverneo4j-java-driver4.4.12-jarApache License, Version 2
    org.postgresqlpostgresql42.3.8-jarBSD-2-Clause
    org.postgresqlr2dbc-postgresql0.9.2.RELEASE-jarApache License 2.0
    org.projectlomboklombok1.18.30-jarThe MIT License
    org.quartz-schedulerquartz2.3.2-jarThe Apache Software License, Version 2.0
    org.quartz-schedulerquartz-jobs2.3.2-jarThe Apache Software License, Version 2.0
    org.reactivestreamsreactive-streams1.0.4-jarMIT-0
    org.seleniumhq.seleniumhtmlunit-driver3.61.0-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumlift4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-api4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-chrome-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-chromium-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-devtools-v1004.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-devtools-v1014.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-devtools-v854.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-devtools-v994.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-edge-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-firefox-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-grid4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-http4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-ie-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-java4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-json4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-opera-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-remote-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-safari-driver4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-session-map-redis4.1.4-jarThe Apache Software License, Version 2.0
    org.seleniumhq.seleniumselenium-support4.1.4-jarThe Apache Software License, Version 2.0
    org.skyscreamerjsonassert1.5.1-jarThe Apache Software License, Version 2.0
    org.slf4jjcl-over-slf4j1.7.36-jarApache License, Version 2.0
    org.slf4jjul-to-slf4j1.7.36-jarMIT License
    org.slf4jlog4j-over-slf4j1.7.36-jarApache Software Licenses
    org.slf4jslf4j-api1.7.36-jarMIT License
    org.slf4jslf4j-ext1.7.36-jarMIT License
    org.slf4jslf4j-jcl1.7.36-jarMIT License
    org.slf4jslf4j-jdk141.7.36-jarMIT License
    org.slf4jslf4j-log4j121.7.36-jarMIT License
    org.slf4jslf4j-nop1.7.36-jarMIT License
    org.slf4jslf4j-simple1.7.36-jarMIT License
    org.springframeworkspring-aop5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-aspects5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-beans5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-context5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-context-indexer5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-context-support5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-core5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-expression5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-instrument5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-jcl5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-jdbc5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-jms5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-messaging5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-orm5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-oxm5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-r2dbc5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-test5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-tx5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-web5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-webflux5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-webmvc5.3.31-jarApache License, Version 2.0
    org.springframeworkspring-websocket5.3.31-jarApache License, Version 2.0
    org.springframework.amqpspring-amqp2.4.17-jarApache License, Version 2.0
    org.springframework.amqpspring-rabbit2.4.17-jarApache License, Version 2.0
    org.springframework.amqpspring-rabbit-junit2.4.17-jarApache License, Version 2.0
    org.springframework.amqpspring-rabbit-stream2.4.17-jarApache License, Version 2.0
    org.springframework.amqpspring-rabbit-test2.4.17-jarApache License, Version 2.0
    org.springframework.batchspring-batch-core4.3.10-jarThe Apache Software License, Version 2.0
    org.springframework.batchspring-batch-infrastructure4.3.10-jarThe Apache Software License, Version 2.0
    org.springframework.batchspring-batch-integration4.3.10-jarThe Apache Software License, Version 2.0
    org.springframework.batchspring-batch-test4.3.10-jarThe Apache Software License, Version 2.0
    org.springframework.bootspring-boot2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-actuator2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-actuator-autoconfigure2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-autoconfigure2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-autoconfigure-processor2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-buildpack-platform2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-configuration-metadata2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-configuration-processor2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-devtools2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-jarmode-layertools2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-loader2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-loader-tools2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-properties-migrator2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-activemq2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-actuator2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-amqp2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-aop2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-artemis2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-batch2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-cache2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-cassandra2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-couchbase2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-jdbc2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-jpa2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-ldap2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-mongodb2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-neo4j2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-r2dbc2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-redis2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-data-rest2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-freemarker2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-graphql2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-groovy-templates2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-hateoas2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-integration2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-jdbc2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-jersey2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-jetty2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-jooq2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-json2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-jta-atomikos2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-log4j22.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-logging2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-mail2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-mustache2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-oauth2-client2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-quartz2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-reactor-netty2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-rsocket2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-security2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-test2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-thymeleaf2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-tomcat2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-undertow2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-validation2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-web2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-web-services2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-webflux2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-starter-websocket2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-test2.7.18-jarApache License, Version 2.0
    org.springframework.bootspring-boot-test-autoconfigure2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-cassandra3.4.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-commons2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-couchbase4.4.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-elasticsearch4.4.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-envers2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-geode2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-jdbc2.4.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-jpa2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-keyvalue2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-ldap2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-mongodb3.4.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-neo4j6.3.18-jarThe Apache Software License, Version 2.0
    org.springframework.dataspring-data-r2dbc1.5.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-redis2.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-relational2.4.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-rest-core3.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-rest-hal-explorer3.7.18-jarApache License, Version 2.0
    org.springframework.dataspring-data-rest-webmvc3.7.18-jarApache License, Version 2.0
    org.springframework.experimentalspring-aot0.12.2-jarApache License, Version 2.0
    org.springframework.experimentalspring-native0.12.2-jarApache License, Version 2.0
    org.springframework.graphqlspring-graphql1.0.6-jarApache License, Version 2.0
    org.springframework.graphqlspring-graphql-test1.0.6-jarApache License, Version 2.0
    org.springframework.hateoasspring-hateoas1.5.6-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-amqp5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-core5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-event5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-feed5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-file5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-ftp5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-gemfire5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-groovy5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-http5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-ip5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-jdbc5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-jms5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-jmx5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-jpa5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-kafka5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-mail5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-mongodb5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-mqtt5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-r2dbc5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-redis5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-rmi5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-rsocket5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-scripting5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-security5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-sftp5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-stomp5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-stream5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-syslog5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-test5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-test-support5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-webflux5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-websocket5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-ws5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-xml5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-xmpp5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-zeromq5.5.20-jarApache License, Version 2.0
    org.springframework.integrationspring-integration-zookeeper5.5.20-jarApache License, Version 2.0
    org.springframework.kafkaspring-kafka2.8.11-jarApache License, Version 2.0
    org.springframework.kafkaspring-kafka-test2.8.11-jarApache License, Version 2.0
    org.springframework.ldapspring-ldap-core2.4.1-jarApache License, Version 2.0
    org.springframework.ldapspring-ldap-core-tiger2.4.1-jarApache License, Version 2.0
    org.springframework.ldapspring-ldap-ldif-core2.4.1-jarApache License, Version 2.0
    org.springframework.ldapspring-ldap-odm2.4.1-jarApache License, Version 2.0
    org.springframework.ldapspring-ldap-test2.4.1-jarApache License, Version 2.0
    org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
    org.springframework.restdocsspring-restdocs-core2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
    org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
    org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
    org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
    org.springframework.retryspring-retry1.3.4-jarApache 2.0
    org.springframework.securityspring-security-acl5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-aspects5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-cas5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-config5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-core5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-crypto5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-data5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-ldap5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-messaging5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-oauth2-client5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-oauth2-core5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-oauth2-jose5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-oauth2-resource-server5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-openid5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-remoting5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-rsocket5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-saml2-service-provider5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-taglibs5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-test5.7.11-jarApache License, Version 2.0
    org.springframework.securityspring-security-web5.7.11-jarApache License, Version 2.0
    org.springframework.sessionspring-session-core2.7.4-jarApache License, Version 2.0
    org.springframework.sessionspring-session-data-geode2.7.1-jarThe Apache Software License, Version 2.0
    org.springframework.sessionspring-session-data-mongodb2.7.4-jarApache License, Version 2.0
    org.springframework.sessionspring-session-data-redis2.7.4-jarApache License, Version 2.0
    org.springframework.sessionspring-session-hazelcast2.7.4-jarApache License, Version 2.0
    org.springframework.sessionspring-session-jdbc2.7.4-jarApache License, Version 2.0
    org.springframework.wsspring-ws-core3.1.8-jarApache License, Version 2.0
    org.springframework.wsspring-ws-security3.1.8-jarApache License, Version 2.0
    org.springframework.wsspring-ws-support3.1.8-jarApache License, Version 2.0
    org.springframework.wsspring-ws-test3.1.8-jarApache License, Version 2.0
    org.springframework.wsspring-xml3.1.8-jarApache License, Version 2.0
    org.thymeleafthymeleaf3.0.15.RELEASE-jarThe Apache Software License, Version 2.0
    org.thymeleafthymeleaf-spring53.0.15.RELEASE-jarThe Apache Software License, Version 2.0
    org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASE-jarThe Apache Software License, Version 2.0
    org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASE-jarThe Apache Software License, Version 2.0
    org.webjarswebjars-locator-core0.50-jarMIT
    org.xerialsqlite-jdbc3.36.0.3-jarThe Apache Software License, Version 2.0
    org.xmlunitxmlunit-assertj2.9.1-jarThe Apache Software License, Version 2.0
    org.xmlunitxmlunit-assertj32.9.1-jarThe Apache Software License, Version 2.0
    org.xmlunitxmlunit-core2.9.1-jarThe Apache Software License, Version 2.0
    org.xmlunitxmlunit-legacy2.9.1-jarThe BSD 3-Clause License
    org.xmlunitxmlunit-matchers2.9.1-jarThe Apache Software License, Version 2.0
    org.xmlunitxmlunit-placeholders2.9.1-jarThe Apache Software License, Version 2.0
    org.yamlsnakeyaml1.30-jarApache License, Version 2.0
    redis.clientsjedis3.8.0-jarMIT
    wsdl4jwsdl4j1.6.3-jarCPL
    +

    provided

    +

    The following is a list of provided dependencies in the DependencyManagement of this project. These dependencies can be included in the submodules to compile the submodule, but should be provided by default when using the library:

    + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersionTypeLicense
    org.infinispaninfinispan-component-annotations13.0.20.FinaljarApache License 2.0
    org.infinispan.protostreamprotostream-processor4.4.4.FinaljarApache License 2.0
    +
    +
    +
    +
    + + + + diff --git a/en/dependency-updates-aggregate-report.html b/en/dependency-updates-aggregate-report.html new file mode 100644 index 0000000..8bf94d4 --- /dev/null +++ b/en/dependency-updates-aggregate-report.html @@ -0,0 +1,44201 @@ + + + + + + + + + + mybatis-spring-native – Dependency Updates Aggregate Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's various dependencies.

    + + + + + + + + + + + + + + + + + + + + + +
    # of dependencies using the latest version available103
    # of dependencies where the next version available is smaller than an incremental version update3
    # of dependencies where the next version available is an incremental version update214
    # of dependencies where the next version available is a minor version update535
    # of dependencies where the next version available is a major version update313
    +

    Dependency Management

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    antlrantlr2.7.7jar20030911
    ch.qos.logbacklogback-access1.2.12jar1.2.131.4.14
    ch.qos.logbacklogback-classic1.2.12jar1.2.131.4.14
    ch.qos.logbacklogback-core1.2.12jar1.2.131.4.14
    com.atomikostransactions-jdbc4.0.6jar6.0.0
    com.atomikostransactions-jms4.0.6jar6.0.0
    com.atomikostransactions-jta4.0.6jar6.0.0
    com.couchbase.clientjava-client3.3.4jar3.5.3
    com.datastax.ossjava-driver-core4.14.1jar4.17.0
    com.datastax.ossjava-driver-core-shaded4.14.1jar4.17.0
    com.datastax.ossjava-driver-mapper-processor4.14.1jar4.17.0
    com.datastax.ossjava-driver-mapper-runtime4.14.1jar4.17.0
    com.datastax.ossjava-driver-metrics-micrometer4.14.1jar4.17.0
    com.datastax.ossjava-driver-metrics-microprofile4.14.1jar4.17.0
    com.datastax.ossjava-driver-query-builder4.14.1jar4.17.0
    com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1jar
    com.datastax.ossjava-driver-test-infra4.14.1jar4.17.0
    com.datastax.ossnative-protocol1.5.1jar
    com.fasterxmlclassmate1.5.1jar1.7.0
    com.fasterxml.jackson.corejackson-annotations2.13.5jar2.16.1
    com.fasterxml.jackson.corejackson-core2.13.5jar2.16.1
    com.fasterxml.jackson.corejackson-databind2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-all2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-objects2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-stree2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-afterburner2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-blackbird2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-guice2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-kotlin2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-mrbean2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-osgi2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-paranamer2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_32.13.5jar2.16.1
    com.github.ben-manes.caffeinecaffeine2.9.3jar3.1.8
    com.github.ben-manes.caffeineguava2.9.3jar3.1.8
    com.github.ben-manes.caffeinejcache2.9.3jar3.1.8
    com.github.ben-manes.caffeinesimulator2.9.3jar3.1.8
    com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1jar
    com.google.appengineappengine-api-1.0-sdk1.9.98jar2.0.24
    com.google.code.gsongson2.9.1jar2.10.1
    com.graphql-javagraphql-java18.5jar18.7230521-nf-execution
    com.h2databaseh22.1.214jar2.2.224
    com.hazelcasthazelcast5.1.7jar5.3.6
    com.hazelcasthazelcast-hibernate522.2.1jar
    com.hazelcasthazelcast-hibernate532.2.1jar2.3.05.1.0
    com.hazelcasthazelcast-spring5.1.7jar5.3.6
    com.ibm.db2jcc11.5.9.0jar
    com.jayway.jsonpathjson-path2.7.0jar2.9.0
    com.jayway.jsonpathjson-path-assert2.7.0jar2.9.0
    com.microsoft.sqlservermssql-jdbc10.2.3.jre8jar10.2.3.jre1712.6.0.jre11
    com.mysqlmysql-connector-j8.0.33jar8.3.0
    com.oracle.database.haons21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.hasimplefan21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc1121.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc11-production21.5.0.0pom21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc821.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc8-production21.5.0.0pom21.11.0.023.3.0.23.09
    com.oracle.database.jdbcrsi21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcucp21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcucp1121.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc11_g21.5.0.0jar21.11.0.0
    com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0jar21.11.0.0
    com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc8_g21.5.0.0jar21.11.0.0
    com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0jar21.11.0.0
    com.oracle.database.nlsorai18n21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.observabilitydms21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.observabilityojdbc11-observability21.5.0.0pom21.11.0.0
    com.oracle.database.observabilityojdbc11dms21.5.0.0jar21.11.0.0
    com.oracle.database.observabilityojdbc8-observability21.5.0.0pom21.11.0.0
    com.oracle.database.observabilityojdbc8dms21.5.0.0jar21.11.0.0
    com.oracle.database.r2dbcoracle-r2dbc0.4.0jar1.2.0
    com.oracle.database.securityoraclepki21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.securityosdt_cert21.5.0.0jar21.11.0.0
    com.oracle.database.securityosdt_core21.5.0.0jar21.11.0.0
    com.oracle.database.xmlxdb21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.xmlxmlparserv221.5.0.0jar21.11.0.023.3.0.23.09
    com.querydslquerydsl-apt5.0.0jar5.1.0
    com.querydslquerydsl-codegen5.0.0jar5.1.0
    com.querydslquerydsl-codegen-utils5.0.0jar
    com.querydslquerydsl-collections5.0.0jar5.1.0
    com.querydslquerydsl-core5.0.0jar5.1.0
    com.querydslquerydsl-guava5.0.0jar5.1.0
    com.querydslquerydsl-hibernate-search5.0.0jar5.1.0
    com.querydslquerydsl-jdo5.0.0jar5.1.0
    com.querydslquerydsl-jpa5.0.0jar5.1.0
    com.querydslquerydsl-jpa-codegen5.0.0jar5.1.0
    com.querydslquerydsl-kotlin5.0.0jar5.1.0
    com.querydslquerydsl-kotlin-codegen5.0.0jar5.1.0
    com.querydslquerydsl-lucene35.0.0jar5.1.0
    com.querydslquerydsl-lucene45.0.0jar5.1.0
    com.querydslquerydsl-lucene55.0.0jar5.1.0
    com.querydslquerydsl-mongodb5.0.0jar5.1.0
    com.querydslquerydsl-scala5.0.0jar5.1.0
    com.querydslquerydsl-spatial5.0.0jar5.1.0
    com.querydslquerydsl-sql5.0.0jar5.1.0
    com.querydslquerydsl-sql-codegen5.0.0jar5.1.0
    com.querydslquerydsl-sql-spatial5.0.0jar5.1.0
    com.querydslquerydsl-sql-spring5.0.0jar5.1.0
    com.rabbitmqamqp-client5.14.3jar5.20.0
    com.rabbitmqstream-client0.5.0jar0.15.0
    com.samskivertjmustache1.15jar1.16
    com.sendgridsendgrid-java4.9.3jar4.10.1
    com.squareup.okhttp3logging-interceptor4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3mockwebserver4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okcurl4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-brotli4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-dnsoverhttps4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-sse4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-tls4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-urlconnection4.9.3jar4.12.05.0.0-alpha.12
    com.sun.activationjakarta.activation1.2.2jar2.0.1
    com.sun.mailjakarta.mail1.6.7jar2.0.1
    com.sun.xml.messaging.saajsaaj-impl1.5.3jar3.0.3
    com.unboundidunboundid-ldapsdk6.0.10jar6.0.11
    com.zaxxerHikariCP4.0.3jar5.1.0
    commons-codeccommons-codec1.15jar1.16.1
    commons-poolcommons-pool1.6jar
    de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11jar3.5.44.12.2
    io.dropwizard.metricsmetrics-annotation4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-caffeine4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-caffeine34.2.22jar4.2.25
    io.dropwizard.metricsmetrics-collectd4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-core4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-ehcache4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-graphite4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-healthchecks4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-httpasyncclient4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-httpclient4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-httpclient54.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jakarta-servlet4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jakarta-servlet64.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jakarta-servlets4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jcache4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jdbi4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jdbi34.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jersey24.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jersey34.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jersey314.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty104.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty114.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty124.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty12-ee104.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty94.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jmx4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-json4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jvm4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-log4j24.2.22jar4.2.25
    io.dropwizard.metricsmetrics-logback4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-logback134.2.22jar4.2.25
    io.dropwizard.metricsmetrics-logback144.2.22jar4.2.25
    io.dropwizard.metricsmetrics-servlet4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-servlets4.2.22jar4.2.25
    io.lettucelettuce-core6.1.10.RELEASEjar6.3.1.RELEASE
    io.micrometermicrometer-core1.9.17jar1.12.2
    io.micrometermicrometer-registry-appoptics1.9.17jar1.12.2
    io.micrometermicrometer-registry-atlas1.9.17jar1.12.2
    io.micrometermicrometer-registry-azure-monitor1.9.17jar1.12.2
    io.micrometermicrometer-registry-cloudwatch1.9.17jar1.12.2
    io.micrometermicrometer-registry-cloudwatch21.9.17jar1.12.2
    io.micrometermicrometer-registry-datadog1.9.17jar1.12.2
    io.micrometermicrometer-registry-dynatrace1.9.17jar1.12.2
    io.micrometermicrometer-registry-elastic1.9.17jar1.12.2
    io.micrometermicrometer-registry-ganglia1.9.17jar1.12.2
    io.micrometermicrometer-registry-graphite1.9.17jar1.12.2
    io.micrometermicrometer-registry-health1.9.17jar1.12.2
    io.micrometermicrometer-registry-humio1.9.17jar1.12.2
    io.micrometermicrometer-registry-influx1.9.17jar1.12.2
    io.micrometermicrometer-registry-jmx1.9.17jar1.12.2
    io.micrometermicrometer-registry-kairos1.9.17jar1.12.2
    io.micrometermicrometer-registry-new-relic1.9.17jar1.12.2
    io.micrometermicrometer-registry-opentsdb1.9.17jar1.12.2
    io.micrometermicrometer-registry-otlp1.9.17jar1.12.2
    io.micrometermicrometer-registry-prometheus1.9.17jar1.12.2
    io.micrometermicrometer-registry-signalfx1.9.17jar1.12.2
    io.micrometermicrometer-registry-stackdriver1.9.17jar1.12.2
    io.micrometermicrometer-registry-statsd1.9.17jar1.12.2
    io.micrometermicrometer-registry-wavefront1.9.17jar1.12.2
    io.micrometermicrometer-test1.9.17jar1.12.2
    io.nettynetty-all4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-buffer4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-haproxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-http4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-http24.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-memcache4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-mqtt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-redis4.1.101.Finaljar4.1.106.Final
    io.nettynetty-codec-smtp4.1.101.Finaljar4.1.106.Final
    io.nettynetty-codec-socks4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-stomp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-xml4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-common4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-dev-tools4.1.101.Finaljar4.1.106.Final
    io.nettynetty-example4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-handler4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-handler-proxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-handler-ssl-ocsp4.1.101.Finaljar4.1.106.Final
    io.nettynetty-resolver4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-resolver-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-resolver-dns-classes-macos4.1.101.Finaljar4.1.106.Final
    io.nettynetty-resolver-dns-native-macos4.1.101.Finaljar4.1.106.Final
    io.nettynetty-tcnative2.0.61.Finallinux-x86_64jar2.0.62.Final
    io.nettynetty-tcnative-boringssl-static2.0.61.Finaljar2.0.62.Final
    io.nettynetty-tcnative-classes2.0.61.Finaljar2.0.62.Final
    io.nettynetty-transport4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-classes-epoll4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-classes-kqueue4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-native-epoll4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-native-kqueue4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-native-unix-common4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-rxtx4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-sctp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-udt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.projectreactorreactor-core3.4.34jar3.4.353.6.2
    io.projectreactorreactor-test3.4.34jar3.4.353.6.2
    io.projectreactorreactor-tools3.4.34jar3.4.353.6.2
    io.projectreactor.addonsreactor-adapter3.4.10jar3.5.1
    io.projectreactor.addonsreactor-extra3.4.10jar3.5.1
    io.projectreactor.addonsreactor-pool0.2.12jar1.0.5
    io.projectreactor.kafkareactor-kafka1.3.22jar
    io.projectreactor.kotlinreactor-kotlin-extensions1.1.10jar1.2.2
    io.projectreactor.nettyreactor-netty1.0.39jar1.0.411.1.15
    io.projectreactor.nettyreactor-netty-core1.0.39jar1.0.411.1.15
    io.projectreactor.nettyreactor-netty-http1.0.39jar1.0.411.1.15
    io.projectreactor.nettyreactor-netty-http-brave1.0.39jar1.0.411.1.15
    io.projectreactor.rabbitmqreactor-rabbitmq1.5.6jar
    io.prometheussimpleclient0.15.0jar0.16.0
    io.prometheussimpleclient_caffeine0.15.0jar0.16.0
    io.prometheussimpleclient_common0.15.0jar0.16.0
    io.prometheussimpleclient_dropwizard0.15.0jar0.16.0
    io.prometheussimpleclient_graphite_bridge0.15.0jar0.16.0
    io.prometheussimpleclient_guava0.15.0jar0.16.0
    io.prometheussimpleclient_hibernate0.15.0jar0.16.0
    io.prometheussimpleclient_hotspot0.15.0jar0.16.0
    io.prometheussimpleclient_httpserver0.15.0jar0.16.0
    io.prometheussimpleclient_jetty0.15.0jar0.16.0
    io.prometheussimpleclient_jetty_jdk80.15.0jar0.16.0
    io.prometheussimpleclient_log4j0.15.0jar0.16.0
    io.prometheussimpleclient_log4j20.15.0jar0.16.0
    io.prometheussimpleclient_logback0.15.0jar0.16.0
    io.prometheussimpleclient_pushgateway0.15.0jar0.16.0
    io.prometheussimpleclient_servlet0.15.0jar0.16.0
    io.prometheussimpleclient_servlet_jakarta0.15.0jar0.16.0
    io.prometheussimpleclient_spring_boot0.15.0jar0.16.0
    io.prometheussimpleclient_spring_web0.15.0jar0.16.0
    io.prometheussimpleclient_tracer_otel0.15.0jar0.16.0
    io.prometheussimpleclient_tracer_otel_agent0.15.0jar0.16.0
    io.prometheussimpleclient_vertx0.15.0jar0.16.0
    io.r2dbcr2dbc-h20.9.1.RELEASEjar1.0.0.RELEASE
    io.r2dbcr2dbc-mssql0.9.0.RELEASEjar0.9.0.SONATYPE-M41.0.2.RELEASE
    io.r2dbcr2dbc-pool0.9.2.RELEASEjar1.0.1.RELEASE
    io.r2dbcr2dbc-proxy0.9.1.RELEASEjar1.1.4.RELEASE
    io.r2dbcr2dbc-spi0.9.1.RELEASEjar1.0.0.RELEASE
    io.reactivexrxjava1.3.8jar
    io.reactivexrxjava-reactive-streams1.2.1jar
    io.reactivex.rxjava2rxjava2.2.21jar
    io.rest-assuredjson-path4.5.1jar5.4.0
    io.rest-assuredjson-schema-validator4.5.1jar5.4.0
    io.rest-assuredkotlin-extensions4.5.1jar5.4.0
    io.rest-assuredrest-assured4.5.1jar5.4.0
    io.rest-assuredrest-assured-all4.5.1jar5.4.0
    io.rest-assuredrest-assured-common4.5.1jar5.4.0
    io.rest-assuredscala-support4.5.1jar5.4.0
    io.rest-assuredspring-commons4.5.1jar5.4.0
    io.rest-assuredspring-mock-mvc4.5.1jar5.4.0
    io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1jar5.4.0
    io.rest-assuredspring-web-test-client4.5.1jar5.4.0
    io.rest-assuredxml-path4.5.1jar5.4.0
    io.rest-assured.exampleskotlin-example4.5.1jar
    io.rest-assured.examplesrest-assured-itest-java4.5.1jar
    io.rest-assured.examplesscala-example4.5.1jar
    io.rest-assured.examplesscala-mock-mvc-example4.5.1jar
    io.rest-assured.examplesscalatra-example4.5.1jar
    io.rest-assured.examplesscalatra-webapp4.5.1war
    io.rest-assured.examplesspring-mvc-webapp4.5.1war
    io.rsocketrsocket-core1.1.3jar1.1.4
    io.rsocketrsocket-load-balancer1.1.3jar1.1.4
    io.rsocketrsocket-micrometer1.1.3jar1.1.4
    io.rsocketrsocket-test1.1.3jar1.1.4
    io.rsocketrsocket-transport-local1.1.3jar1.1.4
    io.rsocketrsocket-transport-netty1.1.3jar1.1.4
    io.spring.gradledependency-management-plugin1.0.15.RELEASEjar1.1.4
    io.undertowundertow-core2.2.28.Finaljar2.3.10.Final
    io.undertowundertow-servlet2.2.28.Finaljar2.3.10.Final
    io.undertowundertow-websockets-jsr2.2.28.Finaljar2.3.10.Final
    jakarta.activationjakarta.activation-api1.2.2jar2.1.2
    jakarta.annotationjakarta.annotation-api1.3.5jar3.0.0-M1
    jakarta.jmsjakarta.jms-api2.0.3jar3.1.0
    jakarta.jsonjakarta.json-api1.1.6jar2.1.3
    jakarta.json.bindjakarta.json.bind-api1.0.2jar3.0.0
    jakarta.mailjakarta.mail-api1.6.7jar2.1.2
    jakarta.management.j2eejakarta.management.j2ee-api1.1.4jar
    jakarta.persistencejakarta.persistence-api2.2.3jar3.2.0-M1
    jakarta.servletjakarta.servlet-api4.0.4jar6.1.0-M1
    jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7jar3.0.0
    jakarta.transactionjakarta.transaction-api1.3.3jar2.0.1
    jakarta.validationjakarta.validation-api2.0.2jar3.1.0-M1
    jakarta.websocketjakarta.websocket-api1.1.2jar2.2.0-M1
    jakarta.ws.rsjakarta.ws.rs-api2.1.6jar3.1.0
    jakarta.xml.bindjakarta.xml.bind-api2.3.3jar4.0.1
    jakarta.xml.soapjakarta.xml.soap-api1.4.2jar3.0.1
    jakarta.xml.wsjakarta.xml.ws-api2.3.3jar4.0.1
    javax.activationjavax.activation-api1.2.0jar
    javax.annotationjavax.annotation-api1.3.2jar
    javax.cachecache-api1.1.1jar
    javax.jmsjavax.jms-api2.0.1jar
    javax.jsonjavax.json-api1.1.4jar
    javax.json.bindjavax.json.bind-api1.0jar
    javax.mailjavax.mail-api1.6.2jar
    javax.moneymoney-api1.1jar
    javax.persistencejavax.persistence-api2.2jar
    javax.servletjavax.servlet-api4.0.1jar
    javax.servletjstl1.2jar
    javax.transactionjavax.transaction-api1.3jar
    javax.validationvalidation-api2.0.1.Finaljar
    javax.websocketjavax.websocket-api1.1jar
    javax.xml.bindjaxb-api2.3.1jar2.4.0-b180830.0359
    javax.xml.wsjaxws-api2.3.1jar
    jaxenjaxen1.2.0jar2.0.0
    junitjunit4.13.2jar
    net.bytebuddybyte-buddy1.12.23jar1.14.11
    net.bytebuddybyte-buddy-agent1.12.23jar1.14.11
    net.minidevjson-smart2.4.11jar2.5.0
    net.sf.ehcacheehcache2.10.9.2jar
    net.sourceforge.htmlunithtmlunit2.60.0jar2.70.0
    net.sourceforge.jtdsjtds1.3.1jar
    net.sourceforge.nekohtmlnekohtml1.9.22jar
    nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0jar3.3.0
    org.apache.activemqactivemq-amqp5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-blueprint5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-broker5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-camel5.16.7jar
    org.apache.activemqactivemq-client5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-console5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-http5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-jaas5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-jdbc-store5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-jms-pool5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-kahadb-store5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-karaf5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-leveldb-store5.16.7jar
    org.apache.activemqactivemq-log4j-appender5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-mqtt5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-openwire-generator5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-openwire-legacy5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-osgi5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-partition5.16.7jar5.18.3
    org.apache.activemqactivemq-pool5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-ra5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-run5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-runtime-config5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-shiro5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-spring5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-stomp5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-web5.16.7jar5.18.36.0.1
    org.apache.activemqartemis-amqp-protocol2.19.1jar2.32.0
    org.apache.activemqartemis-commons2.19.1jar2.32.0
    org.apache.activemqartemis-core-client2.19.1jar2.32.0
    org.apache.activemqartemis-jdbc-store2.19.1jar2.32.0
    org.apache.activemqartemis-jms-client2.19.1jar2.32.0
    org.apache.activemqartemis-jms-server2.19.1jar2.32.0
    org.apache.activemqartemis-journal2.19.1jar2.32.0
    org.apache.activemqartemis-quorum-api2.19.1jar2.32.0
    org.apache.activemqartemis-selector2.19.1jar2.32.0
    org.apache.activemqartemis-server2.19.1jar2.32.0
    org.apache.activemqartemis-service-extensions2.19.1jar2.32.0
    org.apache.commonscommons-dbcp22.9.0jar2.11.0
    org.apache.commonscommons-lang33.12.0jar3.14.0
    org.apache.commonscommons-pool22.11.1jar2.12.0
    org.apache.derbyderby10.14.2.0jar10.17.1.0
    org.apache.derbyderbyclient10.14.2.0jar10.17.1.0
    org.apache.derbyderbynet10.14.2.0jar10.17.1.0
    org.apache.derbyderbyoptionaltools10.14.2.0jar10.17.1.0
    org.apache.derbyderbytools10.14.2.0jar10.17.1.0
    org.apache.httpcomponentsfluent-hc4.5.14jar
    org.apache.httpcomponentshttpasyncclient4.1.5jar
    org.apache.httpcomponentshttpclient4.5.14jar
    org.apache.httpcomponentshttpclient-cache4.5.14jar
    org.apache.httpcomponentshttpclient-osgi4.5.14jar
    org.apache.httpcomponentshttpclient-win4.5.14jar
    org.apache.httpcomponentshttpcore4.4.16jar
    org.apache.httpcomponentshttpcore-nio4.4.16jar
    org.apache.httpcomponentshttpmime4.5.14jar
    org.apache.httpcomponents.client5httpclient55.1.4jar5.4-alpha1
    org.apache.httpcomponents.client5httpclient5-cache5.1.4jar5.4-alpha1
    org.apache.httpcomponents.client5httpclient5-fluent5.1.4jar5.4-alpha1
    org.apache.httpcomponents.client5httpclient5-win5.1.4jar5.2.3
    org.apache.httpcomponents.core5httpcore55.1.5jar5.3-alpha1
    org.apache.httpcomponents.core5httpcore5-h25.1.5jar5.3-alpha1
    org.apache.httpcomponents.core5httpcore5-reactive5.1.5jar5.3-alpha1
    org.apache.johnzonjohnzon-core1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jaxrs1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jsonb1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jsonb-extras1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jsonschema1.2.21jar2.0.0
    org.apache.johnzonjohnzon-mapper1.2.21jar2.0.0
    org.apache.johnzonjohnzon-websocket1.2.21jar2.0.0
    org.apache.kafkaconnect3.1.2jar3.6.1
    org.apache.kafkaconnect-api3.1.2jar3.6.1
    org.apache.kafkaconnect-basic-auth-extension3.1.2jar3.6.1
    org.apache.kafkaconnect-file3.1.2jar3.6.1
    org.apache.kafkaconnect-json3.1.2jar3.6.1
    org.apache.kafkaconnect-mirror3.1.2jar3.6.1
    org.apache.kafkaconnect-mirror-client3.1.2jar3.6.1
    org.apache.kafkaconnect-runtime3.1.2jar3.6.1
    org.apache.kafkaconnect-transforms3.1.2jar3.6.1
    org.apache.kafkagenerator3.1.2jar3.6.1
    org.apache.kafkakafka-clients3.1.2jar3.6.1
    org.apache.kafkakafka-log4j-appender3.1.2jar3.6.1
    org.apache.kafkakafka-metadata3.1.2jar3.6.1
    org.apache.kafkakafka-raft3.1.2jar3.6.1
    org.apache.kafkakafka-server-common3.1.2jar3.6.1
    org.apache.kafkakafka-shell3.1.2jar3.6.1
    org.apache.kafkakafka-storage3.1.2jar3.6.1
    org.apache.kafkakafka-storage-api3.1.2jar3.6.1
    org.apache.kafkakafka-streams3.1.2jar3.6.1
    org.apache.kafkakafka-streams-scala_2.123.1.2jar3.6.1
    org.apache.kafkakafka-streams-scala_2.133.1.2jar3.6.1
    org.apache.kafkakafka-streams-test-utils3.1.2jar3.6.1
    org.apache.kafkakafka-tools3.1.2jar3.6.1
    org.apache.kafkakafka_2.123.1.2jar3.6.1
    org.apache.kafkakafka_2.133.1.2jar3.6.1
    org.apache.kafkatrogdor3.1.2jar3.6.1
    org.apache.logging.log4jlog4j-1.2-api2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-api2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-appserver2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-cassandra2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-core2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-couchdb2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-docker2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-flume-ng2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-iostreams2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-jcl2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-jmx-gui2.17.2jar2.22.03.0.0-alpha1
    org.apache.logging.log4jlog4j-jpa2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-jpl2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-jul2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-kubernetes2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-layout-template-json2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-liquibase2.17.2jar2.19.03.0.0-alpha1
    org.apache.logging.log4jlog4j-mongodb32.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-mongodb42.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-slf4j-impl2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-slf4j18-impl2.17.2jar2.18.0
    org.apache.logging.log4jlog4j-spring-boot2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-taglib2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-to-slf4j2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-web2.17.2jar2.22.13.0.0-alpha1
    org.apache.solrsolr-analysis-extras8.11.2jar8.11.39.4.1
    org.apache.solrsolr-analytics8.11.2jar8.11.39.4.1
    org.apache.solrsolr-cell8.11.2jar8.11.3
    org.apache.solrsolr-core8.11.2jar8.11.39.4.1
    org.apache.solrsolr-dataimporthandler8.11.2jar8.11.3
    org.apache.solrsolr-dataimporthandler-extras8.11.2jar8.11.3
    org.apache.solrsolr-gcs-repository8.11.2jar8.11.39.4.1
    org.apache.solrsolr-jaegertracer-configurator8.11.2jar8.11.39.4.1
    org.apache.solrsolr-langid8.11.2jar8.11.39.4.1
    org.apache.solrsolr-ltr8.11.2jar8.11.39.4.1
    org.apache.solrsolr-prometheus-exporter8.11.2jar8.11.39.4.1
    org.apache.solrsolr-s3-repository8.11.2jar8.11.39.4.1
    org.apache.solrsolr-solrj8.11.2jar8.11.39.4.1
    org.apache.solrsolr-test-framework8.11.2jar8.11.39.4.1
    org.apache.solrsolr-velocity8.11.2jar8.11.3
    org.apache.tomcattomcat-annotations-api9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcattomcat-jdbc9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcattomcat-jsp-api9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-core9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-el9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-jasper9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-websocket9.0.83jar9.0.8511.0.0-M16
    org.aspectjaspectjrt1.9.7jar1.9.21
    org.aspectjaspectjtools1.9.7jar1.9.21
    org.aspectjaspectjweaver1.9.7jar1.9.21
    org.assertjassertj-core3.22.0jar3.25.3
    org.awaitilityawaitility4.2.0jar
    org.awaitilityawaitility-groovy4.2.0jar
    org.awaitilityawaitility-kotlin4.2.0jar
    org.awaitilityawaitility-scala4.2.0jar
    org.cache2kcache2k-api2.6.1.Finaljar
    org.cache2kcache2k-config2.6.1.Finaljar
    org.cache2kcache2k-core2.6.1.Finaljar
    org.cache2kcache2k-jcache2.6.1.Finaljar
    org.cache2kcache2k-micrometer2.6.1.Finaljar
    org.cache2kcache2k-spring2.6.1.Finaljar
    org.codehaus.groovygroovy3.0.19jar3.0.20
    org.codehaus.groovygroovy-ant3.0.19jar3.0.20
    org.codehaus.groovygroovy-astbuilder3.0.19jar3.0.20
    org.codehaus.groovygroovy-bsf3.0.19jar3.0.20
    org.codehaus.groovygroovy-cli-commons3.0.19jar3.0.20
    org.codehaus.groovygroovy-cli-picocli3.0.19jar3.0.20
    org.codehaus.groovygroovy-console3.0.19jar3.0.20
    org.codehaus.groovygroovy-datetime3.0.19jar3.0.20
    org.codehaus.groovygroovy-dateutil3.0.19jar3.0.20
    org.codehaus.groovygroovy-docgenerator3.0.19jar3.0.20
    org.codehaus.groovygroovy-groovydoc3.0.19jar3.0.20
    org.codehaus.groovygroovy-groovysh3.0.19jar3.0.20
    org.codehaus.groovygroovy-jaxb3.0.19jar3.0.20
    org.codehaus.groovygroovy-jmx3.0.19jar3.0.20
    org.codehaus.groovygroovy-json3.0.19jar3.0.20
    org.codehaus.groovygroovy-jsr2233.0.19jar3.0.20
    org.codehaus.groovygroovy-macro3.0.19jar3.0.20
    org.codehaus.groovygroovy-nio3.0.19jar3.0.20
    org.codehaus.groovygroovy-servlet3.0.19jar3.0.20
    org.codehaus.groovygroovy-sql3.0.19jar3.0.20
    org.codehaus.groovygroovy-swing3.0.19jar3.0.20
    org.codehaus.groovygroovy-templates3.0.19jar3.0.20
    org.codehaus.groovygroovy-test3.0.19jar3.0.20
    org.codehaus.groovygroovy-test-junit53.0.19jar3.0.20
    org.codehaus.groovygroovy-testng3.0.19jar3.0.20
    org.codehaus.groovygroovy-xml3.0.19jar3.0.20
    org.codehaus.groovygroovy-yaml3.0.19jar3.0.20
    org.codehaus.janinocommons-compiler3.1.10jar3.1.12
    org.codehaus.janinocommons-compiler-jdk3.1.10jar3.1.12
    org.codehaus.janinojanino3.1.10jar3.1.12
    org.eclipse.jettyapache-jsp9.4.53.v20231009jar11.0.20
    org.eclipse.jettyapache-jstl9.4.53.v20231009jar11.0.0
    org.eclipse.jettyinfinispan-common9.4.53.v20231009jar11.0.20
    org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009jar11.0.20
    org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-alpn-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009jar
    org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009jar
    org.eclipse.jettyjetty-alpn-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-annotations9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-ant9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-continuation9.4.53.v20231009jar
    org.eclipse.jettyjetty-deploy9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-distribution9.4.53.v20231009zip11.0.0.beta1
    org.eclipse.jettyjetty-hazelcast9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-home9.4.53.v20231009zip12.0.6
    org.eclipse.jettyjetty-http9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-http-spi9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-io9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-jaas9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-jaspi9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-jmx9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-jndi9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-nosql9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-openid9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-plus9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-proxy9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-quickstart9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-reactive-httpclient1.1.15jar4.0.3
    org.eclipse.jettyjetty-rewrite9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-security9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-servlet9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-servlets9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-spring9.4.53.v20231009jar11.0.0.beta3
    org.eclipse.jettyjetty-unixsocket9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-util9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-util-ajax9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-webapp9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-xml9.4.53.v20231009jar12.0.6
    org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009jar12.0.6
    org.eclipse.jetty.http2http2-client9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-common9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-hpack9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-server9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009jar12.0.6
    org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158jar
    org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009jar
    org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009jar11.0.20
    org.ehcacheehcache3.10.8jar
    org.ehcacheehcache-clustered3.10.8jar
    org.ehcacheehcache-transactions3.10.8jar
    org.elasticsearchelasticsearch7.17.15jar7.17.188.12.1
    org.elasticsearch.clientelasticsearch-rest-client7.17.15jar7.17.188.12.1
    org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15jar7.17.188.12.1
    org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15jar7.17.188.0.0-alpha2
    org.elasticsearch.clienttransport7.17.15jar7.17.18
    org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15zip7.17.188.12.1
    org.elasticsearch.plugintransport-netty4-client7.17.15jar7.17.18
    org.firebirdsql.jdbcjaybird4.0.9.java8jar4.0.9.java114.0.10.java115.0.3.java11
    org.firebirdsql.jdbcjaybird-jdk184.0.9.java8jar4.0.10.java8
    org.flywaydbflyway-core8.5.13jar10.7.2
    org.flywaydbflyway-firebird8.5.13jar10.7.2
    org.flywaydbflyway-mysql8.5.13jar10.7.2
    org.flywaydbflyway-sqlserver8.5.13jar10.7.2
    org.freemarkerfreemarker2.3.32jar
    org.glassfishjakarta.el3.0.4jar5.0.0-M1
    org.glassfish.jaxbcodemodel2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbcodemodel-annotation-compiler2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbjaxb-jxc2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbjaxb-runtime2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbjaxb-xjc2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbtxw22.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbtxwc22.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbxsom2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jersey.bundlesjaxrs-ri2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-apache-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-grizzly-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-helidon-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-jdk-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-jetty-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-netty-connector2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-grizzly2-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-jdk-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-jetty-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-jetty-servlet2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-netty-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-servlet2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-servlet-core2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-simple-http2.35jar2.413.1.5
    org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35jar2.413.1.5
    org.glassfish.jersey.corejersey-client2.35jar2.413.1.5
    org.glassfish.jersey.corejersey-common2.35jar2.413.1.5
    org.glassfish.jersey.corejersey-server2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-bean-validation2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-declarative-linking2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-entity-filtering2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-metainf-services2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-bean-validation2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-freemarker2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-jsp2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-mustache2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-proxy-client2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-servlet-portability2.35jar2.413.0.0-M6
    org.glassfish.jersey.extjersey-spring42.35jar2.413.0.0-M6
    org.glassfish.jersey.extjersey-spring52.35jar2.413.0.0-M6
    org.glassfish.jersey.extjersey-wadl-doclet2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-weld2-se2.35jar2.413.1.5
    org.glassfish.jersey.ext.microprofilejersey-mp-config2.35jar2.413.1.5
    org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35jar2.413.1.5
    org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35jar2.413.1.5
    org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35jar2.413.1.5
    org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35jar2.413.1.5
    org.glassfish.jersey.injectjersey-cdi2-se2.35jar2.413.1.5
    org.glassfish.jersey.injectjersey-hk22.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-jaxb2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-binding2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-jackson2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-jettison2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-processing2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-kryo2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-moxy2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-multipart2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-sse2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth1-client2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth1-server2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth1-signature2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth2-client2.35jar2.413.1.5
    org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35jar2.413.1.5
    org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35pom2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35jar2.413.1.5
    org.glassfish.webjakarta.servlet.jsp.jstl1.2.6jar3.0.1
    org.hamcresthamcrest2.2jar
    org.hamcresthamcrest-core2.2jar
    org.hamcresthamcrest-library2.2jar
    org.hibernatehibernate-c3p05.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-core5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-ehcache5.6.15.Finaljar6.0.0.Alpha7
    org.hibernatehibernate-entitymanager5.6.15.Finaljar6.0.0.Alpha7
    org.hibernatehibernate-envers5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-hikaricp5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-java85.6.15.Finaljar6.0.0.Alpha7
    org.hibernatehibernate-jcache5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-jpamodelgen5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-micrometer5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-proxool5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-spatial5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-testing5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-vibur5.6.15.Finaljar6.4.4.Final
    org.hibernate.validatorhibernate-validator6.2.5.Finaljar8.0.1.Final
    org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Finaljar8.0.1.Final
    org.hsqldbhsqldb2.5.2jar2.7.2
    org.infinispaninfinispan-anchored-keys13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-jdbc13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-jpa13.0.20.Finaljar13.0.21.Final14.0.0.Dev02
    org.infinispaninfinispan-cachestore-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-rocksdb13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-sql13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cdi-common13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cdi-embedded13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cdi-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-checkstyle13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cli-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-client-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-client-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cloudevents-integration13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-clustered-counter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-clustered-lock13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-commons-test13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-component-annotations13.0.20.Finalprovidedjar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-component-processor13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-console0.15.5.Finaljar15.0.0.Dev05
    org.infinispaninfinispan-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-extended-statistics13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-hibernate-cache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-hibernate-cache-spi13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-hibernate-cache-v5313.0.20.Finaljar13.0.21.Final14.0.0.Dev02
    org.infinispaninfinispan-jboss-marshalling13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-jcache13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-jcache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-jcache-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-key-value-store-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-marshaller-kryo13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-marshaller-protostuff13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-multimap13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-objectfilter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-query13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-query-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-query-dsl13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-remote-query-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-remote-query-server13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-scripting13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-memcached13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-router13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-runtime13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-testdriver-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-testdriver-junit413.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-testdriver-junit513.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring5-common13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring5-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring5-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-tasks13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-tasks-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-tools13.0.20.Finaljar15.0.0.Dev08
    org.infinispan.protostreamprotostream4.4.4.Finaljar4.6.5.Final14.0.0.CR2
    org.infinispan.protostreamprotostream-processor4.4.4.Finalprovidedjar4.6.5.Final14.0.0.CR2
    org.infinispan.protostreamprotostream-types4.4.4.Finaljar4.6.5.Final14.0.0.CR2
    org.influxdbinfluxdb-java2.22jar2.24
    org.jboss.loggingjboss-logging3.4.3.Finaljar3.5.3.Final
    org.jdomjdom22.0.6.1jar
    org.jetbrains.kotlinkotlin-compiler1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-daemon-client1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-main-kts1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-osgi-bundle1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-reflect1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-script-runtime1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-script-util1.6.21jar1.8.22
    org.jetbrains.kotlinkotlin-scripting-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-scripting-jvm1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-js1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-annotations-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-js1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-junit1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-junit51.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-testng1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4jar1.8.0-RC2
    org.jolokiajolokia-core1.7.2jar
    org.jooqjooq3.14.16jar3.19.3
    org.jooqjooq-codegen3.14.16jar3.19.3
    org.jooqjooq-kotlin3.14.16jar3.19.3
    org.jooqjooq-meta3.14.16jar3.19.3
    org.junit.jupiterjunit-jupiter5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-api5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-engine5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-migrationsupport5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-params5.8.2jar5.10.2
    org.junit.platformjunit-platform-commons1.8.2jar1.10.2
    org.junit.platformjunit-platform-console1.8.2jar1.10.2
    org.junit.platformjunit-platform-engine1.8.2jar1.10.2
    org.junit.platformjunit-platform-jfr1.8.2jar1.10.2
    org.junit.platformjunit-platform-launcher1.8.2jar1.10.2
    org.junit.platformjunit-platform-reporting1.8.2jar1.10.2
    org.junit.platformjunit-platform-runner1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite-api1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite-commons1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite-engine1.8.2jar1.10.2
    org.junit.platformjunit-platform-testkit1.8.2jar1.10.2
    org.junit.vintagejunit-vintage-engine5.8.2jar5.10.2
    org.liquibaseliquibase-cdi4.9.1jar4.26.0
    org.liquibaseliquibase-core4.9.1jar4.26.0
    org.mariadbr2dbc-mariadb1.1.2jar1.1.4
    org.mariadb.jdbcmariadb-java-client3.1.4jar3.3.2
    org.messaginghubpooled-jms1.2.6jar3.1.5
    org.mockitomockito-android4.5.1jar4.11.05.10.0
    org.mockitomockito-core4.5.1jar4.11.05.10.0
    org.mockitomockito-errorprone4.5.1jar4.11.05.10.0
    org.mockitomockito-inline4.5.1jar4.11.05.2.0
    org.mockitomockito-junit-jupiter4.5.1jar4.11.05.10.0
    org.mockitomockito-proxy4.5.1jar4.11.05.10.0
    org.mongodbbson4.6.1jar4.11.15.0.0-beta0
    org.mongodbbson-record-codec4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-core4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-legacy4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-reactivestreams4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-sync4.6.1jar4.11.15.0.0-beta0
    org.mortbay.jasperapache-el9.0.52jar9.0.83.110.1.16
    org.mybatismybatis3.5.15jar
    org.mybatismybatis-spring2.1.2jar3.0.3
    org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jar
    org.mybatis.scriptingmybatis-freemarker1.2.4jar
    org.mybatis.scriptingmybatis-thymeleaf1.0.4jar
    org.mybatis.scriptingmybatis-velocity2.1.2jar
    org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2jar3.0.3
    org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2jar3.0.3
    org.mybatis.spring.nativemybatis-spring-native-core0.1.0-SNAPSHOTjar
    org.mybatis.spring.nativemybatis-spring-native-extensions0.1.0-SNAPSHOTjar
    org.neo4j.driverneo4j-java-driver4.4.12jar4.4.135.17.0
    org.postgresqlpostgresql42.3.8jar42.7.1
    org.postgresqlr2dbc-postgresql0.9.2.RELEASEjar0.9.3.RELEASE1.0.4.RELEASE
    org.projectlomboklombok1.18.30jar
    org.quartz-schedulerquartz2.3.2jar2.5.0-rc1
    org.quartz-schedulerquartz-jobs2.3.2jar2.5.0-rc1
    org.reactivestreamsreactive-streams1.0.4jar
    org.seleniumhq.seleniumhtmlunit-driver3.61.0jar3.64.04.13.0
    org.seleniumhq.seleniumlift4.1.4jar4.14.0
    org.seleniumhq.seleniumselenium-api4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-chrome-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-chromium-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-devtools-v1004.1.4jar4.2.2
    org.seleniumhq.seleniumselenium-devtools-v1014.1.4jar4.3.0
    org.seleniumhq.seleniumselenium-devtools-v854.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-devtools-v994.1.4jar
    org.seleniumhq.seleniumselenium-edge-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-firefox-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-grid4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-http4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-ie-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-java4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-json4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-opera-driver4.1.4jar4.4.0
    org.seleniumhq.seleniumselenium-remote-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-safari-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-session-map-redis4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-support4.1.4jar4.17.0
    org.skyscreamerjsonassert1.5.1jar
    org.slf4jjcl-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jjul-to-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jlog4j-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-api1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-ext1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-jcl1.7.36jar
    org.slf4jslf4j-jdk141.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-log4j121.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-nop1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-simple1.7.36jar1.8.0-beta42.1.0-alpha1
    org.springframeworkspring-aop5.3.31jar6.1.3
    org.springframeworkspring-aspects5.3.31jar6.1.3
    org.springframeworkspring-beans5.3.31jar6.1.3
    org.springframeworkspring-context5.3.31jar6.1.3
    org.springframeworkspring-context-indexer5.3.31jar6.1.3
    org.springframeworkspring-context-support5.3.31jar6.1.3
    org.springframeworkspring-core5.3.31jar6.1.3
    org.springframeworkspring-expression5.3.31jar6.1.3
    org.springframeworkspring-instrument5.3.31jar6.1.3
    org.springframeworkspring-jcl5.3.31jar6.1.3
    org.springframeworkspring-jdbc5.3.31jar6.1.3
    org.springframeworkspring-jms5.3.31jar6.1.3
    org.springframeworkspring-messaging5.3.31jar6.1.3
    org.springframeworkspring-orm5.3.31jar6.1.3
    org.springframeworkspring-oxm5.3.31jar6.1.3
    org.springframeworkspring-r2dbc5.3.31jar6.1.3
    org.springframeworkspring-test5.3.31jar6.1.3
    org.springframeworkspring-tx5.3.31jar6.1.3
    org.springframeworkspring-web5.3.31jar6.1.3
    org.springframeworkspring-webflux5.3.31jar6.1.3
    org.springframeworkspring-webmvc5.3.31jar6.1.3
    org.springframeworkspring-websocket5.3.31jar6.1.3
    org.springframework.amqpspring-amqp2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit-junit2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit-stream2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit-test2.4.17jar3.1.1
    org.springframework.batchspring-batch-core4.3.10jar5.1.0
    org.springframework.batchspring-batch-infrastructure4.3.10jar5.1.0
    org.springframework.batchspring-batch-integration4.3.10jar5.1.0
    org.springframework.batchspring-batch-test4.3.10jar5.1.0
    org.springframework.bootspring-boot2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-actuator2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-actuator-autoconfigure2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-autoconfigure2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-autoconfigure-processor2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-buildpack-platform2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-configuration-metadata2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-configuration-processor2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-devtools2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-jarmode-layertools2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-loader2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-loader-tools2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-properties-migrator2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-activemq2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-actuator2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-amqp2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-aop2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-artemis2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-batch2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-cache2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-cassandra2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-couchbase2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-jdbc2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-jpa2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-ldap2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-mongodb2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-neo4j2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-r2dbc2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-redis2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-rest2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-freemarker2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-graphql2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-groovy-templates2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-hateoas2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-integration2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jdbc2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jersey2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jetty2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jooq2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-json2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jta-atomikos2.7.18jar
    org.springframework.bootspring-boot-starter-log4j22.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-logging2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-mail2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-mustache2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-oauth2-client2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-quartz2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-reactor-netty2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-rsocket2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-security2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-test2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-thymeleaf2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-tomcat2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-undertow2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-validation2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-web2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-web-services2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-webflux2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-websocket2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-test2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-test-autoconfigure2.7.18jar3.3.0-M1
    org.springframework.dataspring-data-cassandra3.4.18jar4.2.2
    org.springframework.dataspring-data-commons2.7.18jar3.2.2
    org.springframework.dataspring-data-couchbase4.4.18jar5.2.2
    org.springframework.dataspring-data-elasticsearch4.4.18jar5.2.2
    org.springframework.dataspring-data-envers2.7.18jar3.2.2
    org.springframework.dataspring-data-geode2.7.18jar3.0.0-M6
    org.springframework.dataspring-data-jdbc2.4.18jar3.2.2
    org.springframework.dataspring-data-jpa2.7.18jar3.2.2
    org.springframework.dataspring-data-keyvalue2.7.18jar3.2.2
    org.springframework.dataspring-data-ldap2.7.18jar3.2.2
    org.springframework.dataspring-data-mongodb3.4.18jar4.2.2
    org.springframework.dataspring-data-neo4j6.3.18jar7.2.2
    org.springframework.dataspring-data-r2dbc1.5.18jar3.2.2
    org.springframework.dataspring-data-redis2.7.18jar3.2.2
    org.springframework.dataspring-data-relational2.4.18jar3.2.2
    org.springframework.dataspring-data-rest-core3.7.18jar4.2.2
    org.springframework.dataspring-data-rest-hal-explorer3.7.18jar4.2.2
    org.springframework.dataspring-data-rest-webmvc3.7.18jar4.2.2
    org.springframework.experimentalspring-aot0.12.2jar
    org.springframework.experimentalspring-native0.12.2jar
    org.springframework.graphqlspring-graphql1.0.6jar1.2.4
    org.springframework.graphqlspring-graphql-test1.0.6jar1.2.4
    org.springframework.hateoasspring-hateoas1.5.6jar2.2.0
    org.springframework.integrationspring-integration-amqp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-core5.5.20jar6.2.1
    org.springframework.integrationspring-integration-event5.5.20jar6.2.1
    org.springframework.integrationspring-integration-feed5.5.20jar6.2.1
    org.springframework.integrationspring-integration-file5.5.20jar6.2.1
    org.springframework.integrationspring-integration-ftp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-gemfire5.5.20jar6.0.0-M5
    org.springframework.integrationspring-integration-groovy5.5.20jar6.2.1
    org.springframework.integrationspring-integration-http5.5.20jar6.2.1
    org.springframework.integrationspring-integration-ip5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jdbc5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jms5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jmx5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jpa5.5.20jar6.2.1
    org.springframework.integrationspring-integration-kafka5.5.20jar6.2.1
    org.springframework.integrationspring-integration-mail5.5.20jar6.2.1
    org.springframework.integrationspring-integration-mongodb5.5.20jar6.2.1
    org.springframework.integrationspring-integration-mqtt5.5.20jar6.2.1
    org.springframework.integrationspring-integration-r2dbc5.5.20jar6.2.1
    org.springframework.integrationspring-integration-redis5.5.20jar6.2.1
    org.springframework.integrationspring-integration-rmi5.5.20jar
    org.springframework.integrationspring-integration-rsocket5.5.20jar6.2.1
    org.springframework.integrationspring-integration-scripting5.5.20jar6.2.1
    org.springframework.integrationspring-integration-security5.5.20jar6.2.1
    org.springframework.integrationspring-integration-sftp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-stomp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-stream5.5.20jar6.2.1
    org.springframework.integrationspring-integration-syslog5.5.20jar6.2.1
    org.springframework.integrationspring-integration-test5.5.20jar6.2.1
    org.springframework.integrationspring-integration-test-support5.5.20jar6.2.1
    org.springframework.integrationspring-integration-webflux5.5.20jar6.2.1
    org.springframework.integrationspring-integration-websocket5.5.20jar6.2.1
    org.springframework.integrationspring-integration-ws5.5.20jar6.2.1
    org.springframework.integrationspring-integration-xml5.5.20jar6.2.1
    org.springframework.integrationspring-integration-xmpp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-zeromq5.5.20jar6.2.1
    org.springframework.integrationspring-integration-zookeeper5.5.20jar6.2.1
    org.springframework.kafkaspring-kafka2.8.11jar2.9.133.1.1
    org.springframework.kafkaspring-kafka-test2.8.11jar2.9.133.1.1
    org.springframework.ldapspring-ldap-core2.4.1jar3.2.1
    org.springframework.ldapspring-ldap-core-tiger2.4.1jar3.0.0-M1
    org.springframework.ldapspring-ldap-ldif-core2.4.1jar3.2.1
    org.springframework.ldapspring-ldap-odm2.4.1jar3.2.1
    org.springframework.ldapspring-ldap-test2.4.1jar3.2.1
    org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-core2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASEjar3.0.1
    org.springframework.retryspring-retry1.3.4jar2.0.5
    org.springframework.securityspring-security-acl5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-aspects5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-cas5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-config5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-core5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-crypto5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-data5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-ldap5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-messaging5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-client5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-core5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-jose5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-resource-server5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-openid5.7.11jar5.8.96.0.0-M1
    org.springframework.securityspring-security-remoting5.7.11jar5.8.9
    org.springframework.securityspring-security-rsocket5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-saml2-service-provider5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-taglibs5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-test5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-web5.7.11jar5.8.96.3.0-M1
    org.springframework.sessionspring-session-core2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-data-geode2.7.1jar2.7.23.0.0-M5
    org.springframework.sessionspring-session-data-mongodb2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-data-redis2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-hazelcast2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-jdbc2.7.4jar3.3.0-M1
    org.springframework.wsspring-ws-core3.1.8jar4.0.10
    org.springframework.wsspring-ws-security3.1.8jar4.0.10
    org.springframework.wsspring-ws-support3.1.8jar4.0.10
    org.springframework.wsspring-ws-test3.1.8jar4.0.10
    org.springframework.wsspring-xml3.1.8jar4.0.10
    org.thymeleafthymeleaf3.0.15.RELEASEjar3.1.2.RELEASE
    org.thymeleafthymeleaf-spring53.0.15.RELEASEjar3.1.2.RELEASE
    org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASEjar
    org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASEjar3.1.2.RELEASE
    org.webjarswebjars-locator-core0.50jar0.55
    org.xerialsqlite-jdbc3.36.0.3jar3.45.1.0
    org.xmlunitxmlunit-assertj2.9.1jar
    org.xmlunitxmlunit-assertj32.9.1jar
    org.xmlunitxmlunit-core2.9.1jar
    org.xmlunitxmlunit-legacy2.9.1jar
    org.xmlunitxmlunit-matchers2.9.1jar
    org.xmlunitxmlunit-placeholders2.9.1jar
    org.yamlsnakeyaml1.30jar1.332.2
    redis.clientsjedis3.8.0jar3.10.05.2.0-alpha2
    wsdl4jwsdl4j1.6.3jar
    StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    +

    Dependencies

    +

    This project does not declare any dependencies.

    +

    Dependency Updates

    +

    +

    antlr:antlr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idantlr
    Artifact Idantlr
    Current Version2.7.7
    Scope
    Classifier
    Typejar
    Newer versions20030911 Latest Major
    +

    ch.qos.logback:logback-access

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idch.qos.logback
    Artifact Idlogback-access
    Current Version1.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.2.13 Latest Incremental
    1.3.0-alpha0
    1.3.0-alpha1
    1.3.0-alpha2
    1.3.0-alpha3
    1.3.0-alpha4
    1.3.0-alpha5
    1.3.0-alpha6
    1.3.0-alpha7
    1.3.0-alpha8
    1.3.0-alpha9
    1.3.0-alpha10
    1.3.0-alpha11
    1.3.0-alpha12
    1.3.0-alpha13
    1.3.0-alpha14
    1.3.0-alpha15
    1.3.0-alpha16
    1.3.0-beta0
    1.3.0
    1.3.1
    1.3.2
    1.3.3
    1.3.4
    1.3.5
    1.3.6
    1.3.7
    1.3.8
    1.3.9
    1.3.10
    1.3.11
    1.3.12
    1.3.13
    1.3.14
    1.4.0
    1.4.1
    1.4.2
    1.4.3
    1.4.4
    1.4.5
    1.4.6
    1.4.7
    1.4.8
    1.4.9
    1.4.10
    1.4.11
    1.4.12
    1.4.13
    1.4.14 Latest Minor
    +

    ch.qos.logback:logback-classic

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idch.qos.logback
    Artifact Idlogback-classic
    Current Version1.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.2.13 Latest Incremental
    1.3.0-alpha0
    1.3.0-alpha1
    1.3.0-alpha2
    1.3.0-alpha3
    1.3.0-alpha4
    1.3.0-alpha5
    1.3.0-alpha6
    1.3.0-alpha7
    1.3.0-alpha8
    1.3.0-alpha9
    1.3.0-alpha10
    1.3.0-alpha11
    1.3.0-alpha12
    1.3.0-alpha13
    1.3.0-alpha14
    1.3.0-alpha15
    1.3.0-alpha16
    1.3.0-beta0
    1.3.0
    1.3.1
    1.3.2
    1.3.3
    1.3.4
    1.3.5
    1.3.6
    1.3.7
    1.3.8
    1.3.9
    1.3.10
    1.3.11
    1.3.12
    1.3.13
    1.3.14
    1.4.0
    1.4.1
    1.4.2
    1.4.3
    1.4.4
    1.4.5
    1.4.6
    1.4.7
    1.4.8
    1.4.9
    1.4.10
    1.4.11
    1.4.12
    1.4.13
    1.4.14 Latest Minor
    +

    ch.qos.logback:logback-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idch.qos.logback
    Artifact Idlogback-core
    Current Version1.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.2.13 Latest Incremental
    1.3.0-alpha0
    1.3.0-alpha1
    1.3.0-alpha2
    1.3.0-alpha3
    1.3.0-alpha4
    1.3.0-alpha5
    1.3.0-alpha6
    1.3.0-alpha7
    1.3.0-alpha8
    1.3.0-alpha9
    1.3.0-alpha10
    1.3.0-alpha11
    1.3.0-alpha12
    1.3.0-alpha13
    1.3.0-alpha14
    1.3.0-alpha15
    1.3.0-alpha16
    1.3.0-beta0
    1.3.0
    1.3.1
    1.3.2
    1.3.3
    1.3.4
    1.3.5
    1.3.6
    1.3.7
    1.3.8
    1.3.9
    1.3.10
    1.3.11
    1.3.12
    1.3.13
    1.3.14
    1.4.0
    1.4.1
    1.4.2
    1.4.3
    1.4.4
    1.4.5
    1.4.6
    1.4.7
    1.4.8
    1.4.9
    1.4.10
    1.4.11
    1.4.12
    1.4.13
    1.4.14 Latest Minor
    +

    com.atomikos:transactions-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.atomikos
    Artifact Idtransactions-jdbc
    Current Version4.0.6
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    6.0.0M1
    6.0.0M2
    6.0.0 Latest Major
    +

    com.atomikos:transactions-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.atomikos
    Artifact Idtransactions-jms
    Current Version4.0.6
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    6.0.0M1
    6.0.0M2
    6.0.0 Latest Major
    +

    com.atomikos:transactions-jta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.atomikos
    Artifact Idtransactions-jta
    Current Version4.0.6
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    6.0.0M1
    6.0.0M2
    6.0.0 Latest Major
    +

    com.couchbase.client:java-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.couchbase.client
    Artifact Idjava-client
    Current Version3.3.4
    Scope
    Classifier
    Typejar
    Newer versions3.4.0
    3.4.1
    3.4.2
    3.4.3
    3.4.4
    3.4.5
    3.4.6
    3.4.7
    3.4.8
    3.4.9
    3.4.10
    3.4.11
    3.5.0
    3.5.1
    3.5.2
    3.5.3 Latest Minor
    +

    com.datastax.oss:java-driver-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-core
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-core-shaded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-core-shaded
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-mapper-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-mapper-processor
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-mapper-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-mapper-runtime
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-metrics-micrometer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-metrics-micrometer
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-metrics-microprofile

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-metrics-microprofile
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-query-builder

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-query-builder
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-shaded-guava

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-shaded-guava
    Current Version25.1-jre-graal-sub-1
    Scope
    Classifier
    Typejar
    +

    com.datastax.oss:java-driver-test-infra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-test-infra
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:native-protocol

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.datastax.oss
    Artifact Idnative-protocol
    Current Version1.5.1
    Scope
    Classifier
    Typejar
    +

    com.fasterxml:classmate

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml
    Artifact Idclassmate
    Current Version1.5.1
    Scope
    Classifier
    Typejar
    Newer versions1.6.0
    1.7.0 Latest Minor
    +

    com.fasterxml.jackson.core:jackson-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.core
    Artifact Idjackson-annotations
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.core:jackson-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.core
    Artifact Idjackson-core
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.core:jackson-databind

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.core
    Artifact Idjackson-databind
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-avro

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-avro
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-cbor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-cbor
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-csv

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-csv
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-ion

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-ion
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-properties

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-properties
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-protobuf
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-smile

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-smile
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-toml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-toml
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-xml
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-yaml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-yaml
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-eclipse-collections

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-eclipse-collections
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-guava
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hibernate4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hibernate4
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hibernate5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hibernate5
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hibernate5-jakarta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hibernate5-jakarta
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hppc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hppc
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jakarta-jsonp
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jaxrs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jaxrs
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jdk8
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-joda

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-joda
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-joda-money

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-joda-money
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-json-org

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-json-org
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jsr310

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jsr310
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jsr353

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jsr353
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-pcollections

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-pcollections
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-base
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-cbor-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-cbor-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-json-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-smile-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-smile-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-xml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-xml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-yaml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-yaml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-base

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-base
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-cbor-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-json-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-smile-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-xml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-yaml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-all

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-all
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-annotation-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-annotation-support
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-objects

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-objects
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-retrofit2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-retrofit2
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-stree

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-stree
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-afterburner

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-afterburner
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-blackbird

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-blackbird
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-guice

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-guice
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-jakarta-xmlbind-annotations
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-jaxb-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-jaxb-annotations
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-jsonSchema

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-jsonSchema
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-kotlin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-kotlin
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-mrbean

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-mrbean
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-no-ctor-deser

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-no-ctor-deser
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-osgi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-osgi
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-parameter-names

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-parameter-names
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-paranamer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-paranamer
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_2.11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_2.11
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_2.12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_2.12
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_2.13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_2.13
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_3
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.github.ben-manes.caffeine:caffeine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idcaffeine
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.ben-manes.caffeine:guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idguava
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.ben-manes.caffeine:jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idjcache
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.ben-manes.caffeine:simulator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idsimulator
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.mxab.thymeleaf.extras
    Artifact Idthymeleaf-extras-data-attribute
    Current Version2.0.1
    Scope
    Classifier
    Typejar
    +

    com.google.appengine:appengine-api-1.0-sdk

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.google.appengine
    Artifact Idappengine-api-1.0-sdk
    Current Version1.9.98
    Scope
    Classifier
    Typejar
    Newer versions2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.0.13
    2.0.14
    2.0.15
    2.0.16
    2.0.17
    2.0.19
    2.0.20
    2.0.21
    2.0.22
    2.0.23
    2.0.24 Latest Major
    +

    com.google.code.gson:gson

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.google.code.gson
    Artifact Idgson
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    Newer versions2.10
    2.10.1 Latest Minor
    +

    com.graphql-java:graphql-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.graphql-java
    Artifact Idgraphql-java
    Current Version18.5
    Scope
    Classifier
    Typejar
    Newer versions18.6
    18.7 Latest Minor
    19.0
    19.1
    19.2
    19.3
    19.4
    19.5
    19.6
    19.7
    19.8
    19.9
    20.0
    20.1
    20.2
    20.3
    20.4
    20.5
    20.6
    20.7
    21.0
    21.1
    21.2
    21.3
    2018-06-04T04-23-07
    2018-06-04T04-37-12
    2018-06-04T05-35-18-e5b324e
    2018-06-04T06-08-37-e5b324e
    2018-06-04T06-12-10-9e01eaa
    2018-06-04T06-18-26-
    2018-06-04T06-32-44-
    2018-06-04T06-49-40-474b470
    2018-06-04T11-42-58-352f0df
    2018-06-04T21-54-46-f3ede8b
    2018-06-04T22-33-28-a93fe6a
    2018-06-04T22-49-40-ad9c92a
    2018-06-05T00-30-43-5e542a9
    2018-06-05T05-02-26-ca6f7fa
    2018-06-12T07-15-39-50a2a13
    2018-06-13T01-43-44-50a2a13
    2018-06-16T10-13-54-f3af483
    2018-06-19T22-08-22-7270438
    2018-06-20T08-24-34-aa92267
    2018-06-21T06-20-30-6984d3b
    2018-06-24T21-45-32-a683b9e
    2018-06-25T00-43-57-d087b4a
    2018-06-25T02-16-07-639aff3
    2018-06-27T00-18-28-1e12da9
    2018-07-04T08-09-58-795c232
    2018-07-11T08-11-14-394ca2a
    2018-07-12T05-33-47-67d6257
    2018-07-12T11-44-24-8d02fc7
    2018-07-13T04-59-30-f72244a
    2018-07-27T07-38-22-2fe7914
    2018-07-27T07-39-10-901db94
    2018-07-27T10-32-58-4d45311
    2018-07-27T10-57-25-ad87047
    2018-07-27T12-45-31-5b44eff
    2018-07-28T00-19-13-5ea18ff
    2018-07-30T00-23-12-bfee885
    2018-07-30T07-03-52-6e1bc02
    2018-08-01T04-10-44-b8b248a
    2018-08-07T03-17-17-653d67f
    2018-08-07T03-26-20-3b4957b
    2018-08-07T05-26-11-b835941
    2018-08-07T05-28-06-4c0c33a
    2018-08-14T07-47-58-fd2454f
    2018-08-16T09-47-33-00a720f
    2018-08-20T08-16-01-b66eade
    2018-08-20T08-17-20-0deb127
    2018-08-20T08-17-43-df4775c
    2018-08-20T09-22-08-f02ee24
    2018-08-20T10-18-26-0adc5f8
    2018-08-23T21-16-30-141b8e4
    2018-08-28T23-42-26-f2f4b1f
    2018-08-28T23-42-56-5c7b9ef
    2018-08-28T23-43-42-d049882
    2018-08-29T06-42-12-24db46a
    2018-08-29T21-42-21-9ed2843
    2018-08-30T23-23-01-6c72aaf
    2018-08-30T23-23-36-0b5f286
    2018-09-03T01-10-42-4485074
    2018-09-08T05-14-26-03482af
    2018-09-08T07-01-35-b55f8a5
    2018-09-09T01-51-54-4c5aca5
    2018-09-12T11-52-41-a96e963
    2018-09-13T04-39-06-fdefa43
    2018-09-13T04-41-01-179fb2e
    2018-09-13T21-08-39-094ff85
    2018-09-13T21-13-06-e45bea8
    2018-09-16T01-27-46-27a6e44
    2018-09-16T01-27-54-eef571c
    2018-09-17T07-40-50-27a6e44
    2018-09-17T07-41-05-efbcf37
    2018-09-17T23-03-05-4363a82
    2018-09-18T21-31-05-de360a0
    2018-09-18T21-34-59-8a5fa0a
    2018-09-23T22-54-34-e6a97f6
    2018-09-27T10-23-49-6b14546
    2018-09-28T03-46-03-b031cfc
    2018-09-30T06-30-11-d526d04
    2018-10-02T04-01-30-af07d80
    2018-10-03T06-38-59-a46d462
    2018-10-03T07-03-19-80342b2
    2018-10-03T07-16-06-0d80418
    2018-10-08T21-25-58-ac9d5c6
    2018-10-09T07-07-16-78a6e4e
    2018-10-10T05-31-53-0466a3d
    2018-10-10T05-39-21-5cda03c
    2018-10-10T20-51-25-232373f
    2018-10-15T22-47-19-99aac04
    2018-10-16T04-11-52-46045a8
    2018-10-17T06-19-11-93e6150
    2018-10-17T09-47-16-c9ea5fc
    2018-10-17T23-50-56-d72f029
    2018-10-18T07-23-00-873bada
    2018-10-18T11-21-20-610a527
    2018-10-24T21-14-21-5e2c94f
    2018-10-24T21-16-55-25378bd
    2018-10-29T04-08-41-1f24856
    2018-10-31T23-42-59-ec9e3af
    2018-11-02T07-27-33-d0923be
    2018-11-03T12-19-57-9a2d4e9
    2018-11-04T23-23-23-129abec
    2018-11-05T04-59-34-c74b23e
    2018-11-05T23-39-38-cfc12d8
    2018-11-06T00-25-39-b0c4c3a
    2018-11-06T00-28-15-ec46cb6
    2018-11-07T03-10-42-5f13464
    2018-11-10T08-58-30-1e95abd
    2018-11-10T09-39-09-1f6095c
    2018-11-11T09-23-20-3dcabef
    2018-11-12T02-07-25-6ddb87f
    2018-11-15T21-34-13-6aa96be-ignored-chars
    2018-11-15T21-34-14-7110576-ignored-chars
    2018-11-16T06-01-41-51c05da-ignored-chars
    2018-11-16T06-01-54-efdaa48-ignored-chars
    2018-11-23T05-36-03-4ec08db
    2018-11-23T06-25-41-8885cd7
    2018-11-23T06-31-20-93e0f57
    2018-11-25T22-27-06-516a0c0
    2018-11-27T19-56-11-4dc1e0c
    2018-11-28T07-49-46-b808a72
    2018-11-28T08-13-20-3ada93e
    2018-12-01T05-52-33-9ba3c0e
    2018-12-02T00-31-14-9340660
    2018-12-02T00-56-57-305860d
    2018-12-02T00-57-27-28e493d
    2018-12-02T06-51-22-11cfd04
    2018-12-02T22-14-34-9e39066
    2018-12-03T06-08-55-17933ec
    2018-12-03T21-48-15-b292ab6
    2018-12-05T06-30-06-08a8613
    2018-12-07T11-12-28-9a3c8e8
    2018-12-12T01-03-50-8c7555b
    2018-12-15T05-16-49-88447e1
    2018-12-15T05-18-06-44627e4
    2018-12-20T04-16-45-68c7660
    2018-12-20T04-30-44-18a4425
    2018-12-20T04-32-18-c1600b6
    2018-12-20T05-49-26-50fe7e0
    2018-12-20T08-18-59-8e766d1
    2018-12-21T20-58-21-f24510d
    2018-12-21T21-00-05-9a6abf2
    2018-12-27T23-19-05-67fa4d9
    2018-12-28T20-03-39-0d707e9
    2018-12-29T10-59-26-1c3efb3
    2018-12-29T11-23-37-f0927ca
    2018-12-29T11-25-17-1648f54
    2018-12-29T11-37-31-7b494d1
    2018-12-29T18-59-16-f40ec83
    2018-12-29T20-24-09-8cc00d2
    2018-12-29T21-18-13-65a2c1d
    2018-12-29T21-26-21-e889103
    2018-12-29T22-10-43-33fcbc9
    2018-12-29T22-19-16-b85e315
    2018-12-29T22-55-27-8229b75
    2018-12-30T04-49-43-b422b88
    2019-01-01T05-12-10-d7fdfed
    2019-01-01T05-14-41-147d2be
    2019-01-02T07-00-24-b2bcb40
    2019-01-03T03-56-42-93f1c2f
    2019-01-03T22-57-19-e75b425
    2019-01-04T02-53-37-38a8606
    2019-01-04T03-07-40-a61f4ee
    2019-01-08T03-54-43-27471f7
    2019-01-08T05-36-31-8aaada8
    2019-01-08T05-54-26-5ecf32d
    2019-01-09T03-01-00-2790caa
    2019-01-10T02-59-04-828bf5c
    2019-01-10T22-02-11-9d62329
    2019-01-10T23-02-15-e7b431a
    2019-01-13T21-59-35-d037062
    2019-01-14T04-17-45-64a3c82
    2019-01-14T06-41-16-ead6ec2
    2019-01-14T07-14-22-fb0fa63
    2019-01-14T22-57-55-82be22b
    2019-01-15T02-21-27-1dfebed
    2019-01-15T23-05-22-e916b02
    2019-01-17T02-23-57-ecf8a08
    2019-01-18T05-18-40-0f5a890
    2019-01-18T07-01-10-c4bcd3a
    2019-01-22T00-33-57-c967dac
    2019-01-22T01-01-11-41d67d7
    2019-01-29T03-32-34-3d271c3
    2019-01-30T23-39-33-803f5cb
    2019-01-31T22-07-02-5a8b1fd
    2019-01-31T22-16-02-fc21117
    2019-01-31T22-31-13-065791a
    2019-01-31T22-35-43-b807e80
    2019-02-06T00-46-18-1ce5113
    2019-02-06T23-32-55-d73dacf
    2019-02-06T23-38-59-5f8c5bd
    2019-02-07T02-30-53-e310dc3
    2019-02-13T17-42-01-858250e
    2019-02-15T22-43-48-1231dde
    2019-02-18T02-52-52-13eb79a
    2019-02-20T00-59-31-9356c3d
    2019-02-28T01-17-35-b2cc1c2
    2019-03-05T02-16-05-6df6640
    2019-03-05T02-23-47-f40315b
    2019-03-07T03-51-32-45bf5af
    2019-03-07T04-21-43-cf62a7a
    2019-03-07T04-34-55-809a980
    2019-03-10T22-41-06-9808185
    2019-03-11T03-25-33-b3c91e8
    2019-03-11T03-25-55-fc95640
    2019-03-11T03-56-07-7f6f32b
    2019-03-11T03-58-13-4123998
    2019-03-11T04-12-00-65dea85
    2019-03-11T22-39-51-03dc939
    2019-03-11T22-40-03-cf1e838
    2019-03-11T22-42-37-93b7b58
    2019-03-11T22-46-27-52a7b6e
    2019-03-12T01-04-49-36b1c03
    2019-03-13T23-23-44-ef9d07d
    2019-03-14T00-26-07-5568795
    2019-03-14T03-40-10-806cfe7
    2019-03-15T01-33-39-648b896
    2019-03-15T01-33-47-61d57a62
    2019-03-15T05-03-21-75fb184
    2019-03-15T05-03-30-4d2c0d53
    2019-03-15T05-09-19-cbcee57
    2019-03-15T05-09-35-519fb887
    2019-03-15T05-33-44-d008832
    2019-03-19T00-28-22-88ffeb5
    2019-03-19T00-30-59-070c3a0
    2019-03-20T02-17-59-e1e7997
    2019-03-20T05-29-23-55f1989
    2019-03-20T05-29-55-cdd0cbc
    2019-03-22T02-07-23-a35079e
    2019-03-22T05-12-51-10376ba
    2019-03-25T02-33-40-0759b8d
    2019-03-25T23-57-28-8ba2d1d
    2019-04-03T06-16-20-800ea0d
    2019-04-08T02-06-59-636f7b5
    2019-04-08T08-27-21-a8a273f
    2019-04-09T05-25-48-8bae13f
    2019-04-09T05-29-53-bd9240c
    2019-04-30T06-16-13-21dff06
    2019-04-30T09-15-46-9214b60
    2019-05-01T03-50-43-fccc0c7
    2019-05-08T00-35-46-439e342
    2019-05-08T02-44-45-b370703
    2019-05-08T02-56-27-cca4316
    2019-05-14T05-01-24-4fd3721
    2019-05-14T05-11-27-400d008
    2019-05-15T02-49-32-f210154
    2019-05-20T06-48-36-6211b41
    2019-05-27T00-36-13-3a76c4a
    2019-05-27T04-13-44-5373f96
    2019-06-02T22-40-24-fcf767d
    2019-06-02T22-45-30-ca06d0e
    2019-06-02T22-56-37-9a61bfe
    2019-06-02T22-59-08-c73f438
    2019-06-03T06-53-20-dca93a9
    2019-06-07T06-51-35-dbd4e5c
    2019-06-11T03-20-45-0a2bd30
    2019-06-11T23-47-53-e00b023
    2019-06-12T00-11-29-b63be73
    2019-06-12T00-15-04-812b16c
    2019-06-12T00-38-53-8b078c6
    2019-06-12T00-39-55-a79e385
    2019-06-12T01-22-00-6020f87
    2019-06-12T01-25-50-0fec4be
    2019-06-12T01-37-10-19c6d0e
    2019-06-12T01-52-32-821241d
    2019-06-12T02-31-14-25c8232
    2019-06-12T04-51-56-e994f41
    2019-06-30T23-27-16-d762310
    2019-07-01T00-55-49-7d393f2
    2019-07-13T23-07-14-8c71e18
    2019-07-15T04-01-33-505aa81
    2019-07-15T07-36-13-5761d24
    2019-07-16T03-12-18-3cbc1ad
    2019-07-22T04-16-08-a7fbf74
    2019-07-22T04-17-57-f8658f2
    2019-07-22T04-25-03-527c587
    2019-07-24T03-34-24-2e1e989
    2019-07-31T05-09-08-4cadb88
    2019-07-31T05-58-03-755f534
    2019-08-01T04-03-44-e9b53f6
    2019-08-02T04-53-20-6063e7e
    2019-08-05T08-05-20-1a9005b
    2019-08-05T23-30-46-c454ba2
    2019-08-12T01-44-36-bf793cd
    2019-08-19T04-09-16-346d65a
    2019-08-20T01-08-54-018b57c
    2019-08-21T00-49-42-2e990d1
    2019-08-21T21-45-38-376b03f
    2019-08-22T10-09-42-a6c4461
    2019-08-22T10-31-28-7ab93b9
    2019-08-22T10-35-04-37f3ae0
    2019-08-22T10-39-43-a6c4461
    2019-08-27T06-31-52-a897adc
    2019-08-28T11-47-05-b9487a9
    2019-09-03T10-51-46-6c01c80
    2019-09-03T10-52-49-bfb284b
    2019-09-07T05-58-28-e5a610f
    2019-09-07T08-04-35-735ce06
    2019-09-07T08-05-59-ac5bc70
    2019-09-07T08-08-53-173312e
    2019-09-19T04-42-21-1ea2ed2
    2019-09-19T06-25-59-5c242a1
    2019-09-22T22-20-34-9e83320
    2019-10-08T22-47-44-e938ab4
    2019-10-16T01-41-26-24f5233
    2019-10-20T21-46-20-a0a5d63
    2019-10-20T22-57-19-d6296e0
    2019-10-21T00-35-45-a74776c
    2019-10-24T23-50-27-97bffda
    2019-10-25T04-33-32-40db9de
    2019-10-25T08-51-57-a634053
    2019-10-31T04-37-48-0919e71
    2019-11-06T22-52-38-81c2a0f
    2019-11-07T04-06-09-70d9412
    2019-11-19T08-52-32-b46beb9
    2019-12-09T21-46-06-1b79628
    2019-12-09T21-46-27-74aed1a
    2019-12-30T22-55-41-9417e85
    2019-12-30T23-36-38-9e904ca
    2019-12-31T02-25-35-a83995a
    2020-01-03T02-30-05-b8be7d1
    2020-01-03T02-30-51-fb97f3e
    2020-01-05T23-01-12-2ba4a8b
    2020-01-08T08-53-38-a2dcfd6
    2020-01-09T05-33-37-df2835b
    2020-01-13T02-25-12-b623055
    2020-01-13T03-23-46-bcdc138
    2020-01-13T03-38-11-52de81a
    2020-01-13T06-33-52-50c242d
    2020-01-14T00-59-12-593322d
    2020-01-14T02-17-18-b5692e4
    2020-01-14T02-57-52-8fe5e53
    2020-01-14T02-58-58-f430282
    2020-01-14T05-48-31-952f075
    2020-01-14T06-42-43-bef3ac2
    2020-01-14T06-45-04-f40e454
    2020-01-14T23-35-06-d42516c
    2020-01-16T00-18-31-4cf3bdd
    2020-01-16T01-18-01-fd13faf
    2020-01-16T23-47-31-4533d01
    2020-01-16T23-48-44-eb6755b
    2020-01-16T23-58-55-fd9ce3a
    2020-01-17T00-14-43-8a58c25
    2020-01-17T00-41-05-5d4d25f
    2020-01-17T00-44-53-21cdd1d
    2020-01-17T00-46-52-8b78178
    2020-01-17T02-41-10-578985f
    2020-01-24T03-11-44-8a5fe91
    2020-01-29T00-34-54-44d9c56
    2020-01-29T23-51-37-f82b53c
    2020-02-03T01-49-24-d4f9b63
    2020-02-04T03-00-21-0a40ca4
    2020-02-06T00-24-40-5b511b8
    2020-02-09T23-23-33-8f335b3
    2020-02-10T04-57-01-e33c252
    2020-02-10T23-53-32-cfd210b
    2020-02-12T22-54-17-101dc6c
    2020-02-29T00-26-15-cf90d4a
    2020-02-29T01-57-30-987fd78
    2020-04-01T09-48-46-c98ebf7
    2020-04-04T07-05-23-9eae9c1
    2020-04-29T07-25-05-1a7c11c
    2020-05-07T00-47-53-9f8cc8e
    2020-05-08T01-07-05-c8de10e
    2020-05-19T06-33-01-57ce5cf
    2020-05-19T23-15-09-be48433
    2020-05-19T23-56-49-f409b66
    2020-05-20T03-21-18-21d1479
    2020-05-20T06-07-21-2e391c1
    2020-05-20T06-36-40-2a443b4
    2020-05-20T06-55-13-453773f
    2020-05-20T07-22-07-0b49de6
    2020-05-20T23-03-10-d9d29d9
    2020-05-20T23-17-21-bbb92ac
    2020-05-20T23-42-54-8f4cd45
    2020-05-21T05-06-09-4e43ef7
    2020-05-21T05-19-49-bdc958e
    2020-05-21T05-21-25-427f493
    2020-05-21T05-53-50-341e22c
    2020-05-21T07-38-42-2acb557
    2020-05-21T08-33-51-0b611f2
    2020-05-21T10-50-06-0a18992
    2020-05-21T23-09-51-9eb260e
    2020-05-22T05-23-36-4fe702b
    2020-05-22T05-46-34-000eb52
    2020-05-24T06-42-08-c508ac3
    2020-05-25T00-16-35-ebd15e0
    2020-05-25T00-18-12-74b4855
    2020-05-26T01-36-28-7770701
    2020-05-26T04-31-46-81d3ce4
    2020-05-27T11-37-07-bb47f29
    2020-05-28T00-32-38-497d2ac
    2020-05-28T02-17-41-bc29b5f
    2020-05-28T05-56-25-f328040
    2020-05-29T04-10-05-3dfbf01
    2020-06-05T10-44-09-eff6106
    2020-06-07T01-00-15-98bb45a
    2020-06-07T01-08-08-a9f7932
    2020-06-07T01-09-40-d94eacc
    2020-06-16T23-03-22-403a837
    2020-06-19T06-05-35-10eeacc
    2020-06-22T08-53-48-3101f48
    2020-06-22T09-12-11-a0d327d
    2020-06-22T09-38-54-c40fc1d
    2020-06-29T07-38-53-4a0a7af
    2020-06-30T22-36-45-ce7fd42
    2020-07-03T00-47-06-d3032e7
    2020-07-03T01-10-37-bb87d8f
    2020-08-24T06-09-06-d3b6af0
    2020-08-25T03-42-48-443390b
    2020-08-25T04-35-08-bab2a91
    2020-08-25T04-49-03-31f3d3f
    2020-08-25T05-10-41-2ed520e
    2020-08-25T06-42-13-d40046e
    2020-08-25T06-43-04-baeb392
    2020-08-25T06-43-52-1607bdf
    2020-08-25T07-30-29-fd556cc
    2020-08-25T07-31-26-c27a9cd
    2020-08-25T07-36-16-26a012c
    2020-08-25T07-38-57-05deb85
    2020-08-25T08-08-25-8b22a39
    2020-08-25T15-37-52-a7117f8
    2020-08-31T04-32-29-6a56b3a
    2020-09-08T04-55-10-f64f1cd
    2020-09-08T04-55-19-30e680b
    2020-09-08T04-56-12-5c5798e
    2020-09-08T04-56-57-be01c7f
    2020-09-08T04-57-53-264cb12
    2020-09-08T23-57-06-7ee7602
    2020-09-10T23-56-06-6f9b54d
    2020-09-10T23-59-03-dcdea33
    2020-09-13T08-18-38-7fc94c5
    2020-09-13T08-19-45-0d97d9d
    2020-09-13T08-20-40-c3c48a2
    2020-09-13T09-05-14-4b66774
    2020-09-14T23-02-53-a9151d3
    2020-09-14T23-03-24-5ebd3ac
    2020-09-14T23-04-32-61a78fe
    2020-09-17T10-31-42-09111ae
    2020-09-19T01-23-44-97a3073
    2020-09-19T01-24-58-592215d
    2020-09-21T10-25-11-af83f79
    2020-09-21T10-26-13-58daf97
    2020-09-23T01-42-02-53999d6
    2020-10-01T08-02-28-3998b0d
    2020-10-01T08-12-16-06593e2
    2020-10-01T08-12-52-24e4b17
    2020-10-01T08-13-33-6eb4df2
    2020-10-01T08-15-11-6cc1974
    2020-10-01T20-49-20-d2ca93c
    2020-10-01T21-02-05-1852cb7
    2020-10-01T21-06-37-558aeaa
    2020-10-06T07-50-37-7a8e903
    2020-10-09T06-02-11-8e55666
    2020-10-09T06-03-45-4a893b0
    2020-10-15T08-28-25-6af9785
    2020-10-16T05-33-59-df5bbde
    2020-10-20T00-43-22-34f34fe
    2020-10-20T01-20-15-2b4457c
    2020-10-21T10-06-46-49bbbeb
    2020-10-25T05-02-24-a39aec8
    2020-10-27T16-39-54-0de364a
    2020-10-27T17-35-04-0de364a
    2020-11-01T02-27-21-3295066
    2020-11-02T04-11-46-9ba7606
    2020-11-02T04-33-43-dd5d4d8
    2020-11-02T23-55-44-d576991
    2020-11-03T02-03-16-cf89ea3
    2020-11-04T22-40-01-afaa9aa
    2020-11-05T07-48-24-3dd5e02
    2020-11-10T10-26-00-07ca7ee
    2020-11-10T11-49-19-a1c123d
    2020-11-10T22-37-49-c801fd8
    2020-11-11T00-55-26-17f0e27
    2020-11-13T21-13-26-fb86ee6
    2020-11-16T00-00-07-ff3f691
    2020-11-16T00-02-27-3dfeae3
    2020-11-24T02-56-06-432d5f0
    2020-11-24T23-36-57-43668fb
    2020-11-28T08-02-26-b01df74
    2020-11-28T08-17-17-be8025f
    2020-12-09T22-35-43-9803c10
    2020-12-12T02-26-00-5e61bb3
    2020-12-13T07-30-15-d1a4c15
    2020-12-21T21-14-06-a12f84b
    2021-01-27T06-23-16-986ee60
    2021-01-29T11-36-47-b874235
    2021-01-30T04-10-11-59cd870
    2021-01-31T07-23-49-4d37858
    2021-02-02T00-45-04-fcce8632
    2021-02-02T01-21-59-55cccb55
    2021-02-02T01-28-37-13467897
    2021-02-02T01-34-58-8d747c1
    2021-02-02T01-35-37-3bae3c26
    2021-02-02T02-54-22-7c559d8d
    2021-02-02T02-59-50-70c1c921
    2021-02-02T03-06-53-a7c2d205
    2021-02-02T03-08-48-040823c2
    2021-02-02T03-45-35-79a57f67
    2021-02-02T03-49-01-6bf9674d
    2021-02-02T04-19-10-0e6921e1
    2021-02-06T05-29-55-33cd6e60
    2021-02-09T05-22-20-b645925f
    2021-02-10T08-16-57-4dbf45fd
    2021-02-13T02-14-19-a9de9cec
    2021-02-13T23-17-27-86627c27
    2021-02-17T06-17-55-6ffdd2d5
    2021-02-27T05-24-51-419acbb4
    2021-02-28T10-07-29-dbfb40d9
    2021-02-28T11-48-01-dc2cdda7
    2021-03-18T23-19-42-52ebe904
    2021-03-19T00-06-52-e166c255
    2021-03-19T01-12-05-a24cd52a
    2021-03-21T22-31-57-479b7a43
    2021-03-22T20-02-28-3a701a0f
    2021-03-25T09-33-46-e4c16ebb
    2021-03-25T21-09-07-5bc917f7
    2021-03-28T09-04-54-b1b364be
    2021-03-29T04-07-12-b98161f0
    2021-03-29T04-35-54-5e2ceda5
    2021-03-29T04-41-52-39ea068d
    2021-03-29T05-11-02-d63bb6b6
    2021-03-29T05-12-42-e5e8847b
    2021-03-29T05-13-32-fdea5cfc
    2021-03-29T21-50-33-a37cde2a
    2021-03-30T02-09-41-e91c8894
    2021-03-30T02-27-57-dbf4b18b
    2021-03-30T02-57-48-22314931
    2021-04-09T04-37-57-b510f5e6
    2021-04-11T23-40-30-f362d619
    2021-04-11T23-42-01-1d16e703
    2021-04-11T23-42-55-656f4e35
    2021-04-11T23-47-53-93cc5158
    2021-04-19T03-51-46-d783ec7e
    2021-04-27T02-21-11-eb3afc27
    2021-04-28T06-28-49-4d52fd0e
    2021-05-03T08-53-12-8f1ec444
    230521-nf-execution Latest Major
    +

    com.h2database:h2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.h2database
    Artifact Idh2
    Current Version2.1.214
    Scope
    Classifier
    Typejar
    Newer versions2.2.220
    2.2.222
    2.2.224 Latest Minor
    +

    com.hazelcast:hazelcast

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.hazelcast
    Artifact Idhazelcast
    Current Version5.1.7
    Scope
    Classifier
    Typejar
    Newer versions5.2-BETA-1
    5.2.0
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3.0-BETA-1
    5.3.0-BETA-2
    5.3.0
    5.3.1
    5.3.2
    5.3.4
    5.3.5
    5.3.6 Latest Minor
    +

    com.hazelcast:hazelcast-hibernate52

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.hazelcast
    Artifact Idhazelcast-hibernate52
    Current Version2.2.1
    Scope
    Classifier
    Typejar
    +

    com.hazelcast:hazelcast-hibernate53

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.hazelcast
    Artifact Idhazelcast-hibernate53
    Current Version2.2.1
    Scope
    Classifier
    Typejar
    Newer versions2.3.0 Latest Minor
    5.0.0
    5.1.0 Latest Major
    +

    com.hazelcast:hazelcast-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.hazelcast
    Artifact Idhazelcast-spring
    Current Version5.1.7
    Scope
    Classifier
    Typejar
    Newer versions5.2-BETA-1
    5.2.0
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3.0-BETA-1
    5.3.0-BETA-2
    5.3.0
    5.3.1
    5.3.2
    5.3.4
    5.3.5
    5.3.6 Latest Minor
    +

    com.ibm.db2:jcc

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.ibm.db2
    Artifact Idjcc
    Current Version11.5.9.0
    Scope
    Classifier
    Typejar
    +

    com.jayway.jsonpath:json-path

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.jayway.jsonpath
    Artifact Idjson-path
    Current Version2.7.0
    Scope
    Classifier
    Typejar
    Newer versions2.8.0
    2.9.0 Latest Minor
    +

    com.jayway.jsonpath:json-path-assert

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.jayway.jsonpath
    Artifact Idjson-path-assert
    Current Version2.7.0
    Scope
    Classifier
    Typejar
    Newer versions2.8.0
    2.9.0 Latest Minor
    +

    com.microsoft.sqlserver:mssql-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idcom.microsoft.sqlserver
    Artifact Idmssql-jdbc
    Current Version10.2.3.jre8
    Scope
    Classifier
    Typejar
    Newer versions10.2.3.jre11
    10.2.3.jre17 Latest Subincremental
    11.1.0-SNAPSHOT.jre8-preview
    11.1.0-SNAPSHOT.jre11-preview
    11.1.0-SNAPSHOT.jre17-preview
    11.1.0.jre8-preview
    11.1.0.jre11-preview
    11.1.0.jre17-preview
    11.1.1.jre8-preview
    11.1.1.jre11-preview
    11.1.1.jre17-preview
    11.1.1.jre18-preview
    11.1.2.jre8-preview
    11.1.2.jre11-preview
    11.1.2.jre17-preview
    11.1.2.jre18-preview
    11.2.0.jre8
    11.2.0.jre11
    11.2.0.jre17
    11.2.0.jre18
    11.2.1.jre8
    11.2.1.jre11
    11.2.1.jre17
    11.2.1.jre18
    11.2.2.jre8
    11.2.2.jre11
    11.2.2.jre17
    11.2.2.jre18
    11.2.3.jre8
    11.2.3.jre11
    11.2.3.jre17
    11.2.3.jre18
    12.1.0.jre8-preview
    12.1.0.jre11-preview
    12.2.0.jre8
    12.2.0.jre11
    12.3.0.jre8-preview
    12.3.0.jre11-preview
    12.3.0.jre17-preview
    12.3.0.jre20-preview
    12.3.1.jre8-preview
    12.3.1.jre11-preview
    12.4.0.jre8
    12.4.0.jre8-preview
    12.4.0.jre11
    12.4.0.jre11-preview
    12.4.1.jre8
    12.4.1.jre11
    12.4.2.jre8
    12.4.2.jre11
    12.5.0.jre8-preview
    12.5.0.jre11-preview
    12.6.0.jre8
    12.6.0.jre11 Latest Major
    +

    com.mysql:mysql-connector-j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.mysql
    Artifact Idmysql-connector-j
    Current Version8.0.33
    Scope
    Classifier
    Typejar
    Newer versions8.1.0
    8.2.0
    8.3.0 Latest Minor
    +

    com.oracle.database.ha:ons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.ha
    Artifact Idons
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.ha:simplefan

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.ha
    Artifact Idsimplefan
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc11
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc11-production

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc11-production
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc8
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc8-production

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc8-production
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:rsi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idrsi
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ucp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Iducp
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ucp11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Iducp11
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc.debug:ojdbc11-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc11-observability-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11-observability-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc11_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc11dms_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11dms_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8-observability-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8-observability-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8dms_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8dms_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.nls:orai18n

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.nls
    Artifact Idorai18n
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.observability:dms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Iddms
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.observability:ojdbc11-observability

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc11-observability
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.observability:ojdbc11dms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc11dms
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.observability:ojdbc8-observability

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc8-observability
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.observability:ojdbc8dms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc8dms
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.r2dbc:oracle-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.oracle.database.r2dbc
    Artifact Idoracle-r2dbc
    Current Version0.4.0
    Scope
    Classifier
    Typejar
    Newer versions1.0.0
    1.1.0
    1.1.1
    1.2.0 Latest Major
    +

    com.oracle.database.security:oraclepki

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.security
    Artifact Idoraclepki
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.security:osdt_cert

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.security
    Artifact Idosdt_cert
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.security:osdt_core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.security
    Artifact Idosdt_core
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.xml:xdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.xml
    Artifact Idxdb
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.xml:xmlparserv2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.xml
    Artifact Idxmlparserv2
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.querydsl:querydsl-apt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-apt
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-codegen-utils

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.querydsl
    Artifact Idquerydsl-codegen-utils
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    +

    com.querydsl:querydsl-collections

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-collections
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-core
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-guava
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-hibernate-search

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-hibernate-search
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-jdo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-jdo
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-jpa
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-jpa-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-jpa-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-kotlin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-kotlin
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-kotlin-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-kotlin-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-lucene3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-lucene3
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-lucene4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-lucene4
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-lucene5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-lucene5
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-mongodb
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-scala

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-scala
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-spatial

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-spatial
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql-spatial

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql-spatial
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql-spring
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.rabbitmq:amqp-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.rabbitmq
    Artifact Idamqp-client
    Current Version5.14.3
    Scope
    Classifier
    Typejar
    Newer versions5.15.0
    5.16.0
    5.16.1
    5.17.0
    5.17.1
    5.18.0
    5.19.0
    5.20.0 Latest Minor
    +

    com.rabbitmq:stream-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.rabbitmq
    Artifact Idstream-client
    Current Version0.5.0
    Scope
    Classifier
    Typejar
    Newer versions0.6.0
    0.7.0
    0.8.0
    0.9.0
    0.10.0
    0.11.0
    0.12.0
    0.13.0
    0.14.0
    0.15.0 Latest Minor
    +

    com.samskivert:jmustache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.samskivert
    Artifact Idjmustache
    Current Version1.15
    Scope
    Classifier
    Typejar
    Newer versions1.16 Latest Minor
    +

    com.sendgrid:sendgrid-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.sendgrid
    Artifact Idsendgrid-java
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0
    4.10.1 Latest Minor
    +

    com.squareup.okhttp3:logging-interceptor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idlogging-interceptor
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:mockwebserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idmockwebserver
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okcurl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokcurl
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-brotli

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-brotli
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-dnsoverhttps

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-dnsoverhttps
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-sse

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-sse
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-tls

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-tls
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-urlconnection

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-urlconnection
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.sun.activation:jakarta.activation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.sun.activation
    Artifact Idjakarta.activation
    Current Version1.2.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-rc1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1 Latest Major
    +

    com.sun.mail:jakarta.mail

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.sun.mail
    Artifact Idjakarta.mail
    Current Version1.6.7
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0-RC4
    2.0.0-RC5
    2.0.0-RC6
    2.0.0
    2.0.1 Latest Major
    +

    com.sun.xml.messaging.saaj:saaj-impl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.sun.xml.messaging.saaj
    Artifact Idsaaj-impl
    Current Version1.5.3
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0
    2.0.1
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    com.unboundid:unboundid-ldapsdk

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idcom.unboundid
    Artifact Idunboundid-ldapsdk
    Current Version6.0.10
    Scope
    Classifier
    Typejar
    Newer versions6.0.11 Latest Incremental
    +

    com.zaxxer:HikariCP

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.zaxxer
    Artifact IdHikariCP
    Current Version4.0.3
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0 Latest Major
    +

    commons-codec:commons-codec

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcommons-codec
    Artifact Idcommons-codec
    Current Version1.15
    Scope
    Classifier
    Typejar
    Newer versions1.16.0
    1.16.1 Latest Minor
    +

    commons-pool:commons-pool

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcommons-pool
    Artifact Idcommons-pool
    Current Version1.6
    Scope
    Classifier
    Typejar
    +

    de.flapdoodle.embed:de.flapdoodle.embed.mongo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idde.flapdoodle.embed
    Artifact Idde.flapdoodle.embed.mongo
    Current Version3.4.11
    Scope
    Classifier
    Typejar
    Newer versions3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4 Latest Minor
    4.0.0-beta
    4.0.1-beta
    4.0.2-beta
    4.0.3-beta
    4.0.4-beta
    4.0.5-beta
    4.0.6-beta
    4.0.7-beta
    4.0.8-beta
    4.0.9-beta
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.2.0
    4.3.0
    4.3.1
    4.3.2
    4.3.3
    4.4.0
    4.4.1
    4.5.0
    4.5.1
    4.6.0
    4.6.1
    4.6.2
    4.6.3
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.9.0
    4.9.1
    4.9.2
    4.9.3
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1
    4.12.0
    4.12.1
    4.12.2 Latest Major
    +

    io.dropwizard.metrics:metrics-annotation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-annotation
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-caffeine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-caffeine
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-caffeine3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-caffeine3
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-collectd

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-collectd
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-core
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-ehcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-ehcache
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-graphite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-graphite
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-healthchecks

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-healthchecks
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-httpasyncclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-httpasyncclient
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-httpclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-httpclient
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-httpclient5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-httpclient5
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jakarta-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jakarta-servlet
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jakarta-servlet6

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jakarta-servlet6
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jakarta-servlets

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jakarta-servlets
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jcache
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jdbi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jdbi
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jdbi3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jdbi3
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jersey2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jersey2
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jersey3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jersey3
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jersey31

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jersey31
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty10

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty10
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty11
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty12
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty12-ee10

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty12-ee10
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty9

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty9
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jmx
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-json
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jvm
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-log4j2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-log4j2
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-logback

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-logback
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-logback13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-logback13
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-logback14

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-logback14
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-servlet
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-servlets

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-servlets
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.lettuce:lettuce-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.lettuce
    Artifact Idlettuce-core
    Current Version6.1.10.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions6.2.0.RELEASE
    6.2.1.RELEASE
    6.2.2.RELEASE
    6.2.3.RELEASE
    6.2.4.RELEASE
    6.2.5.RELEASE
    6.2.6.RELEASE
    6.2.7.RELEASE
    6.3.0.RELEASE
    6.3.1.RELEASE Latest Minor
    +

    io.micrometer:micrometer-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-core
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-appoptics

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-appoptics
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-atlas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-atlas
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-azure-monitor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-azure-monitor
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-cloudwatch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-cloudwatch
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-cloudwatch2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-cloudwatch2
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-datadog

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-datadog
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-dynatrace

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-dynatrace
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-elastic

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-elastic
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-ganglia

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-ganglia
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-graphite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-graphite
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-health

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-health
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-humio

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-humio
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-influx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-influx
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-jmx
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-kairos

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-kairos
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-new-relic

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-new-relic
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-opentsdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-opentsdb
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-otlp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-otlp
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-prometheus

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-prometheus
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-signalfx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-signalfx
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-stackdriver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-stackdriver
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-statsd

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-statsd
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-wavefront

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-wavefront
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-test
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.netty:netty-all

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-all
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-buffer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-buffer
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-dns

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-dns
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-haproxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-haproxy
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-http
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-http2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-http2
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-memcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-memcache
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-mqtt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-mqtt
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-redis
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-codec-smtp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-smtp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-codec-socks

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-socks
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-stomp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-stomp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-xml
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-common
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-dev-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-dev-tools
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-example

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-example
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-handler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-handler
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-handler-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-handler-proxy
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-handler-ssl-ocsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-handler-ssl-ocsp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-resolver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-resolver-dns

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver-dns
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-resolver-dns-classes-macos

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver-dns-classes-macos
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-resolver-dns-native-macos

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver-dns-native-macos
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-tcnative

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-tcnative
    Current Version2.0.61.Final
    Scope
    Classifierlinux-x86_64
    Typejar
    Newer versions2.0.62.Final Latest Incremental
    +

    io.netty:netty-tcnative-boringssl-static

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-tcnative-boringssl-static
    Current Version2.0.61.Final
    Scope
    Classifier
    Typejar
    Newer versions2.0.62.Final Latest Incremental
    +

    io.netty:netty-tcnative-classes

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-tcnative-classes
    Current Version2.0.61.Final
    Scope
    Classifier
    Typejar
    Newer versions2.0.62.Final Latest Incremental
    +

    io.netty:netty-transport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-classes-epoll

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-classes-epoll
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-classes-kqueue

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-classes-kqueue
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-native-epoll

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-native-epoll
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-native-kqueue

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-native-kqueue
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-native-unix-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-native-unix-common
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-rxtx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-rxtx
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-sctp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-sctp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-udt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-udt
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.projectreactor:reactor-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor
    Artifact Idreactor-core
    Current Version3.4.34
    Scope
    Classifier
    Typejar
    Newer versions3.4.35 Latest Incremental
    3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4
    3.5.5
    3.5.6
    3.5.7
    3.5.8
    3.5.9
    3.5.10
    3.5.11
    3.5.12
    3.5.13
    3.5.14
    3.6.0-M1
    3.6.0-M2
    3.6.0-M3
    3.6.0-RC1
    3.6.0
    3.6.1
    3.6.2 Latest Minor
    +

    io.projectreactor:reactor-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor
    Artifact Idreactor-test
    Current Version3.4.34
    Scope
    Classifier
    Typejar
    Newer versions3.4.35 Latest Incremental
    3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4
    3.5.5
    3.5.6
    3.5.7
    3.5.8
    3.5.9
    3.5.10
    3.5.11
    3.5.12
    3.5.13
    3.5.14
    3.6.0-M1
    3.6.0-M2
    3.6.0-M3
    3.6.0-RC1
    3.6.0
    3.6.1
    3.6.2 Latest Minor
    +

    io.projectreactor:reactor-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor
    Artifact Idreactor-tools
    Current Version3.4.34
    Scope
    Classifier
    Typejar
    Newer versions3.4.35 Latest Incremental
    3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4
    3.5.5
    3.5.6
    3.5.7
    3.5.8
    3.5.9
    3.5.10
    3.5.11
    3.5.12
    3.5.13
    3.5.14
    3.6.0-M1
    3.6.0-M2
    3.6.0-M3
    3.6.0-RC1
    3.6.0
    3.6.1
    3.6.2 Latest Minor
    +

    io.projectreactor.addons:reactor-adapter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.projectreactor.addons
    Artifact Idreactor-adapter
    Current Version3.4.10
    Scope
    Classifier
    Typejar
    Newer versions3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1 Latest Minor
    +

    io.projectreactor.addons:reactor-extra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.projectreactor.addons
    Artifact Idreactor-extra
    Current Version3.4.10
    Scope
    Classifier
    Typejar
    Newer versions3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1 Latest Minor
    +

    io.projectreactor.addons:reactor-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.projectreactor.addons
    Artifact Idreactor-pool
    Current Version0.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.0.0-M1
    1.0.0-M3
    1.0.0-M4
    1.0.0-M5
    1.0.0-M6
    1.0.0-RC1
    1.0.0
    1.0.1
    1.0.2
    1.0.3
    1.0.4
    1.0.5 Latest Major
    +

    io.projectreactor.kafka:reactor-kafka

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.projectreactor.kafka
    Artifact Idreactor-kafka
    Current Version1.3.22
    Scope
    Classifier
    Typejar
    +

    io.projectreactor.kotlin:reactor-kotlin-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.projectreactor.kotlin
    Artifact Idreactor-kotlin-extensions
    Current Version1.1.10
    Scope
    Classifier
    Typejar
    Newer versions1.2.0-M1
    1.2.0-M3
    1.2.0-M4
    1.2.0-M5
    1.2.0-M6
    1.2.0-RC1
    1.2.0
    1.2.1
    1.2.2 Latest Minor
    +

    io.projectreactor.netty:reactor-netty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.netty:reactor-netty-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty-core
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.netty:reactor-netty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty-http
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.netty:reactor-netty-http-brave

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty-http-brave
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.rabbitmq:reactor-rabbitmq

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.projectreactor.rabbitmq
    Artifact Idreactor-rabbitmq
    Current Version1.5.6
    Scope
    Classifier
    Typejar
    +

    io.prometheus:simpleclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_caffeine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_caffeine
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_common
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_dropwizard

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_dropwizard
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_graphite_bridge

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_graphite_bridge
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_guava
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_hibernate

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_hibernate
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_hotspot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_hotspot
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_httpserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_httpserver
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_jetty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_jetty
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_jetty_jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_jetty_jdk8
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_log4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_log4j
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_log4j2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_log4j2
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_logback

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_logback
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_pushgateway

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_pushgateway
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_servlet
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_servlet_jakarta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_servlet_jakarta
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_spring_boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_spring_boot
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_spring_web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_spring_web
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_tracer_otel

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_tracer_otel
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_tracer_otel_agent

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_tracer_otel_agent
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_vertx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_vertx
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.r2dbc:r2dbc-h2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-h2
    Current Version0.9.1.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.M6
    1.0.0.M7
    1.0.0.RC1
    1.0.0.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-mssql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idio.r2dbc
    Artifact Idr2dbc-mssql
    Current Version0.9.0.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions0.9.0.SONATYPE-M4 Latest Subincremental
    1.0.0.M6
    1.0.0.M7
    1.0.0.RC1
    1.0.0.RELEASE
    1.0.1.RELEASE
    1.0.2.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-pool
    Current Version0.9.2.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.RC1
    1.0.0.RELEASE
    1.0.1.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-proxy
    Current Version0.9.1.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.M7
    1.0.0.RELEASE
    1.0.1.RELEASE
    1.1.0.RELEASE
    1.1.1.RELEASE
    1.1.2.RELEASE
    1.1.3.RELEASE
    1.1.4.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-spi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-spi
    Current Version0.9.1.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.M4
    1.0.0.M5
    1.0.0.M6
    1.0.0.M7
    1.0.0.RELEASE Latest Major
    +

    io.reactivex:rxjava

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.reactivex
    Artifact Idrxjava
    Current Version1.3.8
    Scope
    Classifier
    Typejar
    +

    io.reactivex:rxjava-reactive-streams

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.reactivex
    Artifact Idrxjava-reactive-streams
    Current Version1.2.1
    Scope
    Classifier
    Typejar
    +

    io.reactivex.rxjava2:rxjava

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.reactivex.rxjava2
    Artifact Idrxjava
    Current Version2.2.21
    Scope
    Classifier
    Typejar
    +

    io.rest-assured:json-path

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idjson-path
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:json-schema-validator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idjson-schema-validator
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:kotlin-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idkotlin-extensions
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:rest-assured

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idrest-assured
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:rest-assured-all

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idrest-assured-all
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:rest-assured-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idrest-assured-common
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:scala-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idscala-support
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-commons
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-mock-mvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-mock-mvc
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-mock-mvc-kotlin-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-mock-mvc-kotlin-extensions
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-web-test-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-web-test-client
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:xml-path

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idxml-path
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured.examples:kotlin-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idkotlin-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:rest-assured-itest-java

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idrest-assured-itest-java
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scala-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscala-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scala-mock-mvc-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscala-mock-mvc-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scalatra-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscalatra-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scalatra-webapp

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscalatra-webapp
    Current Version4.5.1
    Scope
    Classifier
    Typewar
    +

    io.rest-assured.examples:spring-mvc-webapp

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idspring-mvc-webapp
    Current Version4.5.1
    Scope
    Classifier
    Typewar
    +

    io.rsocket:rsocket-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-core
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-load-balancer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-load-balancer
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-micrometer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-micrometer
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-test
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-transport-local

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-transport-local
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-transport-netty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-transport-netty
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.spring.gradle:dependency-management-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.spring.gradle
    Artifact Iddependency-management-plugin
    Current Version1.0.15.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4 Latest Minor
    +

    io.undertow:undertow-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.undertow
    Artifact Idundertow-core
    Current Version2.2.28.Final
    Scope
    Classifier
    Typejar
    Newer versions2.3.0.Alpha1
    2.3.0.Alpha2
    2.3.0.Beta1
    2.3.0.Final
    2.3.1.Final
    2.3.2.Final
    2.3.3.Final
    2.3.4.Final
    2.3.5.Final
    2.3.6.Final
    2.3.7.Final
    2.3.8.Final
    2.3.9.Final
    2.3.10.Final Latest Minor
    +

    io.undertow:undertow-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.undertow
    Artifact Idundertow-servlet
    Current Version2.2.28.Final
    Scope
    Classifier
    Typejar
    Newer versions2.3.0.Alpha1
    2.3.0.Alpha2
    2.3.0.Beta1
    2.3.0.Final
    2.3.1.Final
    2.3.2.Final
    2.3.3.Final
    2.3.4.Final
    2.3.5.Final
    2.3.6.Final
    2.3.7.Final
    2.3.8.Final
    2.3.9.Final
    2.3.10.Final Latest Minor
    +

    io.undertow:undertow-websockets-jsr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.undertow
    Artifact Idundertow-websockets-jsr
    Current Version2.2.28.Final
    Scope
    Classifier
    Typejar
    Newer versions2.3.0.Alpha1
    2.3.0.Alpha2
    2.3.0.Beta1
    2.3.0.Final
    2.3.1.Final
    2.3.2.Final
    2.3.3.Final
    2.3.4.Final
    2.3.5.Final
    2.3.6.Final
    2.3.7.Final
    2.3.8.Final
    2.3.9.Final
    2.3.10.Final Latest Minor
    +

    jakarta.activation:jakarta.activation-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.activation
    Artifact Idjakarta.activation-api
    Current Version1.2.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-rc1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1
    2.1.0-RC1
    2.1.0-RC2
    2.1.0
    2.1.1
    2.1.2 Latest Major
    +

    jakarta.annotation:jakarta.annotation-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.annotation
    Artifact Idjakarta.annotation-api
    Current Version1.3.5
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0
    2.1.0-B1
    2.1.0
    2.1.1
    3.0.0-M1 Latest Major
    +

    jakarta.jms:jakarta.jms-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.jms
    Artifact Idjakarta.jms-api
    Current Version2.0.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0
    3.1.0 Latest Major
    +

    jakarta.json:jakarta.json-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.json
    Artifact Idjakarta.json-api
    Current Version1.1.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1
    2.0.2
    2.1.0-RC1
    2.1.0
    2.1.1
    2.1.2
    2.1.3 Latest Major
    +

    jakarta.json.bind:jakarta.json.bind-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.json.bind
    Artifact Idjakarta.json.bind-api
    Current Version1.0.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0
    3.0.0-RC1
    3.0.0 Latest Major
    +

    jakarta.mail:jakarta.mail-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.mail
    Artifact Idjakarta.mail-api
    Current Version1.6.7
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0-RC4
    2.0.0-RC5
    2.0.0-RC6
    2.0.0
    2.0.1
    2.1.0-RC1
    2.1.0-RC2
    2.1.0
    2.1.1
    2.1.2 Latest Major
    +

    jakarta.management.j2ee:jakarta.management.j2ee-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjakarta.management.j2ee
    Artifact Idjakarta.management.j2ee-api
    Current Version1.1.4
    Scope
    Classifier
    Typejar
    +

    jakarta.persistence:jakarta.persistence-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.persistence
    Artifact Idjakarta.persistence-api
    Current Version2.2.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.2.0-B01
    3.2.0-B02
    3.2.0-M1 Latest Major
    +

    jakarta.servlet:jakarta.servlet-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.servlet
    Artifact Idjakarta.servlet-api
    Current Version4.0.4
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0
    6.0.0
    6.1.0-M1 Latest Major
    +

    jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.servlet.jsp.jstl
    Artifact Idjakarta.servlet.jsp.jstl-api
    Current Version1.2.7
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0
    3.0.0 Latest Major
    +

    jakarta.transaction:jakarta.transaction-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.transaction
    Artifact Idjakarta.transaction-api
    Current Version1.3.3
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1-RC1
    2.0.1 Latest Major
    +

    jakarta.validation:jakarta.validation-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.validation
    Artifact Idjakarta.validation-api
    Current Version2.0.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0
    3.0.1
    3.0.2
    3.1.0-M1 Latest Major
    +

    jakarta.websocket:jakarta.websocket-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.websocket
    Artifact Idjakarta.websocket-api
    Current Version1.1.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0-RC1
    2.0.0
    2.1.0
    2.1.1
    2.2.0-M1 Latest Major
    +

    jakarta.ws.rs:jakarta.ws.rs-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.ws.rs
    Artifact Idjakarta.ws.rs-api
    Current Version2.1.6
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0
    3.1.0 Latest Major
    +

    jakarta.xml.bind:jakarta.xml.bind-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.xml.bind
    Artifact Idjakarta.xml.bind-api
    Current Version2.3.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0-RC2
    3.0.0-RC3
    3.0.0
    3.0.1
    4.0.0-RC1
    4.0.0-RC2
    4.0.0-RC3
    4.0.0
    4.0.1 Latest Major
    +

    jakarta.xml.soap:jakarta.xml.soap-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.xml.soap
    Artifact Idjakarta.xml.soap-api
    Current Version1.4.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1 Latest Major
    +

    jakarta.xml.ws:jakarta.xml.ws-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.xml.ws
    Artifact Idjakarta.xml.ws-api
    Current Version2.3.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0-RC2
    3.0.0-RC3
    3.0.0
    3.0.1
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1 Latest Major
    +

    javax.activation:javax.activation-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.activation
    Artifact Idjavax.activation-api
    Current Version1.2.0
    Scope
    Classifier
    Typejar
    +

    javax.annotation:javax.annotation-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.annotation
    Artifact Idjavax.annotation-api
    Current Version1.3.2
    Scope
    Classifier
    Typejar
    +

    javax.cache:cache-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.cache
    Artifact Idcache-api
    Current Version1.1.1
    Scope
    Classifier
    Typejar
    +

    javax.jms:javax.jms-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.jms
    Artifact Idjavax.jms-api
    Current Version2.0.1
    Scope
    Classifier
    Typejar
    +

    javax.json:javax.json-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.json
    Artifact Idjavax.json-api
    Current Version1.1.4
    Scope
    Classifier
    Typejar
    +

    javax.json.bind:javax.json.bind-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.json.bind
    Artifact Idjavax.json.bind-api
    Current Version1.0
    Scope
    Classifier
    Typejar
    +

    javax.mail:javax.mail-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.mail
    Artifact Idjavax.mail-api
    Current Version1.6.2
    Scope
    Classifier
    Typejar
    +

    javax.money:money-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.money
    Artifact Idmoney-api
    Current Version1.1
    Scope
    Classifier
    Typejar
    +

    javax.persistence:javax.persistence-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.persistence
    Artifact Idjavax.persistence-api
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    javax.servlet:javax.servlet-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.servlet
    Artifact Idjavax.servlet-api
    Current Version4.0.1
    Scope
    Classifier
    Typejar
    +

    javax.servlet:jstl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.servlet
    Artifact Idjstl
    Current Version1.2
    Scope
    Classifier
    Typejar
    +

    javax.transaction:javax.transaction-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.transaction
    Artifact Idjavax.transaction-api
    Current Version1.3
    Scope
    Classifier
    Typejar
    +

    javax.validation:validation-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.validation
    Artifact Idvalidation-api
    Current Version2.0.1.Final
    Scope
    Classifier
    Typejar
    +

    javax.websocket:javax.websocket-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.websocket
    Artifact Idjavax.websocket-api
    Current Version1.1
    Scope
    Classifier
    Typejar
    +

    javax.xml.bind:jaxb-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idjavax.xml.bind
    Artifact Idjaxb-api
    Current Version2.3.1
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0427
    2.4.0-b180830.0359 Latest Minor
    +

    javax.xml.ws:jaxws-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.xml.ws
    Artifact Idjaxws-api
    Current Version2.3.1
    Scope
    Classifier
    Typejar
    +

    jaxen:jaxen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjaxen
    Artifact Idjaxen
    Current Version1.2.0
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-beta-1
    2.0.0 Latest Major
    +

    junit:junit

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjunit
    Artifact Idjunit
    Current Version4.13.2
    Scope
    Classifier
    Typejar
    +

    net.bytebuddy:byte-buddy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.bytebuddy
    Artifact Idbyte-buddy
    Current Version1.12.23
    Scope
    Classifier
    Typejar
    Newer versions1.13.0
    1.14.0
    1.14.1
    1.14.2
    1.14.3
    1.14.4
    1.14.5
    1.14.6
    1.14.7
    1.14.8
    1.14.9
    1.14.10
    1.14.11 Latest Minor
    +

    net.bytebuddy:byte-buddy-agent

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.bytebuddy
    Artifact Idbyte-buddy-agent
    Current Version1.12.23
    Scope
    Classifier
    Typejar
    Newer versions1.13.0
    1.14.0
    1.14.1
    1.14.2
    1.14.3
    1.14.4
    1.14.5
    1.14.6
    1.14.7
    1.14.8
    1.14.9
    1.14.10
    1.14.11 Latest Minor
    +

    net.minidev:json-smart

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.minidev
    Artifact Idjson-smart
    Current Version2.4.11
    Scope
    Classifier
    Typejar
    Newer versions2.5.0 Latest Minor
    +

    net.sf.ehcache:ehcache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.sf.ehcache
    Artifact Idehcache
    Current Version2.10.9.2
    Scope
    Classifier
    Typejar
    +

    net.sourceforge.htmlunit:htmlunit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.sourceforge.htmlunit
    Artifact Idhtmlunit
    Current Version2.60.0
    Scope
    Classifier
    Typejar
    Newer versions2.61.0
    2.62.0
    2.63.0
    2.64.0
    2.65.0
    2.65.1
    2.66.0
    2.67.0
    2.68.0
    2.69.0
    2.70.0 Latest Minor
    +

    net.sourceforge.jtds:jtds

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.sourceforge.jtds
    Artifact Idjtds
    Current Version1.3.1
    Scope
    Classifier
    Typejar
    +

    net.sourceforge.nekohtml:nekohtml

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.sourceforge.nekohtml
    Artifact Idnekohtml
    Current Version1.9.22
    Scope
    Classifier
    Typejar
    +

    nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnz.net.ultraq.thymeleaf
    Artifact Idthymeleaf-layout-dialect
    Current Version3.0.0
    Scope
    Classifier
    Typejar
    Newer versions3.1.0
    3.2.0
    3.2.1
    3.3.0 Latest Minor
    +

    org.apache.activemq:activemq-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-amqp
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-blueprint

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-blueprint
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-broker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-broker
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-camel

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.activemq
    Artifact Idactivemq-camel
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    +

    org.apache.activemq:activemq-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-client
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-console
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-http
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-jaas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-jaas
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-jdbc-store

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-jdbc-store
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-jms-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-jms-pool
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-kahadb-store

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-kahadb-store
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-karaf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-karaf
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-leveldb-store

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.activemq
    Artifact Idactivemq-leveldb-store
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    +

    org.apache.activemq:activemq-log4j-appender

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-log4j-appender
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-mqtt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-mqtt
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-openwire-generator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-openwire-generator
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-openwire-legacy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-openwire-legacy
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-osgi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-osgi
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-partition

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-partition
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    +

    org.apache.activemq:activemq-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-pool
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-ra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-ra
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-run

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-run
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-runtime-config

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-runtime-config
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-shiro

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-shiro
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-spring
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-stomp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-stomp
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-web
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:artemis-amqp-protocol

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-amqp-protocol
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-commons
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-core-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-core-client
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-jdbc-store

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-jdbc-store
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-jms-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-jms-client
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-jms-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-jms-server
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-journal

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-journal
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-quorum-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-quorum-api
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-selector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-selector
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-server
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-service-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-service-extensions
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.commons:commons-dbcp2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.commons
    Artifact Idcommons-dbcp2
    Current Version2.9.0
    Scope
    Classifier
    Typejar
    Newer versions2.10.0
    2.11.0 Latest Minor
    +

    org.apache.commons:commons-lang3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.commons
    Artifact Idcommons-lang3
    Current Version3.12.0
    Scope
    Classifier
    Typejar
    Newer versions3.13.0
    3.14.0 Latest Minor
    +

    org.apache.commons:commons-pool2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.commons
    Artifact Idcommons-pool2
    Current Version2.11.1
    Scope
    Classifier
    Typejar
    Newer versions2.12.0 Latest Minor
    +

    org.apache.derby:derby

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderby
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbyclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbyclient
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbynet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbynet
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbyoptionaltools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbyoptionaltools
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbytools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbytools
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.httpcomponents:fluent-hc

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idfluent-hc
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpasyncclient

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpasyncclient
    Current Version4.1.5
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient-cache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient-cache
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient-osgi

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient-osgi
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient-win

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient-win
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpcore

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpcore
    Current Version4.4.16
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpcore-nio

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpcore-nio
    Current Version4.4.16
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpmime

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpmime
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents.client5:httpclient5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.3-alpha1
    5.3
    5.3.1
    5.4-alpha1 Latest Minor
    +

    org.apache.httpcomponents.client5:httpclient5-cache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5-cache
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.3-alpha1
    5.3
    5.3.1
    5.4-alpha1 Latest Minor
    +

    org.apache.httpcomponents.client5:httpclient5-fluent

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5-fluent
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.3-alpha1
    5.3
    5.3.1
    5.4-alpha1 Latest Minor
    +

    org.apache.httpcomponents.client5:httpclient5-win

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5-win
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3 Latest Minor
    +

    org.apache.httpcomponents.core5:httpcore5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.core5
    Artifact Idhttpcore5
    Current Version5.1.5
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-alpha2
    5.2-beta1
    5.2-beta2
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3-alpha1 Latest Minor
    +

    org.apache.httpcomponents.core5:httpcore5-h2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.core5
    Artifact Idhttpcore5-h2
    Current Version5.1.5
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-alpha2
    5.2-beta1
    5.2-beta2
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3-alpha1 Latest Minor
    +

    org.apache.httpcomponents.core5:httpcore5-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.core5
    Artifact Idhttpcore5-reactive
    Current Version5.1.5
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-alpha2
    5.2-beta1
    5.2-beta2
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3-alpha1 Latest Minor
    +

    org.apache.johnzon:johnzon-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-core
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jaxrs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jaxrs
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jsonb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jsonb
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jsonb-extras

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jsonb-extras
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jsonschema

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jsonschema
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-mapper

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-mapper
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-websocket
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.kafka:connect

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-api
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-basic-auth-extension

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-basic-auth-extension
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-file

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-file
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-json
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-mirror

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-mirror
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-mirror-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-mirror-client
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-runtime
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-transforms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-transforms
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:generator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idgenerator
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-clients

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-clients
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-log4j-appender

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-log4j-appender
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-metadata

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-metadata
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-raft

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-raft
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-server-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-server-common
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-shell

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-shell
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-storage

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-storage
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-storage-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-storage-api
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams-scala_2.12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams-scala_2.12
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams-scala_2.13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams-scala_2.13
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams-test-utils

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams-test-utils
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-tools
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka_2.12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka_2.12
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka_2.13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka_2.13
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:trogdor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idtrogdor
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.logging.log4j:log4j-1.2-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-1.2-api
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-api
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-appserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-appserver
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-cassandra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-cassandra
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-core
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-couchdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-couchdb
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-docker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-docker
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-flume-ng

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-flume-ng
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-iostreams

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-iostreams
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-jcl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jcl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-jmx-gui

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jmx-gui
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.22.0 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jpa
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-jpl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jpl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-jul

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jul
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-kubernetes

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-kubernetes
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-layout-template-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-layout-template-json
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-liquibase

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-liquibase
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-mongodb3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-mongodb3
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-mongodb4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-mongodb4
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-slf4j-impl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-slf4j-impl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-slf4j18-impl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-slf4j18-impl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0 Latest Minor
    +

    org.apache.logging.log4j:log4j-spring-boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-spring-boot
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-spring-cloud-config-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-spring-cloud-config-client
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-taglib

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-taglib
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-to-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-to-slf4j
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-web
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.solr:solr-analysis-extras

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-analysis-extras
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-analytics

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-analytics
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-cell

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-cell
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.solr:solr-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-core
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-dataimporthandler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-dataimporthandler
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.solr:solr-dataimporthandler-extras

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-dataimporthandler-extras
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.solr:solr-gcs-repository

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-gcs-repository
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-jaegertracer-configurator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-jaegertracer-configurator
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-langid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-langid
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-ltr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-ltr
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-prometheus-exporter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-prometheus-exporter
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-s3-repository

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-s3-repository
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-solrj

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-solrj
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-test-framework

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-test-framework
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-velocity

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-velocity
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.tomcat:tomcat-annotations-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat
    Artifact Idtomcat-annotations-api
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat:tomcat-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat
    Artifact Idtomcat-jdbc
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat:tomcat-jsp-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat
    Artifact Idtomcat-jsp-api
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-core
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-el

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-el
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-jasper

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-jasper
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-websocket
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.aspectj:aspectjrt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.aspectj
    Artifact Idaspectjrt
    Current Version1.9.7
    Scope
    Classifier
    Typejar
    Newer versions1.9.8.M1
    1.9.8.RC1
    1.9.8.RC2
    1.9.8.RC3
    1.9.8
    1.9.9
    1.9.9.1
    1.9.19
    1.9.20
    1.9.20.1
    1.9.21.M1
    1.9.21.RC1
    1.9.21 Latest Incremental
    +

    org.aspectj:aspectjtools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.aspectj
    Artifact Idaspectjtools
    Current Version1.9.7
    Scope
    Classifier
    Typejar
    Newer versions1.9.8.M1
    1.9.8.RC1
    1.9.8.RC2
    1.9.8.RC3
    1.9.8
    1.9.9
    1.9.9.1
    1.9.19
    1.9.20
    1.9.20.1
    1.9.21.M1
    1.9.21.RC1
    1.9.21 Latest Incremental
    +

    org.aspectj:aspectjweaver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.aspectj
    Artifact Idaspectjweaver
    Current Version1.9.7
    Scope
    Classifier
    Typejar
    Newer versions1.9.8.M1
    1.9.8.RC1
    1.9.8.RC2
    1.9.8.RC3
    1.9.8
    1.9.9
    1.9.9.1
    1.9.19
    1.9.20
    1.9.20.1
    1.9.21.M1
    1.9.21.RC1
    1.9.21 Latest Incremental
    +

    org.assertj:assertj-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.assertj
    Artifact Idassertj-core
    Current Version3.22.0
    Scope
    Classifier
    Typejar
    Newer versions3.23.0
    3.23.1
    3.24.0
    3.24.1
    3.24.2
    3.25.0
    3.25.1
    3.25.2
    3.25.3 Latest Minor
    +

    org.awaitility:awaitility

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.awaitility:awaitility-groovy

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility-groovy
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.awaitility:awaitility-kotlin

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility-kotlin
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.awaitility:awaitility-scala

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility-scala
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-api
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-config

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-config
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-core
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-jcache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-jcache
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-micrometer

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-micrometer
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-spring

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-spring
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.codehaus.groovy:groovy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-ant

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-ant
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-astbuilder

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-astbuilder
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-bsf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-bsf
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-cli-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-cli-commons
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-cli-picocli

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-cli-picocli
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-console
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-datetime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-datetime
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-dateutil

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-dateutil
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-docgenerator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-docgenerator
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-groovydoc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-groovydoc
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-groovysh

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-groovysh
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-jaxb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-jaxb
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-jmx
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-json
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-jsr223

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-jsr223
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-macro

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-macro
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-nio

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-nio
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-servlet
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-sql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-sql
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-swing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-swing
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-templates

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-templates
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-test
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-test-junit5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-test-junit5
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-testng

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-testng
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-xml
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-yaml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-yaml
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.janino:commons-compiler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.janino
    Artifact Idcommons-compiler
    Current Version3.1.10
    Scope
    Classifier
    Typejar
    Newer versions3.1.11
    3.1.12 Latest Incremental
    +

    org.codehaus.janino:commons-compiler-jdk

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.janino
    Artifact Idcommons-compiler-jdk
    Current Version3.1.10
    Scope
    Classifier
    Typejar
    Newer versions3.1.11
    3.1.12 Latest Incremental
    +

    org.codehaus.janino:janino

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.janino
    Artifact Idjanino
    Current Version3.1.10
    Scope
    Classifier
    Typejar
    Newer versions3.1.11
    3.1.12 Latest Incremental
    +

    org.eclipse.jetty:apache-jsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idapache-jsp
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:apache-jstl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idapache-jstl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0 Latest Major
    +

    org.eclipse.jetty:infinispan-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idinfinispan-common
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:infinispan-embedded-query

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idinfinispan-embedded-query
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:infinispan-remote-query

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idinfinispan-remote-query
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-conscrypt-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-conscrypt-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-conscrypt-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-conscrypt-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-java-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-java-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-java-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-java-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-openjdk8-client

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-openjdk8-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty:jetty-alpn-openjdk8-server

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-openjdk8-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty:jetty-alpn-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-annotations
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-ant

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-ant
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-continuation

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-continuation
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty:jetty-deploy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-deploy
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-distribution

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-distribution
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typezip
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    11.0.0-alpha0
    11.0.0.beta1 Latest Major
    +

    org.eclipse.jetty:jetty-hazelcast

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-hazelcast
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-home

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-home
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typezip
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-http
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-http-spi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-http-spi
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-io

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-io
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-jaas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jaas
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-jaspi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jaspi
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jmx
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-jndi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jndi
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-nosql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-nosql
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-openid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-openid
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-plus

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-plus
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-proxy
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-quickstart

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-quickstart
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-reactive-httpclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-reactive-httpclient
    Current Version1.1.15
    Scope
    Classifier
    Typejar
    Newer versions2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    4.0.0.beta0
    4.0.0.beta1
    4.0.0
    4.0.1
    4.0.2
    4.0.3 Latest Major
    +

    org.eclipse.jetty:jetty-rewrite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-rewrite
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-security
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-servlet
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-servlets

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-servlets
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-spring
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3 Latest Major
    +

    org.eclipse.jetty:jetty-unixsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-unixsocket
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-util

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-util
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-util-ajax

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-util-ajax
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-webapp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-webapp
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-xml
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty.fcgi:fcgi-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.fcgi
    Artifact Idfcgi-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.fcgi:fcgi-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.fcgi
    Artifact Idfcgi-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.gcloud:jetty-gcloud-session-manager

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.gcloud
    Artifact Idjetty-gcloud-session-manager
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty.http2:http2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-common
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-hpack

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-hpack
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-http-client-transport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-http-client-transport
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.memcached:jetty-memcached-sessions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.memcached
    Artifact Idjetty-memcached-sessions
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty.orbit:javax.servlet.jsp

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.orbit
    Artifact Idjavax.servlet.jsp
    Current Version2.2.0.v201112011158
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.osgi:jetty-httpservice

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-httpservice
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.osgi:jetty-osgi-boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-osgi-boot
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.osgi:jetty-osgi-boot-jsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-osgi-boot-jsp
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.osgi:jetty-osgi-boot-warurl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-osgi-boot-warurl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.websocket:javax-websocket-client-impl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idjavax-websocket-client-impl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:javax-websocket-server-impl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idjavax-websocket-server-impl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-api
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-client

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-common

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-common
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-server

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-servlet
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.ehcache:ehcache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ehcache
    Artifact Idehcache
    Current Version3.10.8
    Scope
    Classifier
    Typejar
    +

    org.ehcache:ehcache-clustered

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ehcache
    Artifact Idehcache-clustered
    Current Version3.10.8
    Scope
    Classifier
    Typejar
    +

    org.ehcache:ehcache-transactions

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ehcache
    Artifact Idehcache-transactions
    Current Version3.10.8
    Scope
    Classifier
    Typejar
    +

    org.elasticsearch:elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch
    Artifact Idelasticsearch
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.client:elasticsearch-rest-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idelasticsearch-rest-client
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.client:elasticsearch-rest-client-sniffer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idelasticsearch-rest-client-sniffer
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.client:elasticsearch-rest-high-level-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idelasticsearch-rest-high-level-client
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2 Latest Major
    +

    org.elasticsearch.client:transport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idtransport
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    +

    org.elasticsearch.distribution.integ-test-zip:elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.distribution.integ-test-zip
    Artifact Idelasticsearch
    Current Version7.17.15
    Scope
    Classifier
    Typezip
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.plugin:transport-netty4-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.plugin
    Artifact Idtransport-netty4-client
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    +

    org.firebirdsql.jdbc:jaybird

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idorg.firebirdsql.jdbc
    Artifact Idjaybird
    Current Version4.0.9.java8
    Scope
    Classifier
    Typejar
    Newer versions4.0.9.java11 Latest Subincremental
    4.0.10.java7
    4.0.10.java8
    4.0.10.java11 Latest Incremental
    5.0.0.java8-beta-1
    5.0.0.java8
    5.0.0.java11-beta-1
    5.0.0.java11
    5.0.1.java8
    5.0.1.java11
    5.0.2.java8
    5.0.2.java11
    5.0.3.java8
    5.0.3.java11 Latest Major
    +

    org.firebirdsql.jdbc:jaybird-jdk18

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.firebirdsql.jdbc
    Artifact Idjaybird-jdk18
    Current Version4.0.9.java8
    Scope
    Classifier
    Typejar
    Newer versions4.0.10.java8 Latest Incremental
    +

    org.flywaydb:flyway-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-core
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.flywaydb:flyway-firebird

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-firebird
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.flywaydb:flyway-mysql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-mysql
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.flywaydb:flyway-sqlserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-sqlserver
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.freemarker:freemarker

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.freemarker
    Artifact Idfreemarker
    Current Version2.3.32
    Scope
    Classifier
    Typejar
    +

    org.glassfish:jakarta.el

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.glassfish
    Artifact Idjakarta.el
    Current Version3.0.4
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    5.0.0-M1 Latest Major
    +

    org.glassfish.jaxb:codemodel

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idcodemodel
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:codemodel-annotation-compiler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idcodemodel-annotation-compiler
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:jaxb-jxc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idjaxb-jxc
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:jaxb-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idjaxb-runtime
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:jaxb-xjc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idjaxb-xjc
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:txw2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idtxw2
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:txwc2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idtxwc2
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:xsom

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idxsom
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jersey.bundles:jaxrs-ri

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.bundles
    Artifact Idjaxrs-ri
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-apache-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-apache-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-grizzly-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-grizzly-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-helidon-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-helidon-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-jdk-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-jdk-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-jetty-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-jetty-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-netty-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-netty-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-grizzly2-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-grizzly2-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-grizzly2-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-grizzly2-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-jdk-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-jdk-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-jetty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-jetty-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-jetty-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-jetty-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-netty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-netty-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-servlet-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-servlet-core
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-simple-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-simple-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers.glassfish:jersey-gf-ejb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers.glassfish
    Artifact Idjersey-gf-ejb
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.core:jersey-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.core
    Artifact Idjersey-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.core:jersey-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.core
    Artifact Idjersey-common
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.core:jersey-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.core
    Artifact Idjersey-server
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-bean-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-bean-validation
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-declarative-linking

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-declarative-linking
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-entity-filtering

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-entity-filtering
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-metainf-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-metainf-services
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-bean-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-bean-validation
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-freemarker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-freemarker
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-jsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-jsp
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-mustache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-mustache
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-proxy-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-proxy-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-servlet-portability

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-servlet-portability
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6 Latest Major
    +

    org.glassfish.jersey.ext:jersey-spring4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-spring4
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6 Latest Major
    +

    org.glassfish.jersey.ext:jersey-spring5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-spring5
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6 Latest Major
    +

    org.glassfish.jersey.ext:jersey-wadl-doclet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-wadl-doclet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi-rs-inject

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi-rs-inject
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-ban-custom-hk2-binding

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-ban-custom-hk2-binding
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-transaction

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-transaction
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-validation
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-weld2-se

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-weld2-se
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.microprofile:jersey-mp-config

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.microprofile
    Artifact Idjersey-mp-config
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.microprofile:jersey-mp-rest-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.microprofile
    Artifact Idjersey-mp-rest-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.rx:jersey-rx-client-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.rx
    Artifact Idjersey-rx-client-guava
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.rx
    Artifact Idjersey-rx-client-rxjava
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.rx
    Artifact Idjersey-rx-client-rxjava2
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.inject:jersey-cdi2-se

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.inject
    Artifact Idjersey-cdi2-se
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.inject:jersey-hk2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.inject
    Artifact Idjersey-hk2
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-jaxb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-jaxb
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-binding

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-binding
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-jackson

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-jackson
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-jettison

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-jettison
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-processing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-processing
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-kryo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-kryo
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-moxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-moxy
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-multipart

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-multipart
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-sse

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-sse
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth1-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth1-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth1-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth1-server
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth1-signature

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth1-signature
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth2-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework:jersey-test-framework-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework
    Artifact Idjersey-test-framework-core
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework:jersey-test-framework-util

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework
    Artifact Idjersey-test-framework-util
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-bundle
    Current Version2.35
    Scope
    Classifier
    Typepom
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-external

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-external
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-grizzly2
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-inmemory

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-inmemory
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-jdk-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-jetty
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-simple

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-simple
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.web:jakarta.servlet.jsp.jstl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.glassfish.web
    Artifact Idjakarta.servlet.jsp.jstl
    Current Version1.2.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0
    3.0.0
    3.0.1 Latest Major
    +

    org.hamcrest:hamcrest

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.hamcrest
    Artifact Idhamcrest
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    org.hamcrest:hamcrest-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.hamcrest
    Artifact Idhamcrest-core
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    org.hamcrest:hamcrest-library

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.hamcrest
    Artifact Idhamcrest-library
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    org.hibernate:hibernate-c3p0

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-c3p0
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-core
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-ehcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-ehcache
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7 Latest Major
    +

    org.hibernate:hibernate-entitymanager

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-entitymanager
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7 Latest Major
    +

    org.hibernate:hibernate-envers

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-envers
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-hikaricp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-hikaricp
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-java8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-java8
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7 Latest Major
    +

    org.hibernate:hibernate-jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-jcache
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-jpamodelgen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-jpamodelgen
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-micrometer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-micrometer
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-proxool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-proxool
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-spatial

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-spatial
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-testing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-testing
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-vibur

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-vibur
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate.validator:hibernate-validator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate.validator
    Artifact Idhibernate-validator
    Current Version6.2.5.Final
    Scope
    Classifier
    Typejar
    Newer versions7.0.0.Alpha1
    7.0.0.Alpha2
    7.0.0.Alpha3
    7.0.0.Alpha4
    7.0.0.Alpha5
    7.0.0.Alpha6
    7.0.0.CR1
    7.0.0.Final
    7.0.1.Final
    7.0.2.Final
    7.0.3.Final
    7.0.4.Final
    7.0.5.Final
    8.0.0.Alpha1
    8.0.0.Alpha2
    8.0.0.Alpha3
    8.0.0.CR1
    8.0.0.CR2
    8.0.0.CR3
    8.0.0.Final
    8.0.1.Final Latest Major
    +

    org.hibernate.validator:hibernate-validator-annotation-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate.validator
    Artifact Idhibernate-validator-annotation-processor
    Current Version6.2.5.Final
    Scope
    Classifier
    Typejar
    Newer versions7.0.0.Alpha1
    7.0.0.Alpha2
    7.0.0.Alpha3
    7.0.0.Alpha4
    7.0.0.Alpha5
    7.0.0.Alpha6
    7.0.0.CR1
    7.0.0.Final
    7.0.1.Final
    7.0.2.Final
    7.0.3.Final
    7.0.4.Final
    7.0.5.Final
    8.0.0.Alpha1
    8.0.0.Alpha2
    8.0.0.Alpha3
    8.0.0.CR1
    8.0.0.CR2
    8.0.0.CR3
    8.0.0.Final
    8.0.1.Final Latest Major
    +

    org.hsqldb:hsqldb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.hsqldb
    Artifact Idhsqldb
    Current Version2.5.2
    Scope
    Classifier
    Typejar
    Newer versions2.6.0
    2.6.1
    2.7.0
    2.7.1
    2.7.2 Latest Minor
    +

    org.infinispan:infinispan-anchored-keys

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-anchored-keys
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-api
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-jdbc
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-jpa
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.Dev01
    14.0.0.Dev02 Latest Major
    +

    org.infinispan:infinispan-cachestore-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-rocksdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-rocksdb
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-sql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-sql
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cdi-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cdi-common
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cdi-embedded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cdi-embedded
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cdi-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cdi-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-checkstyle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-checkstyle
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cli-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cli-client
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-client-hotrod

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-client-hotrod
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-client-rest

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-client-rest
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cloudevents-integration

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cloudevents-integration
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-clustered-counter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-clustered-counter
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-clustered-lock

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-clustered-lock
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-commons
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-commons-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-commons-test
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-component-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-component-annotations
    Current Version13.0.20.Final
    Scopeprovided
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-component-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-component-processor
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-console
    Current Version0.15.5.Final
    Scope
    Classifier
    Typejar
    Newer versions14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    15.0.0.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05 Latest Major
    +

    org.infinispan:infinispan-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-extended-statistics

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-extended-statistics
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-hibernate-cache-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-hibernate-cache-commons
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-hibernate-cache-spi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-hibernate-cache-spi
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-hibernate-cache-v53

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-hibernate-cache-v53
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.Dev01
    14.0.0.Dev02 Latest Major
    +

    org.infinispan:infinispan-jboss-marshalling

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jboss-marshalling
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jcache
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-jcache-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jcache-commons
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-jcache-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jcache-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-key-value-store-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-key-value-store-client
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-marshaller-kryo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-kryo
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-marshaller-kryo-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-kryo-bundle
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-marshaller-protostuff

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-protostuff
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-marshaller-protostuff-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-protostuff-bundle
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-multimap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-multimap
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-objectfilter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-objectfilter
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-query

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-query
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-query-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-query-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-query-dsl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-query-dsl
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-remote-query-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-remote-query-client
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-remote-query-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-remote-query-server
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-scripting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-scripting
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-hotrod

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-hotrod
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-memcached

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-memcached
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-rest

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-rest
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-router

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-router
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-runtime
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-testdriver-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-testdriver-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-testdriver-junit4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-testdriver-junit4
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-testdriver-junit5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-testdriver-junit5
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-spring-boot-starter-embedded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring-boot-starter-embedded
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring-boot-starter-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring-boot-starter-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring5-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring5-common
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring5-embedded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring5-embedded
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring5-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring5-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-tasks

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-tasks
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-tasks-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-tasks-api
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-tools
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan.protostream:protostream

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.infinispan.protostream
    Artifact Idprotostream
    Current Version4.4.4.Final
    Scope
    Classifier
    Typejar
    Newer versions4.5.0.CR1
    4.5.0.Final
    4.5.0.Dev01
    4.5.0.Dev02
    4.5.0.Dev03
    4.5.0.Dev04
    4.5.0.Dev05
    4.5.1.Final
    4.6.0.Final
    4.6.1.Final
    4.6.2.Final
    4.6.3.Final
    4.6.4.Final
    4.6.5.Final Latest Minor
    5.0.0.Dev01
    14.0.0.CR2 Latest Major
    +

    org.infinispan.protostream:protostream-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.infinispan.protostream
    Artifact Idprotostream-processor
    Current Version4.4.4.Final
    Scopeprovided
    Classifier
    Typejar
    Newer versions4.5.0.CR1
    4.5.0.Final
    4.5.0.Dev01
    4.5.0.Dev02
    4.5.0.Dev03
    4.5.0.Dev04
    4.5.0.Dev05
    4.5.1.Final
    4.6.0.Final
    4.6.1.Final
    4.6.2.Final
    4.6.3.Final
    4.6.4.Final
    4.6.5.Final Latest Minor
    5.0.0.Dev01
    14.0.0.CR2 Latest Major
    +

    org.infinispan.protostream:protostream-types

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.infinispan.protostream
    Artifact Idprotostream-types
    Current Version4.4.4.Final
    Scope
    Classifier
    Typejar
    Newer versions4.5.0.CR1
    4.5.0.Final
    4.5.0.Dev01
    4.5.0.Dev02
    4.5.0.Dev03
    4.5.0.Dev04
    4.5.0.Dev05
    4.5.1.Final
    4.6.0.Final
    4.6.1.Final
    4.6.2.Final
    4.6.3.Final
    4.6.4.Final
    4.6.5.Final Latest Minor
    5.0.0.Dev01
    14.0.0.CR2 Latest Major
    +

    org.influxdb:influxdb-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.influxdb
    Artifact Idinfluxdb-java
    Current Version2.22
    Scope
    Classifier
    Typejar
    Newer versions2.23
    2.24 Latest Minor
    +

    org.jboss.logging:jboss-logging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jboss.logging
    Artifact Idjboss-logging
    Current Version3.4.3.Final
    Scope
    Classifier
    Typejar
    Newer versions3.5.0.Final
    3.5.1.Final
    3.5.2.Final
    3.5.3.Final Latest Minor
    +

    org.jdom:jdom2

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.jdom
    Artifact Idjdom2
    Current Version2.0.6.1
    Scope
    Classifier
    Typejar
    +

    org.jetbrains.kotlin:kotlin-compiler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-compiler
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-compiler-embeddable

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-compiler-embeddable
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-daemon-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-daemon-client
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-main-kts

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-main-kts
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-osgi-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-osgi-bundle
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-reflect

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-reflect
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-script-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-script-runtime
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-script-util

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-script-util
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22 Latest Minor
    +

    org.jetbrains.kotlin:kotlin-scripting-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-scripting-ide-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-ide-services
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-scripting-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-jvm
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-scripting-jvm-host

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-jvm-host
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-jdk7

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-jdk7
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-jdk8
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-js

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-js
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-annotations-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-annotations-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-js

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-js
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-junit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-junit
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-junit5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-junit5
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-testng

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-testng
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-android

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-android
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-core
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-core-jvm
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-debug
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-guava
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-javafx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-javafx
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-jdk8
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-jdk9

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-jdk9
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-play-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-play-services
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-reactive
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-reactor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-reactor
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-rx2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-rx2
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-rx3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-rx3
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-slf4j
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-swing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-swing
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-test
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-test-jvm
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jolokia:jolokia-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.jolokia
    Artifact Idjolokia-core
    Current Version1.7.2
    Scope
    Classifier
    Typejar
    +

    org.jooq:jooq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.jooq:jooq-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq-codegen
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.jooq:jooq-kotlin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq-kotlin
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.jooq:jooq-meta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq-meta
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.junit.jupiter:junit-jupiter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-api
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-engine
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-migrationsupport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-migrationsupport
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-params

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-params
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-commons
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-console
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-engine
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-jfr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-jfr
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-launcher

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-launcher
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-reporting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-reporting
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-runner

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-runner
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite-api
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite-commons
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite-engine
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-testkit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-testkit
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.vintage:junit-vintage-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.vintage
    Artifact Idjunit-vintage-engine
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.liquibase:liquibase-cdi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.liquibase
    Artifact Idliquibase-cdi
    Current Version4.9.1
    Scope
    Classifier
    Typejar
    Newer versions4.10.0
    4.11.0
    4.12.0
    4.13.0
    4.14.0
    4.15.0
    4.16.0
    4.16.1
    4.17.0
    4.17.1
    4.17.2
    4.18.0
    4.19.0
    4.19.1
    4.20.0
    4.21.0
    4.21.1
    4.22.0
    4.23.0
    4.23.1
    4.23.2
    4.24.0
    4.25.0
    4.25.1
    4.26.0 Latest Minor
    +

    org.liquibase:liquibase-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.liquibase
    Artifact Idliquibase-core
    Current Version4.9.1
    Scope
    Classifier
    Typejar
    Newer versions4.10.0
    4.11.0
    4.12.0
    4.13.0
    4.14.0
    4.15.0
    4.16.0
    4.16.1
    4.17.0
    4.17.1
    4.17.2
    4.18.0
    4.19.0
    4.19.1
    4.20.0
    4.21.0
    4.21.1
    4.22.0
    4.23.0
    4.23.1
    4.23.2
    4.24.0
    4.25.0
    4.25.1
    4.26.0 Latest Minor
    +

    org.mariadb:r2dbc-mariadb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.mariadb
    Artifact Idr2dbc-mariadb
    Current Version1.1.2
    Scope
    Classifier
    Typejar
    Newer versions1.1.3
    1.1.4 Latest Incremental
    +

    org.mariadb.jdbc:mariadb-java-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mariadb.jdbc
    Artifact Idmariadb-java-client
    Current Version3.1.4
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.3.0
    3.3.1
    3.3.2 Latest Minor
    +

    org.messaginghub:pooled-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.messaginghub
    Artifact Idpooled-jms
    Current Version1.2.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    3.0.0
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.mockito:mockito-android

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-android
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-core
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-errorprone

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-errorprone
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-inline

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-inline
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0 Latest Major
    +

    org.mockito:mockito-junit-jupiter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-junit-jupiter
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-proxy
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mongodb:bson

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idbson
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:bson-record-codec

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idbson-record-codec
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-core
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-legacy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-legacy
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-reactivestreams

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-reactivestreams
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-sync

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-sync
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mortbay.jasper:apache-el

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.mortbay.jasper
    Artifact Idapache-el
    Current Version9.0.52
    Scope
    Classifier
    Typejar
    Newer versions9.0.83
    9.0.83.1 Latest Incremental
    10.0.0-M5
    10.0.0-M7
    10.0.0-M10
    10.0.0-1-M7
    10.0.2
    10.0.7
    10.0.10
    10.0.14
    10.0.27
    10.1.0-M16
    10.1.1
    10.1.5
    10.1.7
    10.1.16 Latest Major
    +

    org.mybatis:mybatis

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis
    Artifact Idmybatis
    Current Version3.5.15
    Scope
    Classifier
    Typejar
    +

    org.mybatis:mybatis-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.mybatis
    Artifact Idmybatis-spring
    Current Version2.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    org.mybatis.dynamic-sql:mybatis-dynamic-sql

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.dynamic-sql
    Artifact Idmybatis-dynamic-sql
    Current Version1.5.0
    Scope
    Classifier
    Typejar
    +

    org.mybatis.scripting:mybatis-freemarker

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.scripting
    Artifact Idmybatis-freemarker
    Current Version1.2.4
    Scope
    Classifier
    Typejar
    +

    org.mybatis.scripting:mybatis-thymeleaf

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.scripting
    Artifact Idmybatis-thymeleaf
    Current Version1.0.4
    Scope
    Classifier
    Typejar
    +

    org.mybatis.scripting:mybatis-velocity

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.scripting
    Artifact Idmybatis-velocity
    Current Version2.1.2
    Scope
    Classifier
    Typejar
    +

    org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.mybatis.spring.boot
    Artifact Idmybatis-spring-boot-autoconfigure
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    org.mybatis.spring.boot:mybatis-spring-boot-starter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.mybatis.spring.boot
    Artifact Idmybatis-spring-boot-starter
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    org.mybatis.spring.native:mybatis-spring-native-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.spring.native
    Artifact Idmybatis-spring-native-core
    Current Version0.1.0-SNAPSHOT
    Scope
    Classifier
    Typejar
    +

    org.mybatis.spring.native:mybatis-spring-native-extensions

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.spring.native
    Artifact Idmybatis-spring-native-extensions
    Current Version0.1.0-SNAPSHOT
    Scope
    Classifier
    Typejar
    +

    org.neo4j.driver:neo4j-java-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.neo4j.driver
    Artifact Idneo4j-java-driver
    Current Version4.4.12
    Scope
    Classifier
    Typejar
    Newer versions4.4.13 Latest Incremental
    5.0.0-alpha01
    5.0.0-alpha02
    5.0.0-alpha03
    5.0.0-beta01
    5.0.0
    5.1.0
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0
    5.11.0
    5.12.0
    5.13.0
    5.14.0
    5.15.0
    5.16.0
    5.17.0 Latest Major
    +

    org.postgresql:postgresql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.postgresql
    Artifact Idpostgresql
    Current Version42.3.8
    Scope
    Classifier
    Typejar
    Newer versions42.4.0
    42.4.1
    42.4.2
    42.4.3
    42.5.0
    42.5.1
    42.5.2
    42.5.3
    42.5.4
    42.6.0
    42.7.0
    42.7.1 Latest Minor
    +

    org.postgresql:r2dbc-postgresql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.postgresql
    Artifact Idr2dbc-postgresql
    Current Version0.9.2.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions0.9.3.RELEASE Latest Incremental
    1.0.0.RC1
    1.0.0.RELEASE
    1.0.1.RELEASE
    1.0.2.RELEASE
    1.0.3.RELEASE
    1.0.4.RELEASE Latest Major
    +

    org.projectlombok:lombok

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.projectlombok
    Artifact Idlombok
    Current Version1.18.30
    Scope
    Classifier
    Typejar
    +

    org.quartz-scheduler:quartz

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.quartz-scheduler
    Artifact Idquartz
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-rc1
    2.4.0-rc2
    2.5.0-rc1 Latest Minor
    +

    org.quartz-scheduler:quartz-jobs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.quartz-scheduler
    Artifact Idquartz-jobs
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-rc1
    2.4.0-rc2
    2.5.0-rc1 Latest Minor
    +

    org.reactivestreams:reactive-streams

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.reactivestreams
    Artifact Idreactive-streams
    Current Version1.0.4
    Scope
    Classifier
    Typejar
    +

    org.seleniumhq.selenium:htmlunit-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idhtmlunit-driver
    Current Version3.61.0
    Scope
    Classifier
    Typejar
    Newer versions3.62.0
    3.63.0
    3.64.0 Latest Minor
    4.5.0
    4.5.2
    4.6.0
    4.7.0
    4.7.2
    4.8.0
    4.8.1
    4.8.1.1
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.13.0 Latest Major
    +

    org.seleniumhq.selenium:lift

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idlift
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-api
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-chrome-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-chrome-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-chromium-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-chromium-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v100

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v100
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v101

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v101
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v85

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v85
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v99

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v99
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    +

    org.seleniumhq.selenium:selenium-edge-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-edge-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-firefox-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-firefox-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-grid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-grid
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-http
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-ie-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-ie-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-java
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-json
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-opera-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-opera-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-remote-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-remote-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-safari-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-safari-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-session-map-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-session-map-jdbc
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-session-map-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-session-map-redis
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-support
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.skyscreamer:jsonassert

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.skyscreamer
    Artifact Idjsonassert
    Current Version1.5.1
    Scope
    Classifier
    Typejar
    +

    org.slf4j:jcl-over-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idjcl-over-slf4j
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:jul-to-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idjul-to-slf4j
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:log4j-over-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idlog4j-over-slf4j
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-api
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-ext

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-ext
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-jcl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.slf4j
    Artifact Idslf4j-jcl
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    +

    org.slf4j:slf4j-jdk14

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-jdk14
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-log4j12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-log4j12
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-nop

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-nop
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-simple

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-simple
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.springframework:spring-aop

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-aop
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-aspects

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-aspects
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-beans

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-beans
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-context

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-context
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-context-indexer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-context-indexer
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-context-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-context-support
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-core
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-expression

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-expression
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-instrument

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-instrument
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-jcl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-jcl
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-jdbc
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-jms
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-messaging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-messaging
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-orm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-orm
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-oxm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-oxm
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-r2dbc
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-test
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-tx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-tx
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-web
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-webflux

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-webflux
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-webmvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-webmvc
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-websocket
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework.amqp:spring-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-amqp
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit-junit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit-junit
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit-stream

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit-stream
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit-test
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.batch:spring-batch-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-core
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.batch:spring-batch-infrastructure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-infrastructure
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.batch:spring-batch-integration

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-integration
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.batch:spring-batch-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-test
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.boot:spring-boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-actuator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-actuator
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-actuator-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-actuator-autoconfigure
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-autoconfigure
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-autoconfigure-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-autoconfigure-processor
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-buildpack-platform

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-buildpack-platform
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-configuration-metadata

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-configuration-metadata
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-configuration-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-configuration-processor
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-devtools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-devtools
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-jarmode-layertools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-jarmode-layertools
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-loader

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-loader
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-loader-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-loader-tools
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-properties-migrator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-properties-migrator
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-activemq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-activemq
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-actuator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-actuator
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-amqp
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-aop

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-aop
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-artemis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-artemis
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-batch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-batch
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-cache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-cache
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-cassandra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-cassandra
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-cassandra-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-cassandra-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-couchbase

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-couchbase
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-couchbase-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-couchbase-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-elasticsearch
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-jdbc
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-jpa
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-ldap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-ldap
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-mongodb
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-mongodb-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-mongodb-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-neo4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-neo4j
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-r2dbc
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-redis
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-redis-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-redis-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-rest

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-rest
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-freemarker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-freemarker
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-graphql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-graphql
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-groovy-templates

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-groovy-templates
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-hateoas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-hateoas
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-integration

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-integration
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jdbc
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jersey

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jersey
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jetty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jetty
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jooq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jooq
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-json
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jta-atomikos

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jta-atomikos
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    +

    org.springframework.boot:spring-boot-starter-log4j2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-log4j2
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-logging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-logging
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-mail

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-mail
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-mustache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-mustache
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-oauth2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-oauth2-client
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-oauth2-resource-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-oauth2-resource-server
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-quartz

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-quartz
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-reactor-netty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-reactor-netty
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-rsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-rsocket
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-security
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-test
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-thymeleaf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-thymeleaf
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-tomcat

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-tomcat
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-undertow

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-undertow
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-validation
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-web
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-web-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-web-services
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-webflux

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-webflux
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-websocket
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-test
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-test-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-test-autoconfigure
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.data:spring-data-cassandra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-cassandra
    Current Version3.4.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-commons
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-couchbase

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-couchbase
    Current Version4.4.18
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    5.0.10
    5.0.11
    5.0.12
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0
    5.1.1
    5.1.2
    5.1.3
    5.1.4
    5.1.5
    5.1.6
    5.1.7
    5.1.8
    5.2.0-M1
    5.2.0-M2
    5.2.0-M3
    5.2.0-RC1
    5.2.0
    5.2.1
    5.2.2 Latest Major
    +

    org.springframework.data:spring-data-elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-elasticsearch
    Current Version4.4.18
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    5.0.10
    5.0.11
    5.0.12
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0
    5.1.1
    5.1.2
    5.1.3
    5.1.4
    5.1.5
    5.1.6
    5.1.7
    5.1.8
    5.2.0-M1
    5.2.0-M2
    5.2.0-M3
    5.2.0-RC1
    5.2.0
    5.2.1
    5.2.2 Latest Major
    +

    org.springframework.data:spring-data-envers

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-envers
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-geode

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-geode
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6 Latest Major
    +

    org.springframework.data:spring-data-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-jdbc
    Current Version2.4.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-jpa
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-keyvalue

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-keyvalue
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-ldap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-ldap
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-mongodb
    Current Version3.4.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-neo4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-neo4j
    Current Version6.3.18
    Scope
    Classifier
    Typejar
    Newer versions7.0.0-M1
    7.0.0-M2
    7.0.0-M3
    7.0.0-M4
    7.0.0-M5
    7.0.0-M6
    7.0.0-RC1
    7.0.0-RC2
    7.0.0
    7.0.1
    7.0.2
    7.0.3
    7.0.4
    7.0.5
    7.0.6
    7.0.7
    7.0.8
    7.0.9
    7.0.10
    7.0.11
    7.0.12
    7.1.0-M1
    7.1.0-M2
    7.1.0-M3
    7.1.0-RC1
    7.1.0
    7.1.1
    7.1.2
    7.1.3
    7.1.4
    7.1.5
    7.1.6
    7.1.7
    7.1.8
    7.2.0-M1
    7.2.0-M2
    7.2.0-M3
    7.2.0-RC1
    7.2.0
    7.2.1
    7.2.2 Latest Major
    +

    org.springframework.data:spring-data-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-r2dbc
    Current Version1.5.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-redis
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-relational

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-relational
    Current Version2.4.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-rest-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-rest-core
    Current Version3.7.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-rest-hal-explorer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-rest-hal-explorer
    Current Version3.7.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-rest-webmvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-rest-webmvc
    Current Version3.7.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.experimental:spring-aot

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.experimental
    Artifact Idspring-aot
    Current Version0.12.2
    Scope
    Classifier
    Typejar
    +

    org.springframework.experimental:spring-native

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.experimental
    Artifact Idspring-native
    Current Version0.12.2
    Scope
    Classifier
    Typejar
    +

    org.springframework.graphql:spring-graphql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.graphql
    Artifact Idspring-graphql
    Current Version1.0.6
    Scope
    Classifier
    Typejar
    Newer versions1.1.0-M1
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.2.0-M1
    1.2.0-RC1
    1.2.0
    1.2.1
    1.2.2
    1.2.3
    1.2.4 Latest Minor
    +

    org.springframework.graphql:spring-graphql-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.graphql
    Artifact Idspring-graphql-test
    Current Version1.0.6
    Scope
    Classifier
    Typejar
    Newer versions1.1.0-M1
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.2.0-M1
    1.2.0-RC1
    1.2.0
    1.2.1
    1.2.2
    1.2.3
    1.2.4 Latest Minor
    +

    org.springframework.hateoas:spring-hateoas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.hateoas
    Artifact Idspring-hateoas
    Current Version1.5.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0-M2
    2.0.0-M3
    2.0.0-M4
    2.0.0-M5
    2.0.0-M6
    2.0.0-RC1
    2.0.0-RC2
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.1.0-M1
    2.1.0-RC1
    2.1.0
    2.1.1
    2.1.2
    2.1.3
    2.2.0-M1
    2.2.0-M2
    2.2.0-RC1
    2.2.0 Latest Major
    +

    org.springframework.integration:spring-integration-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-amqp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-core
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-event

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-event
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-feed

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-feed
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-file

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-file
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-ftp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-ftp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-gemfire

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-gemfire
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5 Latest Major
    +

    org.springframework.integration:spring-integration-groovy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-groovy
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-http
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-ip

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-ip
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jdbc
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jms
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jmx
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jpa
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-kafka

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-kafka
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-mail

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-mail
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-mongodb
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-mqtt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-mqtt
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-r2dbc
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-redis
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-rmi

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-rmi
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    +

    org.springframework.integration:spring-integration-rsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-rsocket
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-scripting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-scripting
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-security
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-sftp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-sftp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-stomp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-stomp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-stream

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-stream
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-syslog

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-syslog
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-test
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-test-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-test-support
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-webflux

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-webflux
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-websocket
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-ws

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-ws
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-xml
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-xmpp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-xmpp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-zeromq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-zeromq
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-zookeeper

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-zookeeper
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.kafka:spring-kafka

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.kafka
    Artifact Idspring-kafka
    Current Version2.8.11
    Scope
    Classifier
    Typejar
    Newer versions2.9.0-M1
    2.9.0-RC1
    2.9.0
    2.9.1
    2.9.2
    2.9.3
    2.9.4
    2.9.5
    2.9.6
    2.9.7
    2.9.8
    2.9.9
    2.9.10
    2.9.11
    2.9.12
    2.9.13 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.kafka:spring-kafka-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.kafka
    Artifact Idspring-kafka-test
    Current Version2.8.11
    Scope
    Classifier
    Typejar
    Newer versions2.9.0-M1
    2.9.0-RC1
    2.9.0
    2.9.1
    2.9.2
    2.9.3
    2.9.4
    2.9.5
    2.9.6
    2.9.7
    2.9.8
    2.9.9
    2.9.10
    2.9.11
    2.9.12
    2.9.13 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-core
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-core-tiger

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-core-tiger
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1 Latest Major
    +

    org.springframework.ldap:spring-ldap-ldif-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-ldif-core
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-odm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-odm
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-test
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-asciidoctor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-asciidoctor
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-core
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-mockmvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-mockmvc
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-restassured

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-restassured
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-webtestclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-webtestclient
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.retry:spring-retry

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.retry
    Artifact Idspring-retry
    Current Version1.3.4
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0-RC1
    2.0.0-RC2
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5 Latest Major
    +

    org.springframework.security:spring-security-acl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-acl
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-aspects

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-aspects
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-cas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-cas
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-config

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-config
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-core
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-crypto

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-crypto
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-data

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-data
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-ldap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-ldap
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-messaging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-messaging
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-client
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-core
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-jose

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-jose
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-resource-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-resource-server
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-openid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-openid
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1 Latest Major
    +

    org.springframework.security:spring-security-remoting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-remoting
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    +

    org.springframework.security:spring-security-rsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-rsocket
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-saml2-service-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-saml2-service-provider
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-taglibs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-taglibs
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-test
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-web
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-core
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-data-geode

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-data-geode
    Current Version2.7.1
    Scope
    Classifier
    Typejar
    Newer versions2.7.2 Latest Incremental
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5 Latest Major
    +

    org.springframework.session:spring-session-data-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-data-mongodb
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-data-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-data-redis
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-hazelcast

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-hazelcast
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-jdbc
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.ws:spring-ws-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-core
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-ws-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-security
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-ws-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-support
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-ws-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-test
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-xml
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.thymeleaf:thymeleaf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.thymeleaf
    Artifact Idthymeleaf
    Current Version3.0.15.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.1.0.M1
    3.1.0.M2
    3.1.0.M3
    3.1.0.RC1
    3.1.0.RC2
    3.1.0.RELEASE
    3.1.1.RELEASE
    3.1.2.RELEASE Latest Minor
    +

    org.thymeleaf:thymeleaf-spring5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.thymeleaf
    Artifact Idthymeleaf-spring5
    Current Version3.0.15.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.1.0.M1
    3.1.0.M2
    3.1.0.M3
    3.1.0.RC1
    3.1.0.RC2
    3.1.0.RELEASE
    3.1.1.RELEASE
    3.1.2.RELEASE Latest Minor
    +

    org.thymeleaf.extras:thymeleaf-extras-java8time

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.thymeleaf.extras
    Artifact Idthymeleaf-extras-java8time
    Current Version3.0.4.RELEASE
    Scope
    Classifier
    Typejar
    +

    org.thymeleaf.extras:thymeleaf-extras-springsecurity5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.thymeleaf.extras
    Artifact Idthymeleaf-extras-springsecurity5
    Current Version3.0.5.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.1.0.M1
    3.1.0.RC1
    3.1.0.RC2
    3.1.0.RELEASE
    3.1.1.RELEASE
    3.1.2.RELEASE Latest Minor
    +

    org.webjars:webjars-locator-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.webjars
    Artifact Idwebjars-locator-core
    Current Version0.50
    Scope
    Classifier
    Typejar
    Newer versions0.51
    0.52
    0.53
    0.54
    0.55 Latest Minor
    +

    org.xerial:sqlite-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.xerial
    Artifact Idsqlite-jdbc
    Current Version3.36.0.3
    Scope
    Classifier
    Typejar
    Newer versions3.39.2.0
    3.39.2.1
    3.39.3.0
    3.39.4.0
    3.39.4.1
    3.40.0.0
    3.40.1.0
    3.41.0.0
    3.41.0.1
    3.41.2.0
    3.41.2.1
    3.41.2.2
    3.42.0.0
    3.42.0.1
    3.43.0.0
    3.43.2.0
    3.43.2.1
    3.43.2.2
    3.44.0.0
    3.44.1.0
    3.45.0.0
    3.45.1.0 Latest Minor
    +

    org.xmlunit:xmlunit-assertj

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-assertj
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-assertj3

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-assertj3
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-core
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-legacy

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-legacy
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-matchers

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-matchers
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-placeholders

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-placeholders
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.yaml:snakeyaml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.yaml
    Artifact Idsnakeyaml
    Current Version1.30
    Scope
    Classifier
    Typejar
    Newer versions1.31
    1.32
    1.33 Latest Minor
    2.0
    2.1
    2.2 Latest Major
    +

    redis.clients:jedis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idredis.clients
    Artifact Idjedis
    Current Version3.8.0
    Scope
    Classifier
    Typejar
    Newer versions3.9.0
    3.10.0 Latest Minor
    4.0.0-beta1
    4.0.0-beta2
    4.0.0-beta3
    4.0.0-beta4
    4.0.0-RC1
    4.0.0-rc2
    4.0.0
    4.0.1
    4.1.0
    4.1.1
    4.2.0-m1
    4.2.0-rc1
    4.2.0
    4.2.1
    4.2.2
    4.2.3
    4.3.0-m1
    4.3.0-m2
    4.3.0
    4.3.1
    4.3.2
    4.4.0-m1
    4.4.0-m2
    4.4.0-rc1
    4.4.0
    4.4.1
    4.4.2
    4.4.3
    4.4.4
    4.4.5
    4.4.6
    5.0.0-alpha1
    5.0.0-alpha2
    5.0.0-beta1
    5.0.0-beta2
    5.0.0
    5.0.1
    5.0.2
    5.1.0
    5.2.0-alpha2 Latest Major
    +

    wsdl4j:wsdl4j

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idwsdl4j
    Artifact Idwsdl4j
    Current Version1.6.3
    Scope
    Classifier
    Typejar
    +
    +
    +
    +
    + + + + diff --git a/en/dependency-updates-report.html b/en/dependency-updates-report.html new file mode 100644 index 0000000..45ffe80 --- /dev/null +++ b/en/dependency-updates-report.html @@ -0,0 +1,44132 @@ + + + + + + + + + + mybatis-spring-native-docs – Dependency Updates Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's various dependencies.

    + + + + + + + + + + + + + + + + + + + + + +
    # of dependencies using the latest version available101
    # of dependencies where the next version available is smaller than an incremental version update3
    # of dependencies where the next version available is an incremental version update214
    # of dependencies where the next version available is a minor version update535
    # of dependencies where the next version available is a major version update313
    +

    Dependency Management

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    antlrantlr2.7.7jar20030911
    ch.qos.logbacklogback-access1.2.12jar1.2.131.4.14
    ch.qos.logbacklogback-classic1.2.12jar1.2.131.4.14
    ch.qos.logbacklogback-core1.2.12jar1.2.131.4.14
    com.atomikostransactions-jdbc4.0.6jar6.0.0
    com.atomikostransactions-jms4.0.6jar6.0.0
    com.atomikostransactions-jta4.0.6jar6.0.0
    com.couchbase.clientjava-client3.3.4jar3.5.3
    com.datastax.ossjava-driver-core4.14.1jar4.17.0
    com.datastax.ossjava-driver-core-shaded4.14.1jar4.17.0
    com.datastax.ossjava-driver-mapper-processor4.14.1jar4.17.0
    com.datastax.ossjava-driver-mapper-runtime4.14.1jar4.17.0
    com.datastax.ossjava-driver-metrics-micrometer4.14.1jar4.17.0
    com.datastax.ossjava-driver-metrics-microprofile4.14.1jar4.17.0
    com.datastax.ossjava-driver-query-builder4.14.1jar4.17.0
    com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1jar
    com.datastax.ossjava-driver-test-infra4.14.1jar4.17.0
    com.datastax.ossnative-protocol1.5.1jar
    com.fasterxmlclassmate1.5.1jar1.7.0
    com.fasterxml.jackson.corejackson-annotations2.13.5jar2.16.1
    com.fasterxml.jackson.corejackson-core2.13.5jar2.16.1
    com.fasterxml.jackson.corejackson-databind2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5jar2.16.1
    com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5jar2.16.1
    com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-all2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-objects2.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5jar2.16.1
    com.fasterxml.jackson.jrjackson-jr-stree2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-afterburner2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-blackbird2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-guice2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-kotlin2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-mrbean2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-osgi2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-paranamer2.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5jar2.16.1
    com.fasterxml.jackson.modulejackson-module-scala_32.13.5jar2.16.1
    com.github.ben-manes.caffeinecaffeine2.9.3jar3.1.8
    com.github.ben-manes.caffeineguava2.9.3jar3.1.8
    com.github.ben-manes.caffeinejcache2.9.3jar3.1.8
    com.github.ben-manes.caffeinesimulator2.9.3jar3.1.8
    com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1jar
    com.google.appengineappengine-api-1.0-sdk1.9.98jar2.0.24
    com.google.code.gsongson2.9.1jar2.10.1
    com.graphql-javagraphql-java18.5jar18.7230521-nf-execution
    com.h2databaseh22.1.214jar2.2.224
    com.hazelcasthazelcast5.1.7jar5.3.6
    com.hazelcasthazelcast-hibernate522.2.1jar
    com.hazelcasthazelcast-hibernate532.2.1jar2.3.05.1.0
    com.hazelcasthazelcast-spring5.1.7jar5.3.6
    com.ibm.db2jcc11.5.9.0jar
    com.jayway.jsonpathjson-path2.7.0jar2.9.0
    com.jayway.jsonpathjson-path-assert2.7.0jar2.9.0
    com.microsoft.sqlservermssql-jdbc10.2.3.jre8jar10.2.3.jre1712.6.0.jre11
    com.mysqlmysql-connector-j8.0.33jar8.3.0
    com.oracle.database.haons21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.hasimplefan21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc1121.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc11-production21.5.0.0pom21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc821.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcojdbc8-production21.5.0.0pom21.11.0.023.3.0.23.09
    com.oracle.database.jdbcrsi21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcucp21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbcucp1121.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc11_g21.5.0.0jar21.11.0.0
    com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0jar21.11.0.0
    com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0pom21.11.0.0
    com.oracle.database.jdbc.debugojdbc8_g21.5.0.0jar21.11.0.0
    com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0jar21.11.0.0
    com.oracle.database.nlsorai18n21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.observabilitydms21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.observabilityojdbc11-observability21.5.0.0pom21.11.0.0
    com.oracle.database.observabilityojdbc11dms21.5.0.0jar21.11.0.0
    com.oracle.database.observabilityojdbc8-observability21.5.0.0pom21.11.0.0
    com.oracle.database.observabilityojdbc8dms21.5.0.0jar21.11.0.0
    com.oracle.database.r2dbcoracle-r2dbc0.4.0jar1.2.0
    com.oracle.database.securityoraclepki21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.securityosdt_cert21.5.0.0jar21.11.0.0
    com.oracle.database.securityosdt_core21.5.0.0jar21.11.0.0
    com.oracle.database.xmlxdb21.5.0.0jar21.11.0.023.3.0.23.09
    com.oracle.database.xmlxmlparserv221.5.0.0jar21.11.0.023.3.0.23.09
    com.querydslquerydsl-apt5.0.0jar5.1.0
    com.querydslquerydsl-codegen5.0.0jar5.1.0
    com.querydslquerydsl-codegen-utils5.0.0jar
    com.querydslquerydsl-collections5.0.0jar5.1.0
    com.querydslquerydsl-core5.0.0jar5.1.0
    com.querydslquerydsl-guava5.0.0jar5.1.0
    com.querydslquerydsl-hibernate-search5.0.0jar5.1.0
    com.querydslquerydsl-jdo5.0.0jar5.1.0
    com.querydslquerydsl-jpa5.0.0jar5.1.0
    com.querydslquerydsl-jpa-codegen5.0.0jar5.1.0
    com.querydslquerydsl-kotlin5.0.0jar5.1.0
    com.querydslquerydsl-kotlin-codegen5.0.0jar5.1.0
    com.querydslquerydsl-lucene35.0.0jar5.1.0
    com.querydslquerydsl-lucene45.0.0jar5.1.0
    com.querydslquerydsl-lucene55.0.0jar5.1.0
    com.querydslquerydsl-mongodb5.0.0jar5.1.0
    com.querydslquerydsl-scala5.0.0jar5.1.0
    com.querydslquerydsl-spatial5.0.0jar5.1.0
    com.querydslquerydsl-sql5.0.0jar5.1.0
    com.querydslquerydsl-sql-codegen5.0.0jar5.1.0
    com.querydslquerydsl-sql-spatial5.0.0jar5.1.0
    com.querydslquerydsl-sql-spring5.0.0jar5.1.0
    com.rabbitmqamqp-client5.14.3jar5.20.0
    com.rabbitmqstream-client0.5.0jar0.15.0
    com.samskivertjmustache1.15jar1.16
    com.sendgridsendgrid-java4.9.3jar4.10.1
    com.squareup.okhttp3logging-interceptor4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3mockwebserver4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okcurl4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-brotli4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-dnsoverhttps4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-sse4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-tls4.9.3jar4.12.05.0.0-alpha.12
    com.squareup.okhttp3okhttp-urlconnection4.9.3jar4.12.05.0.0-alpha.12
    com.sun.activationjakarta.activation1.2.2jar2.0.1
    com.sun.mailjakarta.mail1.6.7jar2.0.1
    com.sun.xml.messaging.saajsaaj-impl1.5.3jar3.0.3
    com.unboundidunboundid-ldapsdk6.0.10jar6.0.11
    com.zaxxerHikariCP4.0.3jar5.1.0
    commons-codeccommons-codec1.15jar1.16.1
    commons-poolcommons-pool1.6jar
    de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11jar3.5.44.12.2
    io.dropwizard.metricsmetrics-annotation4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-caffeine4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-caffeine34.2.22jar4.2.25
    io.dropwizard.metricsmetrics-collectd4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-core4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-ehcache4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-graphite4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-healthchecks4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-httpasyncclient4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-httpclient4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-httpclient54.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jakarta-servlet4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jakarta-servlet64.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jakarta-servlets4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jcache4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jdbi4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jdbi34.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jersey24.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jersey34.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jersey314.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty104.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty114.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty124.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty12-ee104.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jetty94.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jmx4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-json4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-jvm4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-log4j24.2.22jar4.2.25
    io.dropwizard.metricsmetrics-logback4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-logback134.2.22jar4.2.25
    io.dropwizard.metricsmetrics-logback144.2.22jar4.2.25
    io.dropwizard.metricsmetrics-servlet4.2.22jar4.2.25
    io.dropwizard.metricsmetrics-servlets4.2.22jar4.2.25
    io.lettucelettuce-core6.1.10.RELEASEjar6.3.1.RELEASE
    io.micrometermicrometer-core1.9.17jar1.12.2
    io.micrometermicrometer-registry-appoptics1.9.17jar1.12.2
    io.micrometermicrometer-registry-atlas1.9.17jar1.12.2
    io.micrometermicrometer-registry-azure-monitor1.9.17jar1.12.2
    io.micrometermicrometer-registry-cloudwatch1.9.17jar1.12.2
    io.micrometermicrometer-registry-cloudwatch21.9.17jar1.12.2
    io.micrometermicrometer-registry-datadog1.9.17jar1.12.2
    io.micrometermicrometer-registry-dynatrace1.9.17jar1.12.2
    io.micrometermicrometer-registry-elastic1.9.17jar1.12.2
    io.micrometermicrometer-registry-ganglia1.9.17jar1.12.2
    io.micrometermicrometer-registry-graphite1.9.17jar1.12.2
    io.micrometermicrometer-registry-health1.9.17jar1.12.2
    io.micrometermicrometer-registry-humio1.9.17jar1.12.2
    io.micrometermicrometer-registry-influx1.9.17jar1.12.2
    io.micrometermicrometer-registry-jmx1.9.17jar1.12.2
    io.micrometermicrometer-registry-kairos1.9.17jar1.12.2
    io.micrometermicrometer-registry-new-relic1.9.17jar1.12.2
    io.micrometermicrometer-registry-opentsdb1.9.17jar1.12.2
    io.micrometermicrometer-registry-otlp1.9.17jar1.12.2
    io.micrometermicrometer-registry-prometheus1.9.17jar1.12.2
    io.micrometermicrometer-registry-signalfx1.9.17jar1.12.2
    io.micrometermicrometer-registry-stackdriver1.9.17jar1.12.2
    io.micrometermicrometer-registry-statsd1.9.17jar1.12.2
    io.micrometermicrometer-registry-wavefront1.9.17jar1.12.2
    io.micrometermicrometer-test1.9.17jar1.12.2
    io.nettynetty-all4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-buffer4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-haproxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-http4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-http24.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-memcache4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-mqtt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-redis4.1.101.Finaljar4.1.106.Final
    io.nettynetty-codec-smtp4.1.101.Finaljar4.1.106.Final
    io.nettynetty-codec-socks4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-stomp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-codec-xml4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-common4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-dev-tools4.1.101.Finaljar4.1.106.Final
    io.nettynetty-example4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-handler4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-handler-proxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-handler-ssl-ocsp4.1.101.Finaljar4.1.106.Final
    io.nettynetty-resolver4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-resolver-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-resolver-dns-classes-macos4.1.101.Finaljar4.1.106.Final
    io.nettynetty-resolver-dns-native-macos4.1.101.Finaljar4.1.106.Final
    io.nettynetty-tcnative2.0.61.Finallinux-x86_64jar2.0.62.Final
    io.nettynetty-tcnative-boringssl-static2.0.61.Finaljar2.0.62.Final
    io.nettynetty-tcnative-classes2.0.61.Finaljar2.0.62.Final
    io.nettynetty-transport4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-classes-epoll4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-classes-kqueue4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-native-epoll4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-native-kqueue4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-native-unix-common4.1.101.Finaljar4.1.106.Final
    io.nettynetty-transport-rxtx4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-sctp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.nettynetty-transport-udt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
    io.projectreactorreactor-core3.4.34jar3.4.353.6.2
    io.projectreactorreactor-test3.4.34jar3.4.353.6.2
    io.projectreactorreactor-tools3.4.34jar3.4.353.6.2
    io.projectreactor.addonsreactor-adapter3.4.10jar3.5.1
    io.projectreactor.addonsreactor-extra3.4.10jar3.5.1
    io.projectreactor.addonsreactor-pool0.2.12jar1.0.5
    io.projectreactor.kafkareactor-kafka1.3.22jar
    io.projectreactor.kotlinreactor-kotlin-extensions1.1.10jar1.2.2
    io.projectreactor.nettyreactor-netty1.0.39jar1.0.411.1.15
    io.projectreactor.nettyreactor-netty-core1.0.39jar1.0.411.1.15
    io.projectreactor.nettyreactor-netty-http1.0.39jar1.0.411.1.15
    io.projectreactor.nettyreactor-netty-http-brave1.0.39jar1.0.411.1.15
    io.projectreactor.rabbitmqreactor-rabbitmq1.5.6jar
    io.prometheussimpleclient0.15.0jar0.16.0
    io.prometheussimpleclient_caffeine0.15.0jar0.16.0
    io.prometheussimpleclient_common0.15.0jar0.16.0
    io.prometheussimpleclient_dropwizard0.15.0jar0.16.0
    io.prometheussimpleclient_graphite_bridge0.15.0jar0.16.0
    io.prometheussimpleclient_guava0.15.0jar0.16.0
    io.prometheussimpleclient_hibernate0.15.0jar0.16.0
    io.prometheussimpleclient_hotspot0.15.0jar0.16.0
    io.prometheussimpleclient_httpserver0.15.0jar0.16.0
    io.prometheussimpleclient_jetty0.15.0jar0.16.0
    io.prometheussimpleclient_jetty_jdk80.15.0jar0.16.0
    io.prometheussimpleclient_log4j0.15.0jar0.16.0
    io.prometheussimpleclient_log4j20.15.0jar0.16.0
    io.prometheussimpleclient_logback0.15.0jar0.16.0
    io.prometheussimpleclient_pushgateway0.15.0jar0.16.0
    io.prometheussimpleclient_servlet0.15.0jar0.16.0
    io.prometheussimpleclient_servlet_jakarta0.15.0jar0.16.0
    io.prometheussimpleclient_spring_boot0.15.0jar0.16.0
    io.prometheussimpleclient_spring_web0.15.0jar0.16.0
    io.prometheussimpleclient_tracer_otel0.15.0jar0.16.0
    io.prometheussimpleclient_tracer_otel_agent0.15.0jar0.16.0
    io.prometheussimpleclient_vertx0.15.0jar0.16.0
    io.r2dbcr2dbc-h20.9.1.RELEASEjar1.0.0.RELEASE
    io.r2dbcr2dbc-mssql0.9.0.RELEASEjar0.9.0.SONATYPE-M41.0.2.RELEASE
    io.r2dbcr2dbc-pool0.9.2.RELEASEjar1.0.1.RELEASE
    io.r2dbcr2dbc-proxy0.9.1.RELEASEjar1.1.4.RELEASE
    io.r2dbcr2dbc-spi0.9.1.RELEASEjar1.0.0.RELEASE
    io.reactivexrxjava1.3.8jar
    io.reactivexrxjava-reactive-streams1.2.1jar
    io.reactivex.rxjava2rxjava2.2.21jar
    io.rest-assuredjson-path4.5.1jar5.4.0
    io.rest-assuredjson-schema-validator4.5.1jar5.4.0
    io.rest-assuredkotlin-extensions4.5.1jar5.4.0
    io.rest-assuredrest-assured4.5.1jar5.4.0
    io.rest-assuredrest-assured-all4.5.1jar5.4.0
    io.rest-assuredrest-assured-common4.5.1jar5.4.0
    io.rest-assuredscala-support4.5.1jar5.4.0
    io.rest-assuredspring-commons4.5.1jar5.4.0
    io.rest-assuredspring-mock-mvc4.5.1jar5.4.0
    io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1jar5.4.0
    io.rest-assuredspring-web-test-client4.5.1jar5.4.0
    io.rest-assuredxml-path4.5.1jar5.4.0
    io.rest-assured.exampleskotlin-example4.5.1jar
    io.rest-assured.examplesrest-assured-itest-java4.5.1jar
    io.rest-assured.examplesscala-example4.5.1jar
    io.rest-assured.examplesscala-mock-mvc-example4.5.1jar
    io.rest-assured.examplesscalatra-example4.5.1jar
    io.rest-assured.examplesscalatra-webapp4.5.1war
    io.rest-assured.examplesspring-mvc-webapp4.5.1war
    io.rsocketrsocket-core1.1.3jar1.1.4
    io.rsocketrsocket-load-balancer1.1.3jar1.1.4
    io.rsocketrsocket-micrometer1.1.3jar1.1.4
    io.rsocketrsocket-test1.1.3jar1.1.4
    io.rsocketrsocket-transport-local1.1.3jar1.1.4
    io.rsocketrsocket-transport-netty1.1.3jar1.1.4
    io.spring.gradledependency-management-plugin1.0.15.RELEASEjar1.1.4
    io.undertowundertow-core2.2.28.Finaljar2.3.10.Final
    io.undertowundertow-servlet2.2.28.Finaljar2.3.10.Final
    io.undertowundertow-websockets-jsr2.2.28.Finaljar2.3.10.Final
    jakarta.activationjakarta.activation-api1.2.2jar2.1.2
    jakarta.annotationjakarta.annotation-api1.3.5jar3.0.0-M1
    jakarta.jmsjakarta.jms-api2.0.3jar3.1.0
    jakarta.jsonjakarta.json-api1.1.6jar2.1.3
    jakarta.json.bindjakarta.json.bind-api1.0.2jar3.0.0
    jakarta.mailjakarta.mail-api1.6.7jar2.1.2
    jakarta.management.j2eejakarta.management.j2ee-api1.1.4jar
    jakarta.persistencejakarta.persistence-api2.2.3jar3.2.0-M1
    jakarta.servletjakarta.servlet-api4.0.4jar6.1.0-M1
    jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7jar3.0.0
    jakarta.transactionjakarta.transaction-api1.3.3jar2.0.1
    jakarta.validationjakarta.validation-api2.0.2jar3.1.0-M1
    jakarta.websocketjakarta.websocket-api1.1.2jar2.2.0-M1
    jakarta.ws.rsjakarta.ws.rs-api2.1.6jar3.1.0
    jakarta.xml.bindjakarta.xml.bind-api2.3.3jar4.0.1
    jakarta.xml.soapjakarta.xml.soap-api1.4.2jar3.0.1
    jakarta.xml.wsjakarta.xml.ws-api2.3.3jar4.0.1
    javax.activationjavax.activation-api1.2.0jar
    javax.annotationjavax.annotation-api1.3.2jar
    javax.cachecache-api1.1.1jar
    javax.jmsjavax.jms-api2.0.1jar
    javax.jsonjavax.json-api1.1.4jar
    javax.json.bindjavax.json.bind-api1.0jar
    javax.mailjavax.mail-api1.6.2jar
    javax.moneymoney-api1.1jar
    javax.persistencejavax.persistence-api2.2jar
    javax.servletjavax.servlet-api4.0.1jar
    javax.servletjstl1.2jar
    javax.transactionjavax.transaction-api1.3jar
    javax.validationvalidation-api2.0.1.Finaljar
    javax.websocketjavax.websocket-api1.1jar
    javax.xml.bindjaxb-api2.3.1jar2.4.0-b180830.0359
    javax.xml.wsjaxws-api2.3.1jar
    jaxenjaxen1.2.0jar2.0.0
    junitjunit4.13.2jar
    net.bytebuddybyte-buddy1.12.23jar1.14.11
    net.bytebuddybyte-buddy-agent1.12.23jar1.14.11
    net.minidevjson-smart2.4.11jar2.5.0
    net.sf.ehcacheehcache2.10.9.2jar
    net.sourceforge.htmlunithtmlunit2.60.0jar2.70.0
    net.sourceforge.jtdsjtds1.3.1jar
    net.sourceforge.nekohtmlnekohtml1.9.22jar
    nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0jar3.3.0
    org.apache.activemqactivemq-amqp5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-blueprint5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-broker5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-camel5.16.7jar
    org.apache.activemqactivemq-client5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-console5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-http5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-jaas5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-jdbc-store5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-jms-pool5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-kahadb-store5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-karaf5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-leveldb-store5.16.7jar
    org.apache.activemqactivemq-log4j-appender5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-mqtt5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-openwire-generator5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-openwire-legacy5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-osgi5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-partition5.16.7jar5.18.3
    org.apache.activemqactivemq-pool5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-ra5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-run5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-runtime-config5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-shiro5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-spring5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-stomp5.16.7jar5.18.36.0.1
    org.apache.activemqactivemq-web5.16.7jar5.18.36.0.1
    org.apache.activemqartemis-amqp-protocol2.19.1jar2.32.0
    org.apache.activemqartemis-commons2.19.1jar2.32.0
    org.apache.activemqartemis-core-client2.19.1jar2.32.0
    org.apache.activemqartemis-jdbc-store2.19.1jar2.32.0
    org.apache.activemqartemis-jms-client2.19.1jar2.32.0
    org.apache.activemqartemis-jms-server2.19.1jar2.32.0
    org.apache.activemqartemis-journal2.19.1jar2.32.0
    org.apache.activemqartemis-quorum-api2.19.1jar2.32.0
    org.apache.activemqartemis-selector2.19.1jar2.32.0
    org.apache.activemqartemis-server2.19.1jar2.32.0
    org.apache.activemqartemis-service-extensions2.19.1jar2.32.0
    org.apache.commonscommons-dbcp22.9.0jar2.11.0
    org.apache.commonscommons-lang33.12.0jar3.14.0
    org.apache.commonscommons-pool22.11.1jar2.12.0
    org.apache.derbyderby10.14.2.0jar10.17.1.0
    org.apache.derbyderbyclient10.14.2.0jar10.17.1.0
    org.apache.derbyderbynet10.14.2.0jar10.17.1.0
    org.apache.derbyderbyoptionaltools10.14.2.0jar10.17.1.0
    org.apache.derbyderbytools10.14.2.0jar10.17.1.0
    org.apache.httpcomponentsfluent-hc4.5.14jar
    org.apache.httpcomponentshttpasyncclient4.1.5jar
    org.apache.httpcomponentshttpclient4.5.14jar
    org.apache.httpcomponentshttpclient-cache4.5.14jar
    org.apache.httpcomponentshttpclient-osgi4.5.14jar
    org.apache.httpcomponentshttpclient-win4.5.14jar
    org.apache.httpcomponentshttpcore4.4.16jar
    org.apache.httpcomponentshttpcore-nio4.4.16jar
    org.apache.httpcomponentshttpmime4.5.14jar
    org.apache.httpcomponents.client5httpclient55.1.4jar5.4-alpha1
    org.apache.httpcomponents.client5httpclient5-cache5.1.4jar5.4-alpha1
    org.apache.httpcomponents.client5httpclient5-fluent5.1.4jar5.4-alpha1
    org.apache.httpcomponents.client5httpclient5-win5.1.4jar5.2.3
    org.apache.httpcomponents.core5httpcore55.1.5jar5.3-alpha1
    org.apache.httpcomponents.core5httpcore5-h25.1.5jar5.3-alpha1
    org.apache.httpcomponents.core5httpcore5-reactive5.1.5jar5.3-alpha1
    org.apache.johnzonjohnzon-core1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jaxrs1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jsonb1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jsonb-extras1.2.21jar2.0.0
    org.apache.johnzonjohnzon-jsonschema1.2.21jar2.0.0
    org.apache.johnzonjohnzon-mapper1.2.21jar2.0.0
    org.apache.johnzonjohnzon-websocket1.2.21jar2.0.0
    org.apache.kafkaconnect3.1.2jar3.6.1
    org.apache.kafkaconnect-api3.1.2jar3.6.1
    org.apache.kafkaconnect-basic-auth-extension3.1.2jar3.6.1
    org.apache.kafkaconnect-file3.1.2jar3.6.1
    org.apache.kafkaconnect-json3.1.2jar3.6.1
    org.apache.kafkaconnect-mirror3.1.2jar3.6.1
    org.apache.kafkaconnect-mirror-client3.1.2jar3.6.1
    org.apache.kafkaconnect-runtime3.1.2jar3.6.1
    org.apache.kafkaconnect-transforms3.1.2jar3.6.1
    org.apache.kafkagenerator3.1.2jar3.6.1
    org.apache.kafkakafka-clients3.1.2jar3.6.1
    org.apache.kafkakafka-log4j-appender3.1.2jar3.6.1
    org.apache.kafkakafka-metadata3.1.2jar3.6.1
    org.apache.kafkakafka-raft3.1.2jar3.6.1
    org.apache.kafkakafka-server-common3.1.2jar3.6.1
    org.apache.kafkakafka-shell3.1.2jar3.6.1
    org.apache.kafkakafka-storage3.1.2jar3.6.1
    org.apache.kafkakafka-storage-api3.1.2jar3.6.1
    org.apache.kafkakafka-streams3.1.2jar3.6.1
    org.apache.kafkakafka-streams-scala_2.123.1.2jar3.6.1
    org.apache.kafkakafka-streams-scala_2.133.1.2jar3.6.1
    org.apache.kafkakafka-streams-test-utils3.1.2jar3.6.1
    org.apache.kafkakafka-tools3.1.2jar3.6.1
    org.apache.kafkakafka_2.123.1.2jar3.6.1
    org.apache.kafkakafka_2.133.1.2jar3.6.1
    org.apache.kafkatrogdor3.1.2jar3.6.1
    org.apache.logging.log4jlog4j-1.2-api2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-api2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-appserver2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-cassandra2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-core2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-couchdb2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-docker2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-flume-ng2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-iostreams2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-jcl2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-jmx-gui2.17.2jar2.22.03.0.0-alpha1
    org.apache.logging.log4jlog4j-jpa2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-jpl2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-jul2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-kubernetes2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-layout-template-json2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-liquibase2.17.2jar2.19.03.0.0-alpha1
    org.apache.logging.log4jlog4j-mongodb32.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-mongodb42.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-slf4j-impl2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-slf4j18-impl2.17.2jar2.18.0
    org.apache.logging.log4jlog4j-spring-boot2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-taglib2.17.2jar2.22.13.0.0-alpha1
    org.apache.logging.log4jlog4j-to-slf4j2.17.2jar2.22.13.0.0-beta1
    org.apache.logging.log4jlog4j-web2.17.2jar2.22.13.0.0-alpha1
    org.apache.solrsolr-analysis-extras8.11.2jar8.11.39.4.1
    org.apache.solrsolr-analytics8.11.2jar8.11.39.4.1
    org.apache.solrsolr-cell8.11.2jar8.11.3
    org.apache.solrsolr-core8.11.2jar8.11.39.4.1
    org.apache.solrsolr-dataimporthandler8.11.2jar8.11.3
    org.apache.solrsolr-dataimporthandler-extras8.11.2jar8.11.3
    org.apache.solrsolr-gcs-repository8.11.2jar8.11.39.4.1
    org.apache.solrsolr-jaegertracer-configurator8.11.2jar8.11.39.4.1
    org.apache.solrsolr-langid8.11.2jar8.11.39.4.1
    org.apache.solrsolr-ltr8.11.2jar8.11.39.4.1
    org.apache.solrsolr-prometheus-exporter8.11.2jar8.11.39.4.1
    org.apache.solrsolr-s3-repository8.11.2jar8.11.39.4.1
    org.apache.solrsolr-solrj8.11.2jar8.11.39.4.1
    org.apache.solrsolr-test-framework8.11.2jar8.11.39.4.1
    org.apache.solrsolr-velocity8.11.2jar8.11.3
    org.apache.tomcattomcat-annotations-api9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcattomcat-jdbc9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcattomcat-jsp-api9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-core9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-el9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-jasper9.0.83jar9.0.8511.0.0-M16
    org.apache.tomcat.embedtomcat-embed-websocket9.0.83jar9.0.8511.0.0-M16
    org.aspectjaspectjrt1.9.7jar1.9.21
    org.aspectjaspectjtools1.9.7jar1.9.21
    org.aspectjaspectjweaver1.9.7jar1.9.21
    org.assertjassertj-core3.22.0jar3.25.3
    org.awaitilityawaitility4.2.0jar
    org.awaitilityawaitility-groovy4.2.0jar
    org.awaitilityawaitility-kotlin4.2.0jar
    org.awaitilityawaitility-scala4.2.0jar
    org.cache2kcache2k-api2.6.1.Finaljar
    org.cache2kcache2k-config2.6.1.Finaljar
    org.cache2kcache2k-core2.6.1.Finaljar
    org.cache2kcache2k-jcache2.6.1.Finaljar
    org.cache2kcache2k-micrometer2.6.1.Finaljar
    org.cache2kcache2k-spring2.6.1.Finaljar
    org.codehaus.groovygroovy3.0.19jar3.0.20
    org.codehaus.groovygroovy-ant3.0.19jar3.0.20
    org.codehaus.groovygroovy-astbuilder3.0.19jar3.0.20
    org.codehaus.groovygroovy-bsf3.0.19jar3.0.20
    org.codehaus.groovygroovy-cli-commons3.0.19jar3.0.20
    org.codehaus.groovygroovy-cli-picocli3.0.19jar3.0.20
    org.codehaus.groovygroovy-console3.0.19jar3.0.20
    org.codehaus.groovygroovy-datetime3.0.19jar3.0.20
    org.codehaus.groovygroovy-dateutil3.0.19jar3.0.20
    org.codehaus.groovygroovy-docgenerator3.0.19jar3.0.20
    org.codehaus.groovygroovy-groovydoc3.0.19jar3.0.20
    org.codehaus.groovygroovy-groovysh3.0.19jar3.0.20
    org.codehaus.groovygroovy-jaxb3.0.19jar3.0.20
    org.codehaus.groovygroovy-jmx3.0.19jar3.0.20
    org.codehaus.groovygroovy-json3.0.19jar3.0.20
    org.codehaus.groovygroovy-jsr2233.0.19jar3.0.20
    org.codehaus.groovygroovy-macro3.0.19jar3.0.20
    org.codehaus.groovygroovy-nio3.0.19jar3.0.20
    org.codehaus.groovygroovy-servlet3.0.19jar3.0.20
    org.codehaus.groovygroovy-sql3.0.19jar3.0.20
    org.codehaus.groovygroovy-swing3.0.19jar3.0.20
    org.codehaus.groovygroovy-templates3.0.19jar3.0.20
    org.codehaus.groovygroovy-test3.0.19jar3.0.20
    org.codehaus.groovygroovy-test-junit53.0.19jar3.0.20
    org.codehaus.groovygroovy-testng3.0.19jar3.0.20
    org.codehaus.groovygroovy-xml3.0.19jar3.0.20
    org.codehaus.groovygroovy-yaml3.0.19jar3.0.20
    org.codehaus.janinocommons-compiler3.1.10jar3.1.12
    org.codehaus.janinocommons-compiler-jdk3.1.10jar3.1.12
    org.codehaus.janinojanino3.1.10jar3.1.12
    org.eclipse.jettyapache-jsp9.4.53.v20231009jar11.0.20
    org.eclipse.jettyapache-jstl9.4.53.v20231009jar11.0.0
    org.eclipse.jettyinfinispan-common9.4.53.v20231009jar11.0.20
    org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009jar11.0.20
    org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-alpn-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009jar
    org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009jar
    org.eclipse.jettyjetty-alpn-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-annotations9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-ant9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-client9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-continuation9.4.53.v20231009jar
    org.eclipse.jettyjetty-deploy9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-distribution9.4.53.v20231009zip11.0.0.beta1
    org.eclipse.jettyjetty-hazelcast9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-home9.4.53.v20231009zip12.0.6
    org.eclipse.jettyjetty-http9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-http-spi9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-io9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-jaas9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-jaspi9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-jmx9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-jndi9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-nosql9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-openid9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-plus9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-proxy9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-quickstart9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-reactive-httpclient1.1.15jar4.0.3
    org.eclipse.jettyjetty-rewrite9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-security9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-server9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-servlet9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-servlets9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-spring9.4.53.v20231009jar11.0.0.beta3
    org.eclipse.jettyjetty-unixsocket9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-util9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-util-ajax9.4.53.v20231009jar12.0.6
    org.eclipse.jettyjetty-webapp9.4.53.v20231009jar11.0.20
    org.eclipse.jettyjetty-xml9.4.53.v20231009jar12.0.6
    org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009jar12.0.6
    org.eclipse.jetty.http2http2-client9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-common9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-hpack9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.http2http2-server9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009jar12.0.6
    org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158jar
    org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009jar11.0.20
    org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009jar
    org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009jar
    org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009jar11.0.20
    org.ehcacheehcache3.10.8jar
    org.ehcacheehcache-clustered3.10.8jar
    org.ehcacheehcache-transactions3.10.8jar
    org.elasticsearchelasticsearch7.17.15jar7.17.188.12.1
    org.elasticsearch.clientelasticsearch-rest-client7.17.15jar7.17.188.12.1
    org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15jar7.17.188.12.1
    org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15jar7.17.188.0.0-alpha2
    org.elasticsearch.clienttransport7.17.15jar7.17.18
    org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15zip7.17.188.12.1
    org.elasticsearch.plugintransport-netty4-client7.17.15jar7.17.18
    org.firebirdsql.jdbcjaybird4.0.9.java8jar4.0.9.java114.0.10.java115.0.3.java11
    org.firebirdsql.jdbcjaybird-jdk184.0.9.java8jar4.0.10.java8
    org.flywaydbflyway-core8.5.13jar10.7.2
    org.flywaydbflyway-firebird8.5.13jar10.7.2
    org.flywaydbflyway-mysql8.5.13jar10.7.2
    org.flywaydbflyway-sqlserver8.5.13jar10.7.2
    org.freemarkerfreemarker2.3.32jar
    org.glassfishjakarta.el3.0.4jar5.0.0-M1
    org.glassfish.jaxbcodemodel2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbcodemodel-annotation-compiler2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbjaxb-jxc2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbjaxb-runtime2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbjaxb-xjc2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbtxw22.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbtxwc22.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jaxbxsom2.3.9jar2.4.0-b180830.04384.0.4
    org.glassfish.jersey.bundlesjaxrs-ri2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-apache-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-grizzly-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-helidon-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-jdk-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-jetty-connector2.35jar2.413.1.5
    org.glassfish.jersey.connectorsjersey-netty-connector2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-grizzly2-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-jdk-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-jetty-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-jetty-servlet2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-netty-http2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-servlet2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-servlet-core2.35jar2.413.1.5
    org.glassfish.jersey.containersjersey-container-simple-http2.35jar2.413.1.5
    org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35jar2.413.1.5
    org.glassfish.jersey.corejersey-client2.35jar2.413.1.5
    org.glassfish.jersey.corejersey-common2.35jar2.413.1.5
    org.glassfish.jersey.corejersey-server2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-bean-validation2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-declarative-linking2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-entity-filtering2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-metainf-services2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-bean-validation2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-freemarker2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-jsp2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-mvc-mustache2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-proxy-client2.35jar2.413.1.5
    org.glassfish.jersey.extjersey-servlet-portability2.35jar2.413.0.0-M6
    org.glassfish.jersey.extjersey-spring42.35jar2.413.0.0-M6
    org.glassfish.jersey.extjersey-spring52.35jar2.413.0.0-M6
    org.glassfish.jersey.extjersey-wadl-doclet2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35jar2.413.1.5
    org.glassfish.jersey.ext.cdijersey-weld2-se2.35jar2.413.1.5
    org.glassfish.jersey.ext.microprofilejersey-mp-config2.35jar2.413.1.5
    org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35jar2.413.1.5
    org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35jar2.413.1.5
    org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35jar2.413.1.5
    org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35jar2.413.1.5
    org.glassfish.jersey.injectjersey-cdi2-se2.35jar2.413.1.5
    org.glassfish.jersey.injectjersey-hk22.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-jaxb2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-binding2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-jackson2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-jettison2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-json-processing2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-kryo2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-moxy2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-multipart2.35jar2.413.1.5
    org.glassfish.jersey.mediajersey-media-sse2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth1-client2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth1-server2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth1-signature2.35jar2.413.1.5
    org.glassfish.jersey.securityoauth2-client2.35jar2.413.1.5
    org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35jar2.413.1.5
    org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35pom2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35jar2.413.1.5
    org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35jar2.413.1.5
    org.glassfish.webjakarta.servlet.jsp.jstl1.2.6jar3.0.1
    org.hamcresthamcrest2.2jar
    org.hamcresthamcrest-core2.2jar
    org.hamcresthamcrest-library2.2jar
    org.hibernatehibernate-c3p05.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-core5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-ehcache5.6.15.Finaljar6.0.0.Alpha7
    org.hibernatehibernate-entitymanager5.6.15.Finaljar6.0.0.Alpha7
    org.hibernatehibernate-envers5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-hikaricp5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-java85.6.15.Finaljar6.0.0.Alpha7
    org.hibernatehibernate-jcache5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-jpamodelgen5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-micrometer5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-proxool5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-spatial5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-testing5.6.15.Finaljar6.4.4.Final
    org.hibernatehibernate-vibur5.6.15.Finaljar6.4.4.Final
    org.hibernate.validatorhibernate-validator6.2.5.Finaljar8.0.1.Final
    org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Finaljar8.0.1.Final
    org.hsqldbhsqldb2.5.2jar2.7.2
    org.infinispaninfinispan-anchored-keys13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-jdbc13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-jpa13.0.20.Finaljar13.0.21.Final14.0.0.Dev02
    org.infinispaninfinispan-cachestore-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-rocksdb13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cachestore-sql13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cdi-common13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cdi-embedded13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cdi-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-checkstyle13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cli-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-client-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-client-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-cloudevents-integration13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-clustered-counter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-clustered-lock13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-commons-test13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-component-annotations13.0.20.Finalprovidedjar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-component-processor13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-console0.15.5.Finaljar15.0.0.Dev05
    org.infinispaninfinispan-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-extended-statistics13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-hibernate-cache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-hibernate-cache-spi13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-hibernate-cache-v5313.0.20.Finaljar13.0.21.Final14.0.0.Dev02
    org.infinispaninfinispan-jboss-marshalling13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-jcache13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-jcache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-jcache-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-key-value-store-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-marshaller-kryo13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-marshaller-protostuff13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-multimap13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-objectfilter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-query13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-query-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-query-dsl13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-remote-query-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-remote-query-server13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-scripting13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-memcached13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-router13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-runtime13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-testdriver-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-testdriver-junit413.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-server-testdriver-junit513.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring5-common13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring5-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-spring5-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
    org.infinispaninfinispan-tasks13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-tasks-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
    org.infinispaninfinispan-tools13.0.20.Finaljar15.0.0.Dev08
    org.infinispan.protostreamprotostream4.4.4.Finaljar4.6.5.Final14.0.0.CR2
    org.infinispan.protostreamprotostream-processor4.4.4.Finalprovidedjar4.6.5.Final14.0.0.CR2
    org.infinispan.protostreamprotostream-types4.4.4.Finaljar4.6.5.Final14.0.0.CR2
    org.influxdbinfluxdb-java2.22jar2.24
    org.jboss.loggingjboss-logging3.4.3.Finaljar3.5.3.Final
    org.jdomjdom22.0.6.1jar
    org.jetbrains.kotlinkotlin-compiler1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-daemon-client1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-main-kts1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-osgi-bundle1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-reflect1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-script-runtime1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-script-util1.6.21jar1.8.22
    org.jetbrains.kotlinkotlin-scripting-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-scripting-jvm1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-stdlib-js1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-annotations-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-common1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-js1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-junit1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-junit51.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinkotlin-test-testng1.6.21jar1.9.222.0.0-Beta3
    org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4jar1.8.0-RC2
    org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4jar1.8.0-RC2
    org.jolokiajolokia-core1.7.2jar
    org.jooqjooq3.14.16jar3.19.3
    org.jooqjooq-codegen3.14.16jar3.19.3
    org.jooqjooq-kotlin3.14.16jar3.19.3
    org.jooqjooq-meta3.14.16jar3.19.3
    org.junit.jupiterjunit-jupiter5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-api5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-engine5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-migrationsupport5.8.2jar5.10.2
    org.junit.jupiterjunit-jupiter-params5.8.2jar5.10.2
    org.junit.platformjunit-platform-commons1.8.2jar1.10.2
    org.junit.platformjunit-platform-console1.8.2jar1.10.2
    org.junit.platformjunit-platform-engine1.8.2jar1.10.2
    org.junit.platformjunit-platform-jfr1.8.2jar1.10.2
    org.junit.platformjunit-platform-launcher1.8.2jar1.10.2
    org.junit.platformjunit-platform-reporting1.8.2jar1.10.2
    org.junit.platformjunit-platform-runner1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite-api1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite-commons1.8.2jar1.10.2
    org.junit.platformjunit-platform-suite-engine1.8.2jar1.10.2
    org.junit.platformjunit-platform-testkit1.8.2jar1.10.2
    org.junit.vintagejunit-vintage-engine5.8.2jar5.10.2
    org.liquibaseliquibase-cdi4.9.1jar4.26.0
    org.liquibaseliquibase-core4.9.1jar4.26.0
    org.mariadbr2dbc-mariadb1.1.2jar1.1.4
    org.mariadb.jdbcmariadb-java-client3.1.4jar3.3.2
    org.messaginghubpooled-jms1.2.6jar3.1.5
    org.mockitomockito-android4.5.1jar4.11.05.10.0
    org.mockitomockito-core4.5.1jar4.11.05.10.0
    org.mockitomockito-errorprone4.5.1jar4.11.05.10.0
    org.mockitomockito-inline4.5.1jar4.11.05.2.0
    org.mockitomockito-junit-jupiter4.5.1jar4.11.05.10.0
    org.mockitomockito-proxy4.5.1jar4.11.05.10.0
    org.mongodbbson4.6.1jar4.11.15.0.0-beta0
    org.mongodbbson-record-codec4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-core4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-legacy4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-reactivestreams4.6.1jar4.11.15.0.0-beta0
    org.mongodbmongodb-driver-sync4.6.1jar4.11.15.0.0-beta0
    org.mortbay.jasperapache-el9.0.52jar9.0.83.110.1.16
    org.mybatismybatis3.5.15jar
    org.mybatismybatis-spring2.1.2jar3.0.3
    org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jar
    org.mybatis.scriptingmybatis-freemarker1.2.4jar
    org.mybatis.scriptingmybatis-thymeleaf1.0.4jar
    org.mybatis.scriptingmybatis-velocity2.1.2jar
    org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2jar3.0.3
    org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2jar3.0.3
    org.neo4j.driverneo4j-java-driver4.4.12jar4.4.135.17.0
    org.postgresqlpostgresql42.3.8jar42.7.1
    org.postgresqlr2dbc-postgresql0.9.2.RELEASEjar0.9.3.RELEASE1.0.4.RELEASE
    org.projectlomboklombok1.18.30jar
    org.quartz-schedulerquartz2.3.2jar2.5.0-rc1
    org.quartz-schedulerquartz-jobs2.3.2jar2.5.0-rc1
    org.reactivestreamsreactive-streams1.0.4jar
    org.seleniumhq.seleniumhtmlunit-driver3.61.0jar3.64.04.13.0
    org.seleniumhq.seleniumlift4.1.4jar4.14.0
    org.seleniumhq.seleniumselenium-api4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-chrome-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-chromium-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-devtools-v1004.1.4jar4.2.2
    org.seleniumhq.seleniumselenium-devtools-v1014.1.4jar4.3.0
    org.seleniumhq.seleniumselenium-devtools-v854.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-devtools-v994.1.4jar
    org.seleniumhq.seleniumselenium-edge-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-firefox-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-grid4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-http4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-ie-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-java4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-json4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-opera-driver4.1.4jar4.4.0
    org.seleniumhq.seleniumselenium-remote-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-safari-driver4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-session-map-redis4.1.4jar4.17.0
    org.seleniumhq.seleniumselenium-support4.1.4jar4.17.0
    org.skyscreamerjsonassert1.5.1jar
    org.slf4jjcl-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jjul-to-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jlog4j-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-api1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-ext1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-jcl1.7.36jar
    org.slf4jslf4j-jdk141.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-log4j121.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-nop1.7.36jar1.8.0-beta42.1.0-alpha1
    org.slf4jslf4j-simple1.7.36jar1.8.0-beta42.1.0-alpha1
    org.springframeworkspring-aop5.3.31jar6.1.3
    org.springframeworkspring-aspects5.3.31jar6.1.3
    org.springframeworkspring-beans5.3.31jar6.1.3
    org.springframeworkspring-context5.3.31jar6.1.3
    org.springframeworkspring-context-indexer5.3.31jar6.1.3
    org.springframeworkspring-context-support5.3.31jar6.1.3
    org.springframeworkspring-core5.3.31jar6.1.3
    org.springframeworkspring-expression5.3.31jar6.1.3
    org.springframeworkspring-instrument5.3.31jar6.1.3
    org.springframeworkspring-jcl5.3.31jar6.1.3
    org.springframeworkspring-jdbc5.3.31jar6.1.3
    org.springframeworkspring-jms5.3.31jar6.1.3
    org.springframeworkspring-messaging5.3.31jar6.1.3
    org.springframeworkspring-orm5.3.31jar6.1.3
    org.springframeworkspring-oxm5.3.31jar6.1.3
    org.springframeworkspring-r2dbc5.3.31jar6.1.3
    org.springframeworkspring-test5.3.31jar6.1.3
    org.springframeworkspring-tx5.3.31jar6.1.3
    org.springframeworkspring-web5.3.31jar6.1.3
    org.springframeworkspring-webflux5.3.31jar6.1.3
    org.springframeworkspring-webmvc5.3.31jar6.1.3
    org.springframeworkspring-websocket5.3.31jar6.1.3
    org.springframework.amqpspring-amqp2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit-junit2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit-stream2.4.17jar3.1.1
    org.springframework.amqpspring-rabbit-test2.4.17jar3.1.1
    org.springframework.batchspring-batch-core4.3.10jar5.1.0
    org.springframework.batchspring-batch-infrastructure4.3.10jar5.1.0
    org.springframework.batchspring-batch-integration4.3.10jar5.1.0
    org.springframework.batchspring-batch-test4.3.10jar5.1.0
    org.springframework.bootspring-boot2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-actuator2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-actuator-autoconfigure2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-autoconfigure2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-autoconfigure-processor2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-buildpack-platform2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-configuration-metadata2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-configuration-processor2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-devtools2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-jarmode-layertools2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-loader2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-loader-tools2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-properties-migrator2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-activemq2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-actuator2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-amqp2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-aop2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-artemis2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-batch2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-cache2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-cassandra2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-couchbase2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-jdbc2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-jpa2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-ldap2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-mongodb2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-neo4j2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-r2dbc2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-redis2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-data-rest2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-freemarker2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-graphql2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-groovy-templates2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-hateoas2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-integration2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jdbc2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jersey2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jetty2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jooq2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-json2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-jta-atomikos2.7.18jar
    org.springframework.bootspring-boot-starter-log4j22.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-logging2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-mail2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-mustache2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-oauth2-client2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-quartz2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-reactor-netty2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-rsocket2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-security2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-test2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-thymeleaf2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-tomcat2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-undertow2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-validation2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-web2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-web-services2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-webflux2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-starter-websocket2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-test2.7.18jar3.3.0-M1
    org.springframework.bootspring-boot-test-autoconfigure2.7.18jar3.3.0-M1
    org.springframework.dataspring-data-cassandra3.4.18jar4.2.2
    org.springframework.dataspring-data-commons2.7.18jar3.2.2
    org.springframework.dataspring-data-couchbase4.4.18jar5.2.2
    org.springframework.dataspring-data-elasticsearch4.4.18jar5.2.2
    org.springframework.dataspring-data-envers2.7.18jar3.2.2
    org.springframework.dataspring-data-geode2.7.18jar3.0.0-M6
    org.springframework.dataspring-data-jdbc2.4.18jar3.2.2
    org.springframework.dataspring-data-jpa2.7.18jar3.2.2
    org.springframework.dataspring-data-keyvalue2.7.18jar3.2.2
    org.springframework.dataspring-data-ldap2.7.18jar3.2.2
    org.springframework.dataspring-data-mongodb3.4.18jar4.2.2
    org.springframework.dataspring-data-neo4j6.3.18jar7.2.2
    org.springframework.dataspring-data-r2dbc1.5.18jar3.2.2
    org.springframework.dataspring-data-redis2.7.18jar3.2.2
    org.springframework.dataspring-data-relational2.4.18jar3.2.2
    org.springframework.dataspring-data-rest-core3.7.18jar4.2.2
    org.springframework.dataspring-data-rest-hal-explorer3.7.18jar4.2.2
    org.springframework.dataspring-data-rest-webmvc3.7.18jar4.2.2
    org.springframework.experimentalspring-aot0.12.2jar
    org.springframework.experimentalspring-native0.12.2jar
    org.springframework.graphqlspring-graphql1.0.6jar1.2.4
    org.springframework.graphqlspring-graphql-test1.0.6jar1.2.4
    org.springframework.hateoasspring-hateoas1.5.6jar2.2.0
    org.springframework.integrationspring-integration-amqp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-core5.5.20jar6.2.1
    org.springframework.integrationspring-integration-event5.5.20jar6.2.1
    org.springframework.integrationspring-integration-feed5.5.20jar6.2.1
    org.springframework.integrationspring-integration-file5.5.20jar6.2.1
    org.springframework.integrationspring-integration-ftp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-gemfire5.5.20jar6.0.0-M5
    org.springframework.integrationspring-integration-groovy5.5.20jar6.2.1
    org.springframework.integrationspring-integration-http5.5.20jar6.2.1
    org.springframework.integrationspring-integration-ip5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jdbc5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jms5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jmx5.5.20jar6.2.1
    org.springframework.integrationspring-integration-jpa5.5.20jar6.2.1
    org.springframework.integrationspring-integration-kafka5.5.20jar6.2.1
    org.springframework.integrationspring-integration-mail5.5.20jar6.2.1
    org.springframework.integrationspring-integration-mongodb5.5.20jar6.2.1
    org.springframework.integrationspring-integration-mqtt5.5.20jar6.2.1
    org.springframework.integrationspring-integration-r2dbc5.5.20jar6.2.1
    org.springframework.integrationspring-integration-redis5.5.20jar6.2.1
    org.springframework.integrationspring-integration-rmi5.5.20jar
    org.springframework.integrationspring-integration-rsocket5.5.20jar6.2.1
    org.springframework.integrationspring-integration-scripting5.5.20jar6.2.1
    org.springframework.integrationspring-integration-security5.5.20jar6.2.1
    org.springframework.integrationspring-integration-sftp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-stomp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-stream5.5.20jar6.2.1
    org.springframework.integrationspring-integration-syslog5.5.20jar6.2.1
    org.springframework.integrationspring-integration-test5.5.20jar6.2.1
    org.springframework.integrationspring-integration-test-support5.5.20jar6.2.1
    org.springframework.integrationspring-integration-webflux5.5.20jar6.2.1
    org.springframework.integrationspring-integration-websocket5.5.20jar6.2.1
    org.springframework.integrationspring-integration-ws5.5.20jar6.2.1
    org.springframework.integrationspring-integration-xml5.5.20jar6.2.1
    org.springframework.integrationspring-integration-xmpp5.5.20jar6.2.1
    org.springframework.integrationspring-integration-zeromq5.5.20jar6.2.1
    org.springframework.integrationspring-integration-zookeeper5.5.20jar6.2.1
    org.springframework.kafkaspring-kafka2.8.11jar2.9.133.1.1
    org.springframework.kafkaspring-kafka-test2.8.11jar2.9.133.1.1
    org.springframework.ldapspring-ldap-core2.4.1jar3.2.1
    org.springframework.ldapspring-ldap-core-tiger2.4.1jar3.0.0-M1
    org.springframework.ldapspring-ldap-ldif-core2.4.1jar3.2.1
    org.springframework.ldapspring-ldap-odm2.4.1jar3.2.1
    org.springframework.ldapspring-ldap-test2.4.1jar3.2.1
    org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-core2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASEjar3.0.1
    org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASEjar3.0.1
    org.springframework.retryspring-retry1.3.4jar2.0.5
    org.springframework.securityspring-security-acl5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-aspects5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-cas5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-config5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-core5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-crypto5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-data5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-ldap5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-messaging5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-client5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-core5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-jose5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-oauth2-resource-server5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-openid5.7.11jar5.8.96.0.0-M1
    org.springframework.securityspring-security-remoting5.7.11jar5.8.9
    org.springframework.securityspring-security-rsocket5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-saml2-service-provider5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-taglibs5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-test5.7.11jar5.8.96.3.0-M1
    org.springframework.securityspring-security-web5.7.11jar5.8.96.3.0-M1
    org.springframework.sessionspring-session-core2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-data-geode2.7.1jar2.7.23.0.0-M5
    org.springframework.sessionspring-session-data-mongodb2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-data-redis2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-hazelcast2.7.4jar3.3.0-M1
    org.springframework.sessionspring-session-jdbc2.7.4jar3.3.0-M1
    org.springframework.wsspring-ws-core3.1.8jar4.0.10
    org.springframework.wsspring-ws-security3.1.8jar4.0.10
    org.springframework.wsspring-ws-support3.1.8jar4.0.10
    org.springframework.wsspring-ws-test3.1.8jar4.0.10
    org.springframework.wsspring-xml3.1.8jar4.0.10
    org.thymeleafthymeleaf3.0.15.RELEASEjar3.1.2.RELEASE
    org.thymeleafthymeleaf-spring53.0.15.RELEASEjar3.1.2.RELEASE
    org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASEjar
    org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASEjar3.1.2.RELEASE
    org.webjarswebjars-locator-core0.50jar0.55
    org.xerialsqlite-jdbc3.36.0.3jar3.45.1.0
    org.xmlunitxmlunit-assertj2.9.1jar
    org.xmlunitxmlunit-assertj32.9.1jar
    org.xmlunitxmlunit-core2.9.1jar
    org.xmlunitxmlunit-legacy2.9.1jar
    org.xmlunitxmlunit-matchers2.9.1jar
    org.xmlunitxmlunit-placeholders2.9.1jar
    org.yamlsnakeyaml1.30jar1.332.2
    redis.clientsjedis3.8.0jar3.10.05.2.0-alpha2
    wsdl4jwsdl4j1.6.3jar
    StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    +

    Dependencies

    +

    This project does not declare any dependencies.

    +

    Dependency Updates

    +

    +

    antlr:antlr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idantlr
    Artifact Idantlr
    Current Version2.7.7
    Scope
    Classifier
    Typejar
    Newer versions20030911 Latest Major
    +

    ch.qos.logback:logback-access

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idch.qos.logback
    Artifact Idlogback-access
    Current Version1.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.2.13 Latest Incremental
    1.3.0-alpha0
    1.3.0-alpha1
    1.3.0-alpha2
    1.3.0-alpha3
    1.3.0-alpha4
    1.3.0-alpha5
    1.3.0-alpha6
    1.3.0-alpha7
    1.3.0-alpha8
    1.3.0-alpha9
    1.3.0-alpha10
    1.3.0-alpha11
    1.3.0-alpha12
    1.3.0-alpha13
    1.3.0-alpha14
    1.3.0-alpha15
    1.3.0-alpha16
    1.3.0-beta0
    1.3.0
    1.3.1
    1.3.2
    1.3.3
    1.3.4
    1.3.5
    1.3.6
    1.3.7
    1.3.8
    1.3.9
    1.3.10
    1.3.11
    1.3.12
    1.3.13
    1.3.14
    1.4.0
    1.4.1
    1.4.2
    1.4.3
    1.4.4
    1.4.5
    1.4.6
    1.4.7
    1.4.8
    1.4.9
    1.4.10
    1.4.11
    1.4.12
    1.4.13
    1.4.14 Latest Minor
    +

    ch.qos.logback:logback-classic

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idch.qos.logback
    Artifact Idlogback-classic
    Current Version1.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.2.13 Latest Incremental
    1.3.0-alpha0
    1.3.0-alpha1
    1.3.0-alpha2
    1.3.0-alpha3
    1.3.0-alpha4
    1.3.0-alpha5
    1.3.0-alpha6
    1.3.0-alpha7
    1.3.0-alpha8
    1.3.0-alpha9
    1.3.0-alpha10
    1.3.0-alpha11
    1.3.0-alpha12
    1.3.0-alpha13
    1.3.0-alpha14
    1.3.0-alpha15
    1.3.0-alpha16
    1.3.0-beta0
    1.3.0
    1.3.1
    1.3.2
    1.3.3
    1.3.4
    1.3.5
    1.3.6
    1.3.7
    1.3.8
    1.3.9
    1.3.10
    1.3.11
    1.3.12
    1.3.13
    1.3.14
    1.4.0
    1.4.1
    1.4.2
    1.4.3
    1.4.4
    1.4.5
    1.4.6
    1.4.7
    1.4.8
    1.4.9
    1.4.10
    1.4.11
    1.4.12
    1.4.13
    1.4.14 Latest Minor
    +

    ch.qos.logback:logback-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idch.qos.logback
    Artifact Idlogback-core
    Current Version1.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.2.13 Latest Incremental
    1.3.0-alpha0
    1.3.0-alpha1
    1.3.0-alpha2
    1.3.0-alpha3
    1.3.0-alpha4
    1.3.0-alpha5
    1.3.0-alpha6
    1.3.0-alpha7
    1.3.0-alpha8
    1.3.0-alpha9
    1.3.0-alpha10
    1.3.0-alpha11
    1.3.0-alpha12
    1.3.0-alpha13
    1.3.0-alpha14
    1.3.0-alpha15
    1.3.0-alpha16
    1.3.0-beta0
    1.3.0
    1.3.1
    1.3.2
    1.3.3
    1.3.4
    1.3.5
    1.3.6
    1.3.7
    1.3.8
    1.3.9
    1.3.10
    1.3.11
    1.3.12
    1.3.13
    1.3.14
    1.4.0
    1.4.1
    1.4.2
    1.4.3
    1.4.4
    1.4.5
    1.4.6
    1.4.7
    1.4.8
    1.4.9
    1.4.10
    1.4.11
    1.4.12
    1.4.13
    1.4.14 Latest Minor
    +

    com.atomikos:transactions-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.atomikos
    Artifact Idtransactions-jdbc
    Current Version4.0.6
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    6.0.0M1
    6.0.0M2
    6.0.0 Latest Major
    +

    com.atomikos:transactions-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.atomikos
    Artifact Idtransactions-jms
    Current Version4.0.6
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    6.0.0M1
    6.0.0M2
    6.0.0 Latest Major
    +

    com.atomikos:transactions-jta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.atomikos
    Artifact Idtransactions-jta
    Current Version4.0.6
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    6.0.0M1
    6.0.0M2
    6.0.0 Latest Major
    +

    com.couchbase.client:java-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.couchbase.client
    Artifact Idjava-client
    Current Version3.3.4
    Scope
    Classifier
    Typejar
    Newer versions3.4.0
    3.4.1
    3.4.2
    3.4.3
    3.4.4
    3.4.5
    3.4.6
    3.4.7
    3.4.8
    3.4.9
    3.4.10
    3.4.11
    3.5.0
    3.5.1
    3.5.2
    3.5.3 Latest Minor
    +

    com.datastax.oss:java-driver-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-core
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-core-shaded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-core-shaded
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-mapper-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-mapper-processor
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-mapper-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-mapper-runtime
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-metrics-micrometer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-metrics-micrometer
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-metrics-microprofile

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-metrics-microprofile
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-query-builder

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-query-builder
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:java-driver-shaded-guava

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-shaded-guava
    Current Version25.1-jre-graal-sub-1
    Scope
    Classifier
    Typejar
    +

    com.datastax.oss:java-driver-test-infra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.datastax.oss
    Artifact Idjava-driver-test-infra
    Current Version4.14.1
    Scope
    Classifier
    Typejar
    Newer versions4.15.0
    4.16.0
    4.17.0 Latest Minor
    +

    com.datastax.oss:native-protocol

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.datastax.oss
    Artifact Idnative-protocol
    Current Version1.5.1
    Scope
    Classifier
    Typejar
    +

    com.fasterxml:classmate

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml
    Artifact Idclassmate
    Current Version1.5.1
    Scope
    Classifier
    Typejar
    Newer versions1.6.0
    1.7.0 Latest Minor
    +

    com.fasterxml.jackson.core:jackson-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.core
    Artifact Idjackson-annotations
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.core:jackson-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.core
    Artifact Idjackson-core
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.core:jackson-databind

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.core
    Artifact Idjackson-databind
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-avro

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-avro
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-cbor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-cbor
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-csv

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-csv
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-ion

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-ion
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-properties

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-properties
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-protobuf
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-smile

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-smile
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-toml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-toml
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-xml
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.dataformat:jackson-dataformat-yaml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.dataformat
    Artifact Idjackson-dataformat-yaml
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-eclipse-collections

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-eclipse-collections
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-guava
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hibernate4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hibernate4
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hibernate5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hibernate5
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hibernate5-jakarta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hibernate5-jakarta
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-hppc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-hppc
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jakarta-jsonp
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jaxrs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jaxrs
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jdk8
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-joda

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-joda
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-joda-money

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-joda-money
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-json-org

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-json-org
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jsr310

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jsr310
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-jsr353

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-jsr353
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.datatype:jackson-datatype-pcollections

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.datatype
    Artifact Idjackson-datatype-pcollections
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-base
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-cbor-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-cbor-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-json-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-smile-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-smile-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-xml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-xml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-yaml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jakarta.rs
    Artifact Idjackson-jakarta-rs-yaml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-base

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-base
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-cbor-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-json-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-smile-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-xml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jaxrs
    Artifact Idjackson-jaxrs-yaml-provider
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-all

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-all
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-annotation-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-annotation-support
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-objects

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-objects
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-retrofit2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-retrofit2
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.jr:jackson-jr-stree

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.jr
    Artifact Idjackson-jr-stree
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-afterburner

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-afterburner
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-blackbird

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-blackbird
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-guice

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-guice
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-jakarta-xmlbind-annotations
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-jaxb-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-jaxb-annotations
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-jsonSchema

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-jsonSchema
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-kotlin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-kotlin
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-mrbean

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-mrbean
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-no-ctor-deser

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-no-ctor-deser
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-osgi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-osgi
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-parameter-names

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-parameter-names
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-paranamer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-paranamer
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_2.11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_2.11
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_2.12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_2.12
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_2.13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_2.13
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.fasterxml.jackson.module:jackson-module-scala_3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.fasterxml.jackson.module
    Artifact Idjackson-module-scala_3
    Current Version2.13.5
    Scope
    Classifier
    Typejar
    Newer versions2.14.0-rc1
    2.14.0-rc2
    2.14.0-rc3
    2.14.0
    2.14.1
    2.14.2
    2.14.3
    2.15.0-rc1
    2.15.0-rc2
    2.15.0-rc3
    2.15.0
    2.15.1
    2.15.2
    2.15.3
    2.16.0-rc1
    2.16.0
    2.16.1 Latest Minor
    +

    com.github.ben-manes.caffeine:caffeine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idcaffeine
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.ben-manes.caffeine:guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idguava
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.ben-manes.caffeine:jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idjcache
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.ben-manes.caffeine:simulator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.github.ben-manes.caffeine
    Artifact Idsimulator
    Current Version2.9.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8 Latest Major
    +

    com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.mxab.thymeleaf.extras
    Artifact Idthymeleaf-extras-data-attribute
    Current Version2.0.1
    Scope
    Classifier
    Typejar
    +

    com.google.appengine:appengine-api-1.0-sdk

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.google.appengine
    Artifact Idappengine-api-1.0-sdk
    Current Version1.9.98
    Scope
    Classifier
    Typejar
    Newer versions2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.0.13
    2.0.14
    2.0.15
    2.0.16
    2.0.17
    2.0.19
    2.0.20
    2.0.21
    2.0.22
    2.0.23
    2.0.24 Latest Major
    +

    com.google.code.gson:gson

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.google.code.gson
    Artifact Idgson
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    Newer versions2.10
    2.10.1 Latest Minor
    +

    com.graphql-java:graphql-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.graphql-java
    Artifact Idgraphql-java
    Current Version18.5
    Scope
    Classifier
    Typejar
    Newer versions18.6
    18.7 Latest Minor
    19.0
    19.1
    19.2
    19.3
    19.4
    19.5
    19.6
    19.7
    19.8
    19.9
    20.0
    20.1
    20.2
    20.3
    20.4
    20.5
    20.6
    20.7
    21.0
    21.1
    21.2
    21.3
    2018-06-04T04-23-07
    2018-06-04T04-37-12
    2018-06-04T05-35-18-e5b324e
    2018-06-04T06-08-37-e5b324e
    2018-06-04T06-12-10-9e01eaa
    2018-06-04T06-18-26-
    2018-06-04T06-32-44-
    2018-06-04T06-49-40-474b470
    2018-06-04T11-42-58-352f0df
    2018-06-04T21-54-46-f3ede8b
    2018-06-04T22-33-28-a93fe6a
    2018-06-04T22-49-40-ad9c92a
    2018-06-05T00-30-43-5e542a9
    2018-06-05T05-02-26-ca6f7fa
    2018-06-12T07-15-39-50a2a13
    2018-06-13T01-43-44-50a2a13
    2018-06-16T10-13-54-f3af483
    2018-06-19T22-08-22-7270438
    2018-06-20T08-24-34-aa92267
    2018-06-21T06-20-30-6984d3b
    2018-06-24T21-45-32-a683b9e
    2018-06-25T00-43-57-d087b4a
    2018-06-25T02-16-07-639aff3
    2018-06-27T00-18-28-1e12da9
    2018-07-04T08-09-58-795c232
    2018-07-11T08-11-14-394ca2a
    2018-07-12T05-33-47-67d6257
    2018-07-12T11-44-24-8d02fc7
    2018-07-13T04-59-30-f72244a
    2018-07-27T07-38-22-2fe7914
    2018-07-27T07-39-10-901db94
    2018-07-27T10-32-58-4d45311
    2018-07-27T10-57-25-ad87047
    2018-07-27T12-45-31-5b44eff
    2018-07-28T00-19-13-5ea18ff
    2018-07-30T00-23-12-bfee885
    2018-07-30T07-03-52-6e1bc02
    2018-08-01T04-10-44-b8b248a
    2018-08-07T03-17-17-653d67f
    2018-08-07T03-26-20-3b4957b
    2018-08-07T05-26-11-b835941
    2018-08-07T05-28-06-4c0c33a
    2018-08-14T07-47-58-fd2454f
    2018-08-16T09-47-33-00a720f
    2018-08-20T08-16-01-b66eade
    2018-08-20T08-17-20-0deb127
    2018-08-20T08-17-43-df4775c
    2018-08-20T09-22-08-f02ee24
    2018-08-20T10-18-26-0adc5f8
    2018-08-23T21-16-30-141b8e4
    2018-08-28T23-42-26-f2f4b1f
    2018-08-28T23-42-56-5c7b9ef
    2018-08-28T23-43-42-d049882
    2018-08-29T06-42-12-24db46a
    2018-08-29T21-42-21-9ed2843
    2018-08-30T23-23-01-6c72aaf
    2018-08-30T23-23-36-0b5f286
    2018-09-03T01-10-42-4485074
    2018-09-08T05-14-26-03482af
    2018-09-08T07-01-35-b55f8a5
    2018-09-09T01-51-54-4c5aca5
    2018-09-12T11-52-41-a96e963
    2018-09-13T04-39-06-fdefa43
    2018-09-13T04-41-01-179fb2e
    2018-09-13T21-08-39-094ff85
    2018-09-13T21-13-06-e45bea8
    2018-09-16T01-27-46-27a6e44
    2018-09-16T01-27-54-eef571c
    2018-09-17T07-40-50-27a6e44
    2018-09-17T07-41-05-efbcf37
    2018-09-17T23-03-05-4363a82
    2018-09-18T21-31-05-de360a0
    2018-09-18T21-34-59-8a5fa0a
    2018-09-23T22-54-34-e6a97f6
    2018-09-27T10-23-49-6b14546
    2018-09-28T03-46-03-b031cfc
    2018-09-30T06-30-11-d526d04
    2018-10-02T04-01-30-af07d80
    2018-10-03T06-38-59-a46d462
    2018-10-03T07-03-19-80342b2
    2018-10-03T07-16-06-0d80418
    2018-10-08T21-25-58-ac9d5c6
    2018-10-09T07-07-16-78a6e4e
    2018-10-10T05-31-53-0466a3d
    2018-10-10T05-39-21-5cda03c
    2018-10-10T20-51-25-232373f
    2018-10-15T22-47-19-99aac04
    2018-10-16T04-11-52-46045a8
    2018-10-17T06-19-11-93e6150
    2018-10-17T09-47-16-c9ea5fc
    2018-10-17T23-50-56-d72f029
    2018-10-18T07-23-00-873bada
    2018-10-18T11-21-20-610a527
    2018-10-24T21-14-21-5e2c94f
    2018-10-24T21-16-55-25378bd
    2018-10-29T04-08-41-1f24856
    2018-10-31T23-42-59-ec9e3af
    2018-11-02T07-27-33-d0923be
    2018-11-03T12-19-57-9a2d4e9
    2018-11-04T23-23-23-129abec
    2018-11-05T04-59-34-c74b23e
    2018-11-05T23-39-38-cfc12d8
    2018-11-06T00-25-39-b0c4c3a
    2018-11-06T00-28-15-ec46cb6
    2018-11-07T03-10-42-5f13464
    2018-11-10T08-58-30-1e95abd
    2018-11-10T09-39-09-1f6095c
    2018-11-11T09-23-20-3dcabef
    2018-11-12T02-07-25-6ddb87f
    2018-11-15T21-34-13-6aa96be-ignored-chars
    2018-11-15T21-34-14-7110576-ignored-chars
    2018-11-16T06-01-41-51c05da-ignored-chars
    2018-11-16T06-01-54-efdaa48-ignored-chars
    2018-11-23T05-36-03-4ec08db
    2018-11-23T06-25-41-8885cd7
    2018-11-23T06-31-20-93e0f57
    2018-11-25T22-27-06-516a0c0
    2018-11-27T19-56-11-4dc1e0c
    2018-11-28T07-49-46-b808a72
    2018-11-28T08-13-20-3ada93e
    2018-12-01T05-52-33-9ba3c0e
    2018-12-02T00-31-14-9340660
    2018-12-02T00-56-57-305860d
    2018-12-02T00-57-27-28e493d
    2018-12-02T06-51-22-11cfd04
    2018-12-02T22-14-34-9e39066
    2018-12-03T06-08-55-17933ec
    2018-12-03T21-48-15-b292ab6
    2018-12-05T06-30-06-08a8613
    2018-12-07T11-12-28-9a3c8e8
    2018-12-12T01-03-50-8c7555b
    2018-12-15T05-16-49-88447e1
    2018-12-15T05-18-06-44627e4
    2018-12-20T04-16-45-68c7660
    2018-12-20T04-30-44-18a4425
    2018-12-20T04-32-18-c1600b6
    2018-12-20T05-49-26-50fe7e0
    2018-12-20T08-18-59-8e766d1
    2018-12-21T20-58-21-f24510d
    2018-12-21T21-00-05-9a6abf2
    2018-12-27T23-19-05-67fa4d9
    2018-12-28T20-03-39-0d707e9
    2018-12-29T10-59-26-1c3efb3
    2018-12-29T11-23-37-f0927ca
    2018-12-29T11-25-17-1648f54
    2018-12-29T11-37-31-7b494d1
    2018-12-29T18-59-16-f40ec83
    2018-12-29T20-24-09-8cc00d2
    2018-12-29T21-18-13-65a2c1d
    2018-12-29T21-26-21-e889103
    2018-12-29T22-10-43-33fcbc9
    2018-12-29T22-19-16-b85e315
    2018-12-29T22-55-27-8229b75
    2018-12-30T04-49-43-b422b88
    2019-01-01T05-12-10-d7fdfed
    2019-01-01T05-14-41-147d2be
    2019-01-02T07-00-24-b2bcb40
    2019-01-03T03-56-42-93f1c2f
    2019-01-03T22-57-19-e75b425
    2019-01-04T02-53-37-38a8606
    2019-01-04T03-07-40-a61f4ee
    2019-01-08T03-54-43-27471f7
    2019-01-08T05-36-31-8aaada8
    2019-01-08T05-54-26-5ecf32d
    2019-01-09T03-01-00-2790caa
    2019-01-10T02-59-04-828bf5c
    2019-01-10T22-02-11-9d62329
    2019-01-10T23-02-15-e7b431a
    2019-01-13T21-59-35-d037062
    2019-01-14T04-17-45-64a3c82
    2019-01-14T06-41-16-ead6ec2
    2019-01-14T07-14-22-fb0fa63
    2019-01-14T22-57-55-82be22b
    2019-01-15T02-21-27-1dfebed
    2019-01-15T23-05-22-e916b02
    2019-01-17T02-23-57-ecf8a08
    2019-01-18T05-18-40-0f5a890
    2019-01-18T07-01-10-c4bcd3a
    2019-01-22T00-33-57-c967dac
    2019-01-22T01-01-11-41d67d7
    2019-01-29T03-32-34-3d271c3
    2019-01-30T23-39-33-803f5cb
    2019-01-31T22-07-02-5a8b1fd
    2019-01-31T22-16-02-fc21117
    2019-01-31T22-31-13-065791a
    2019-01-31T22-35-43-b807e80
    2019-02-06T00-46-18-1ce5113
    2019-02-06T23-32-55-d73dacf
    2019-02-06T23-38-59-5f8c5bd
    2019-02-07T02-30-53-e310dc3
    2019-02-13T17-42-01-858250e
    2019-02-15T22-43-48-1231dde
    2019-02-18T02-52-52-13eb79a
    2019-02-20T00-59-31-9356c3d
    2019-02-28T01-17-35-b2cc1c2
    2019-03-05T02-16-05-6df6640
    2019-03-05T02-23-47-f40315b
    2019-03-07T03-51-32-45bf5af
    2019-03-07T04-21-43-cf62a7a
    2019-03-07T04-34-55-809a980
    2019-03-10T22-41-06-9808185
    2019-03-11T03-25-33-b3c91e8
    2019-03-11T03-25-55-fc95640
    2019-03-11T03-56-07-7f6f32b
    2019-03-11T03-58-13-4123998
    2019-03-11T04-12-00-65dea85
    2019-03-11T22-39-51-03dc939
    2019-03-11T22-40-03-cf1e838
    2019-03-11T22-42-37-93b7b58
    2019-03-11T22-46-27-52a7b6e
    2019-03-12T01-04-49-36b1c03
    2019-03-13T23-23-44-ef9d07d
    2019-03-14T00-26-07-5568795
    2019-03-14T03-40-10-806cfe7
    2019-03-15T01-33-39-648b896
    2019-03-15T01-33-47-61d57a62
    2019-03-15T05-03-21-75fb184
    2019-03-15T05-03-30-4d2c0d53
    2019-03-15T05-09-19-cbcee57
    2019-03-15T05-09-35-519fb887
    2019-03-15T05-33-44-d008832
    2019-03-19T00-28-22-88ffeb5
    2019-03-19T00-30-59-070c3a0
    2019-03-20T02-17-59-e1e7997
    2019-03-20T05-29-23-55f1989
    2019-03-20T05-29-55-cdd0cbc
    2019-03-22T02-07-23-a35079e
    2019-03-22T05-12-51-10376ba
    2019-03-25T02-33-40-0759b8d
    2019-03-25T23-57-28-8ba2d1d
    2019-04-03T06-16-20-800ea0d
    2019-04-08T02-06-59-636f7b5
    2019-04-08T08-27-21-a8a273f
    2019-04-09T05-25-48-8bae13f
    2019-04-09T05-29-53-bd9240c
    2019-04-30T06-16-13-21dff06
    2019-04-30T09-15-46-9214b60
    2019-05-01T03-50-43-fccc0c7
    2019-05-08T00-35-46-439e342
    2019-05-08T02-44-45-b370703
    2019-05-08T02-56-27-cca4316
    2019-05-14T05-01-24-4fd3721
    2019-05-14T05-11-27-400d008
    2019-05-15T02-49-32-f210154
    2019-05-20T06-48-36-6211b41
    2019-05-27T00-36-13-3a76c4a
    2019-05-27T04-13-44-5373f96
    2019-06-02T22-40-24-fcf767d
    2019-06-02T22-45-30-ca06d0e
    2019-06-02T22-56-37-9a61bfe
    2019-06-02T22-59-08-c73f438
    2019-06-03T06-53-20-dca93a9
    2019-06-07T06-51-35-dbd4e5c
    2019-06-11T03-20-45-0a2bd30
    2019-06-11T23-47-53-e00b023
    2019-06-12T00-11-29-b63be73
    2019-06-12T00-15-04-812b16c
    2019-06-12T00-38-53-8b078c6
    2019-06-12T00-39-55-a79e385
    2019-06-12T01-22-00-6020f87
    2019-06-12T01-25-50-0fec4be
    2019-06-12T01-37-10-19c6d0e
    2019-06-12T01-52-32-821241d
    2019-06-12T02-31-14-25c8232
    2019-06-12T04-51-56-e994f41
    2019-06-30T23-27-16-d762310
    2019-07-01T00-55-49-7d393f2
    2019-07-13T23-07-14-8c71e18
    2019-07-15T04-01-33-505aa81
    2019-07-15T07-36-13-5761d24
    2019-07-16T03-12-18-3cbc1ad
    2019-07-22T04-16-08-a7fbf74
    2019-07-22T04-17-57-f8658f2
    2019-07-22T04-25-03-527c587
    2019-07-24T03-34-24-2e1e989
    2019-07-31T05-09-08-4cadb88
    2019-07-31T05-58-03-755f534
    2019-08-01T04-03-44-e9b53f6
    2019-08-02T04-53-20-6063e7e
    2019-08-05T08-05-20-1a9005b
    2019-08-05T23-30-46-c454ba2
    2019-08-12T01-44-36-bf793cd
    2019-08-19T04-09-16-346d65a
    2019-08-20T01-08-54-018b57c
    2019-08-21T00-49-42-2e990d1
    2019-08-21T21-45-38-376b03f
    2019-08-22T10-09-42-a6c4461
    2019-08-22T10-31-28-7ab93b9
    2019-08-22T10-35-04-37f3ae0
    2019-08-22T10-39-43-a6c4461
    2019-08-27T06-31-52-a897adc
    2019-08-28T11-47-05-b9487a9
    2019-09-03T10-51-46-6c01c80
    2019-09-03T10-52-49-bfb284b
    2019-09-07T05-58-28-e5a610f
    2019-09-07T08-04-35-735ce06
    2019-09-07T08-05-59-ac5bc70
    2019-09-07T08-08-53-173312e
    2019-09-19T04-42-21-1ea2ed2
    2019-09-19T06-25-59-5c242a1
    2019-09-22T22-20-34-9e83320
    2019-10-08T22-47-44-e938ab4
    2019-10-16T01-41-26-24f5233
    2019-10-20T21-46-20-a0a5d63
    2019-10-20T22-57-19-d6296e0
    2019-10-21T00-35-45-a74776c
    2019-10-24T23-50-27-97bffda
    2019-10-25T04-33-32-40db9de
    2019-10-25T08-51-57-a634053
    2019-10-31T04-37-48-0919e71
    2019-11-06T22-52-38-81c2a0f
    2019-11-07T04-06-09-70d9412
    2019-11-19T08-52-32-b46beb9
    2019-12-09T21-46-06-1b79628
    2019-12-09T21-46-27-74aed1a
    2019-12-30T22-55-41-9417e85
    2019-12-30T23-36-38-9e904ca
    2019-12-31T02-25-35-a83995a
    2020-01-03T02-30-05-b8be7d1
    2020-01-03T02-30-51-fb97f3e
    2020-01-05T23-01-12-2ba4a8b
    2020-01-08T08-53-38-a2dcfd6
    2020-01-09T05-33-37-df2835b
    2020-01-13T02-25-12-b623055
    2020-01-13T03-23-46-bcdc138
    2020-01-13T03-38-11-52de81a
    2020-01-13T06-33-52-50c242d
    2020-01-14T00-59-12-593322d
    2020-01-14T02-17-18-b5692e4
    2020-01-14T02-57-52-8fe5e53
    2020-01-14T02-58-58-f430282
    2020-01-14T05-48-31-952f075
    2020-01-14T06-42-43-bef3ac2
    2020-01-14T06-45-04-f40e454
    2020-01-14T23-35-06-d42516c
    2020-01-16T00-18-31-4cf3bdd
    2020-01-16T01-18-01-fd13faf
    2020-01-16T23-47-31-4533d01
    2020-01-16T23-48-44-eb6755b
    2020-01-16T23-58-55-fd9ce3a
    2020-01-17T00-14-43-8a58c25
    2020-01-17T00-41-05-5d4d25f
    2020-01-17T00-44-53-21cdd1d
    2020-01-17T00-46-52-8b78178
    2020-01-17T02-41-10-578985f
    2020-01-24T03-11-44-8a5fe91
    2020-01-29T00-34-54-44d9c56
    2020-01-29T23-51-37-f82b53c
    2020-02-03T01-49-24-d4f9b63
    2020-02-04T03-00-21-0a40ca4
    2020-02-06T00-24-40-5b511b8
    2020-02-09T23-23-33-8f335b3
    2020-02-10T04-57-01-e33c252
    2020-02-10T23-53-32-cfd210b
    2020-02-12T22-54-17-101dc6c
    2020-02-29T00-26-15-cf90d4a
    2020-02-29T01-57-30-987fd78
    2020-04-01T09-48-46-c98ebf7
    2020-04-04T07-05-23-9eae9c1
    2020-04-29T07-25-05-1a7c11c
    2020-05-07T00-47-53-9f8cc8e
    2020-05-08T01-07-05-c8de10e
    2020-05-19T06-33-01-57ce5cf
    2020-05-19T23-15-09-be48433
    2020-05-19T23-56-49-f409b66
    2020-05-20T03-21-18-21d1479
    2020-05-20T06-07-21-2e391c1
    2020-05-20T06-36-40-2a443b4
    2020-05-20T06-55-13-453773f
    2020-05-20T07-22-07-0b49de6
    2020-05-20T23-03-10-d9d29d9
    2020-05-20T23-17-21-bbb92ac
    2020-05-20T23-42-54-8f4cd45
    2020-05-21T05-06-09-4e43ef7
    2020-05-21T05-19-49-bdc958e
    2020-05-21T05-21-25-427f493
    2020-05-21T05-53-50-341e22c
    2020-05-21T07-38-42-2acb557
    2020-05-21T08-33-51-0b611f2
    2020-05-21T10-50-06-0a18992
    2020-05-21T23-09-51-9eb260e
    2020-05-22T05-23-36-4fe702b
    2020-05-22T05-46-34-000eb52
    2020-05-24T06-42-08-c508ac3
    2020-05-25T00-16-35-ebd15e0
    2020-05-25T00-18-12-74b4855
    2020-05-26T01-36-28-7770701
    2020-05-26T04-31-46-81d3ce4
    2020-05-27T11-37-07-bb47f29
    2020-05-28T00-32-38-497d2ac
    2020-05-28T02-17-41-bc29b5f
    2020-05-28T05-56-25-f328040
    2020-05-29T04-10-05-3dfbf01
    2020-06-05T10-44-09-eff6106
    2020-06-07T01-00-15-98bb45a
    2020-06-07T01-08-08-a9f7932
    2020-06-07T01-09-40-d94eacc
    2020-06-16T23-03-22-403a837
    2020-06-19T06-05-35-10eeacc
    2020-06-22T08-53-48-3101f48
    2020-06-22T09-12-11-a0d327d
    2020-06-22T09-38-54-c40fc1d
    2020-06-29T07-38-53-4a0a7af
    2020-06-30T22-36-45-ce7fd42
    2020-07-03T00-47-06-d3032e7
    2020-07-03T01-10-37-bb87d8f
    2020-08-24T06-09-06-d3b6af0
    2020-08-25T03-42-48-443390b
    2020-08-25T04-35-08-bab2a91
    2020-08-25T04-49-03-31f3d3f
    2020-08-25T05-10-41-2ed520e
    2020-08-25T06-42-13-d40046e
    2020-08-25T06-43-04-baeb392
    2020-08-25T06-43-52-1607bdf
    2020-08-25T07-30-29-fd556cc
    2020-08-25T07-31-26-c27a9cd
    2020-08-25T07-36-16-26a012c
    2020-08-25T07-38-57-05deb85
    2020-08-25T08-08-25-8b22a39
    2020-08-25T15-37-52-a7117f8
    2020-08-31T04-32-29-6a56b3a
    2020-09-08T04-55-10-f64f1cd
    2020-09-08T04-55-19-30e680b
    2020-09-08T04-56-12-5c5798e
    2020-09-08T04-56-57-be01c7f
    2020-09-08T04-57-53-264cb12
    2020-09-08T23-57-06-7ee7602
    2020-09-10T23-56-06-6f9b54d
    2020-09-10T23-59-03-dcdea33
    2020-09-13T08-18-38-7fc94c5
    2020-09-13T08-19-45-0d97d9d
    2020-09-13T08-20-40-c3c48a2
    2020-09-13T09-05-14-4b66774
    2020-09-14T23-02-53-a9151d3
    2020-09-14T23-03-24-5ebd3ac
    2020-09-14T23-04-32-61a78fe
    2020-09-17T10-31-42-09111ae
    2020-09-19T01-23-44-97a3073
    2020-09-19T01-24-58-592215d
    2020-09-21T10-25-11-af83f79
    2020-09-21T10-26-13-58daf97
    2020-09-23T01-42-02-53999d6
    2020-10-01T08-02-28-3998b0d
    2020-10-01T08-12-16-06593e2
    2020-10-01T08-12-52-24e4b17
    2020-10-01T08-13-33-6eb4df2
    2020-10-01T08-15-11-6cc1974
    2020-10-01T20-49-20-d2ca93c
    2020-10-01T21-02-05-1852cb7
    2020-10-01T21-06-37-558aeaa
    2020-10-06T07-50-37-7a8e903
    2020-10-09T06-02-11-8e55666
    2020-10-09T06-03-45-4a893b0
    2020-10-15T08-28-25-6af9785
    2020-10-16T05-33-59-df5bbde
    2020-10-20T00-43-22-34f34fe
    2020-10-20T01-20-15-2b4457c
    2020-10-21T10-06-46-49bbbeb
    2020-10-25T05-02-24-a39aec8
    2020-10-27T16-39-54-0de364a
    2020-10-27T17-35-04-0de364a
    2020-11-01T02-27-21-3295066
    2020-11-02T04-11-46-9ba7606
    2020-11-02T04-33-43-dd5d4d8
    2020-11-02T23-55-44-d576991
    2020-11-03T02-03-16-cf89ea3
    2020-11-04T22-40-01-afaa9aa
    2020-11-05T07-48-24-3dd5e02
    2020-11-10T10-26-00-07ca7ee
    2020-11-10T11-49-19-a1c123d
    2020-11-10T22-37-49-c801fd8
    2020-11-11T00-55-26-17f0e27
    2020-11-13T21-13-26-fb86ee6
    2020-11-16T00-00-07-ff3f691
    2020-11-16T00-02-27-3dfeae3
    2020-11-24T02-56-06-432d5f0
    2020-11-24T23-36-57-43668fb
    2020-11-28T08-02-26-b01df74
    2020-11-28T08-17-17-be8025f
    2020-12-09T22-35-43-9803c10
    2020-12-12T02-26-00-5e61bb3
    2020-12-13T07-30-15-d1a4c15
    2020-12-21T21-14-06-a12f84b
    2021-01-27T06-23-16-986ee60
    2021-01-29T11-36-47-b874235
    2021-01-30T04-10-11-59cd870
    2021-01-31T07-23-49-4d37858
    2021-02-02T00-45-04-fcce8632
    2021-02-02T01-21-59-55cccb55
    2021-02-02T01-28-37-13467897
    2021-02-02T01-34-58-8d747c1
    2021-02-02T01-35-37-3bae3c26
    2021-02-02T02-54-22-7c559d8d
    2021-02-02T02-59-50-70c1c921
    2021-02-02T03-06-53-a7c2d205
    2021-02-02T03-08-48-040823c2
    2021-02-02T03-45-35-79a57f67
    2021-02-02T03-49-01-6bf9674d
    2021-02-02T04-19-10-0e6921e1
    2021-02-06T05-29-55-33cd6e60
    2021-02-09T05-22-20-b645925f
    2021-02-10T08-16-57-4dbf45fd
    2021-02-13T02-14-19-a9de9cec
    2021-02-13T23-17-27-86627c27
    2021-02-17T06-17-55-6ffdd2d5
    2021-02-27T05-24-51-419acbb4
    2021-02-28T10-07-29-dbfb40d9
    2021-02-28T11-48-01-dc2cdda7
    2021-03-18T23-19-42-52ebe904
    2021-03-19T00-06-52-e166c255
    2021-03-19T01-12-05-a24cd52a
    2021-03-21T22-31-57-479b7a43
    2021-03-22T20-02-28-3a701a0f
    2021-03-25T09-33-46-e4c16ebb
    2021-03-25T21-09-07-5bc917f7
    2021-03-28T09-04-54-b1b364be
    2021-03-29T04-07-12-b98161f0
    2021-03-29T04-35-54-5e2ceda5
    2021-03-29T04-41-52-39ea068d
    2021-03-29T05-11-02-d63bb6b6
    2021-03-29T05-12-42-e5e8847b
    2021-03-29T05-13-32-fdea5cfc
    2021-03-29T21-50-33-a37cde2a
    2021-03-30T02-09-41-e91c8894
    2021-03-30T02-27-57-dbf4b18b
    2021-03-30T02-57-48-22314931
    2021-04-09T04-37-57-b510f5e6
    2021-04-11T23-40-30-f362d619
    2021-04-11T23-42-01-1d16e703
    2021-04-11T23-42-55-656f4e35
    2021-04-11T23-47-53-93cc5158
    2021-04-19T03-51-46-d783ec7e
    2021-04-27T02-21-11-eb3afc27
    2021-04-28T06-28-49-4d52fd0e
    2021-05-03T08-53-12-8f1ec444
    230521-nf-execution Latest Major
    +

    com.h2database:h2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.h2database
    Artifact Idh2
    Current Version2.1.214
    Scope
    Classifier
    Typejar
    Newer versions2.2.220
    2.2.222
    2.2.224 Latest Minor
    +

    com.hazelcast:hazelcast

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.hazelcast
    Artifact Idhazelcast
    Current Version5.1.7
    Scope
    Classifier
    Typejar
    Newer versions5.2-BETA-1
    5.2.0
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3.0-BETA-1
    5.3.0-BETA-2
    5.3.0
    5.3.1
    5.3.2
    5.3.4
    5.3.5
    5.3.6 Latest Minor
    +

    com.hazelcast:hazelcast-hibernate52

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.hazelcast
    Artifact Idhazelcast-hibernate52
    Current Version2.2.1
    Scope
    Classifier
    Typejar
    +

    com.hazelcast:hazelcast-hibernate53

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.hazelcast
    Artifact Idhazelcast-hibernate53
    Current Version2.2.1
    Scope
    Classifier
    Typejar
    Newer versions2.3.0 Latest Minor
    5.0.0
    5.1.0 Latest Major
    +

    com.hazelcast:hazelcast-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.hazelcast
    Artifact Idhazelcast-spring
    Current Version5.1.7
    Scope
    Classifier
    Typejar
    Newer versions5.2-BETA-1
    5.2.0
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3.0-BETA-1
    5.3.0-BETA-2
    5.3.0
    5.3.1
    5.3.2
    5.3.4
    5.3.5
    5.3.6 Latest Minor
    +

    com.ibm.db2:jcc

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.ibm.db2
    Artifact Idjcc
    Current Version11.5.9.0
    Scope
    Classifier
    Typejar
    +

    com.jayway.jsonpath:json-path

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.jayway.jsonpath
    Artifact Idjson-path
    Current Version2.7.0
    Scope
    Classifier
    Typejar
    Newer versions2.8.0
    2.9.0 Latest Minor
    +

    com.jayway.jsonpath:json-path-assert

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.jayway.jsonpath
    Artifact Idjson-path-assert
    Current Version2.7.0
    Scope
    Classifier
    Typejar
    Newer versions2.8.0
    2.9.0 Latest Minor
    +

    com.microsoft.sqlserver:mssql-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idcom.microsoft.sqlserver
    Artifact Idmssql-jdbc
    Current Version10.2.3.jre8
    Scope
    Classifier
    Typejar
    Newer versions10.2.3.jre11
    10.2.3.jre17 Latest Subincremental
    11.1.0-SNAPSHOT.jre8-preview
    11.1.0-SNAPSHOT.jre11-preview
    11.1.0-SNAPSHOT.jre17-preview
    11.1.0.jre8-preview
    11.1.0.jre11-preview
    11.1.0.jre17-preview
    11.1.1.jre8-preview
    11.1.1.jre11-preview
    11.1.1.jre17-preview
    11.1.1.jre18-preview
    11.1.2.jre8-preview
    11.1.2.jre11-preview
    11.1.2.jre17-preview
    11.1.2.jre18-preview
    11.2.0.jre8
    11.2.0.jre11
    11.2.0.jre17
    11.2.0.jre18
    11.2.1.jre8
    11.2.1.jre11
    11.2.1.jre17
    11.2.1.jre18
    11.2.2.jre8
    11.2.2.jre11
    11.2.2.jre17
    11.2.2.jre18
    11.2.3.jre8
    11.2.3.jre11
    11.2.3.jre17
    11.2.3.jre18
    12.1.0.jre8-preview
    12.1.0.jre11-preview
    12.2.0.jre8
    12.2.0.jre11
    12.3.0.jre8-preview
    12.3.0.jre11-preview
    12.3.0.jre17-preview
    12.3.0.jre20-preview
    12.3.1.jre8-preview
    12.3.1.jre11-preview
    12.4.0.jre8
    12.4.0.jre8-preview
    12.4.0.jre11
    12.4.0.jre11-preview
    12.4.1.jre8
    12.4.1.jre11
    12.4.2.jre8
    12.4.2.jre11
    12.5.0.jre8-preview
    12.5.0.jre11-preview
    12.6.0.jre8
    12.6.0.jre11 Latest Major
    +

    com.mysql:mysql-connector-j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.mysql
    Artifact Idmysql-connector-j
    Current Version8.0.33
    Scope
    Classifier
    Typejar
    Newer versions8.1.0
    8.2.0
    8.3.0 Latest Minor
    +

    com.oracle.database.ha:ons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.ha
    Artifact Idons
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.ha:simplefan

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.ha
    Artifact Idsimplefan
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc11
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc11-production

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc11-production
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc8
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ojdbc8-production

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idojdbc8-production
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:rsi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Idrsi
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ucp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Iducp
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc:ucp11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc
    Artifact Iducp11
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.jdbc.debug:ojdbc11-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc11-observability-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11-observability-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc11_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc11dms_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc11dms_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8-observability-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8-observability-debug
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.jdbc.debug:ojdbc8dms_g

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.jdbc.debug
    Artifact Idojdbc8dms_g
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.nls:orai18n

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.nls
    Artifact Idorai18n
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.observability:dms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Iddms
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.observability:ojdbc11-observability

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc11-observability
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.observability:ojdbc11dms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc11dms
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.observability:ojdbc8-observability

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc8-observability
    Current Version21.5.0.0
    Scope
    Classifier
    Typepom
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.observability:ojdbc8dms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.observability
    Artifact Idojdbc8dms
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.r2dbc:oracle-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.oracle.database.r2dbc
    Artifact Idoracle-r2dbc
    Current Version0.4.0
    Scope
    Classifier
    Typejar
    Newer versions1.0.0
    1.1.0
    1.1.1
    1.2.0 Latest Major
    +

    com.oracle.database.security:oraclepki

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.security
    Artifact Idoraclepki
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.security:osdt_cert

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.security
    Artifact Idosdt_cert
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.security:osdt_core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.security
    Artifact Idosdt_core
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    +

    com.oracle.database.xml:xdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.xml
    Artifact Idxdb
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.oracle.database.xml:xmlparserv2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.oracle.database.xml
    Artifact Idxmlparserv2
    Current Version21.5.0.0
    Scope
    Classifier
    Typejar
    Newer versions21.6.0.0
    21.6.0.0.1
    21.7.0.0
    21.8.0.0
    21.9.0.0
    21.10.0.0
    21.11.0.0 Latest Minor
    23.2.0.0
    23.3.0.23.09 Latest Major
    +

    com.querydsl:querydsl-apt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-apt
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-codegen-utils

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.querydsl
    Artifact Idquerydsl-codegen-utils
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    +

    com.querydsl:querydsl-collections

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-collections
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-core
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-guava
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-hibernate-search

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-hibernate-search
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-jdo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-jdo
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-jpa
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-jpa-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-jpa-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-kotlin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-kotlin
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-kotlin-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-kotlin-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-lucene3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-lucene3
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-lucene4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-lucene4
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-lucene5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-lucene5
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-mongodb
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-scala

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-scala
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-spatial

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-spatial
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql-codegen
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql-spatial

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql-spatial
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.querydsl:querydsl-sql-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.querydsl
    Artifact Idquerydsl-sql-spring
    Current Version5.0.0
    Scope
    Classifier
    Typejar
    Newer versions5.1.0 Latest Minor
    +

    com.rabbitmq:amqp-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.rabbitmq
    Artifact Idamqp-client
    Current Version5.14.3
    Scope
    Classifier
    Typejar
    Newer versions5.15.0
    5.16.0
    5.16.1
    5.17.0
    5.17.1
    5.18.0
    5.19.0
    5.20.0 Latest Minor
    +

    com.rabbitmq:stream-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.rabbitmq
    Artifact Idstream-client
    Current Version0.5.0
    Scope
    Classifier
    Typejar
    Newer versions0.6.0
    0.7.0
    0.8.0
    0.9.0
    0.10.0
    0.11.0
    0.12.0
    0.13.0
    0.14.0
    0.15.0 Latest Minor
    +

    com.samskivert:jmustache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.samskivert
    Artifact Idjmustache
    Current Version1.15
    Scope
    Classifier
    Typejar
    Newer versions1.16 Latest Minor
    +

    com.sendgrid:sendgrid-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.sendgrid
    Artifact Idsendgrid-java
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0
    4.10.1 Latest Minor
    +

    com.squareup.okhttp3:logging-interceptor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idlogging-interceptor
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:mockwebserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idmockwebserver
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okcurl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokcurl
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-brotli

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-brotli
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-dnsoverhttps

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-dnsoverhttps
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-sse

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-sse
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-tls

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-tls
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.squareup.okhttp3:okhttp-urlconnection

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcom.squareup.okhttp3
    Artifact Idokhttp-urlconnection
    Current Version4.9.3
    Scope
    Classifier
    Typejar
    Newer versions4.10.0-RC1
    4.10.0
    4.11.0
    4.12.0 Latest Minor
    5.0.0-alpha.1
    5.0.0-alpha.2
    5.0.0-alpha.3
    5.0.0-alpha.4
    5.0.0-alpha.5
    5.0.0-alpha.6
    5.0.0-alpha.7
    5.0.0-alpha.8
    5.0.0-alpha.9
    5.0.0-alpha.10
    5.0.0-alpha.11
    5.0.0-alpha.12 Latest Major
    +

    com.sun.activation:jakarta.activation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.sun.activation
    Artifact Idjakarta.activation
    Current Version1.2.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-rc1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1 Latest Major
    +

    com.sun.mail:jakarta.mail

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.sun.mail
    Artifact Idjakarta.mail
    Current Version1.6.7
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0-RC4
    2.0.0-RC5
    2.0.0-RC6
    2.0.0
    2.0.1 Latest Major
    +

    com.sun.xml.messaging.saaj:saaj-impl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.sun.xml.messaging.saaj
    Artifact Idsaaj-impl
    Current Version1.5.3
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0
    2.0.1
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    com.unboundid:unboundid-ldapsdk

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idcom.unboundid
    Artifact Idunboundid-ldapsdk
    Current Version6.0.10
    Scope
    Classifier
    Typejar
    Newer versions6.0.11 Latest Incremental
    +

    com.zaxxer:HikariCP

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idcom.zaxxer
    Artifact IdHikariCP
    Current Version4.0.3
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0 Latest Major
    +

    commons-codec:commons-codec

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idcommons-codec
    Artifact Idcommons-codec
    Current Version1.15
    Scope
    Classifier
    Typejar
    Newer versions1.16.0
    1.16.1 Latest Minor
    +

    commons-pool:commons-pool

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcommons-pool
    Artifact Idcommons-pool
    Current Version1.6
    Scope
    Classifier
    Typejar
    +

    de.flapdoodle.embed:de.flapdoodle.embed.mongo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idde.flapdoodle.embed
    Artifact Idde.flapdoodle.embed.mongo
    Current Version3.4.11
    Scope
    Classifier
    Typejar
    Newer versions3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4 Latest Minor
    4.0.0-beta
    4.0.1-beta
    4.0.2-beta
    4.0.3-beta
    4.0.4-beta
    4.0.5-beta
    4.0.6-beta
    4.0.7-beta
    4.0.8-beta
    4.0.9-beta
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.2.0
    4.3.0
    4.3.1
    4.3.2
    4.3.3
    4.4.0
    4.4.1
    4.5.0
    4.5.1
    4.6.0
    4.6.1
    4.6.2
    4.6.3
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.9.0
    4.9.1
    4.9.2
    4.9.3
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1
    4.12.0
    4.12.1
    4.12.2 Latest Major
    +

    io.dropwizard.metrics:metrics-annotation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-annotation
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-caffeine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-caffeine
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-caffeine3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-caffeine3
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-collectd

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-collectd
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-core
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-ehcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-ehcache
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-graphite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-graphite
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-healthchecks

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-healthchecks
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-httpasyncclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-httpasyncclient
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-httpclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-httpclient
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-httpclient5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-httpclient5
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jakarta-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jakarta-servlet
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jakarta-servlet6

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jakarta-servlet6
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jakarta-servlets

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jakarta-servlets
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jcache
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jdbi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jdbi
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jdbi3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jdbi3
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jersey2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jersey2
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jersey3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jersey3
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jersey31

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jersey31
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty10

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty10
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty11

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty11
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty12
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty12-ee10

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty12-ee10
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jetty9

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jetty9
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jmx
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-json
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-jvm
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-log4j2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-log4j2
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-logback

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-logback
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-logback13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-logback13
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-logback14

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-logback14
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-servlet
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.dropwizard.metrics:metrics-servlets

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.dropwizard.metrics
    Artifact Idmetrics-servlets
    Current Version4.2.22
    Scope
    Classifier
    Typejar
    Newer versions4.2.23
    4.2.24
    4.2.25 Latest Incremental
    +

    io.lettuce:lettuce-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.lettuce
    Artifact Idlettuce-core
    Current Version6.1.10.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions6.2.0.RELEASE
    6.2.1.RELEASE
    6.2.2.RELEASE
    6.2.3.RELEASE
    6.2.4.RELEASE
    6.2.5.RELEASE
    6.2.6.RELEASE
    6.2.7.RELEASE
    6.3.0.RELEASE
    6.3.1.RELEASE Latest Minor
    +

    io.micrometer:micrometer-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-core
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-appoptics

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-appoptics
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-atlas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-atlas
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-azure-monitor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-azure-monitor
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-cloudwatch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-cloudwatch
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-cloudwatch2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-cloudwatch2
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-datadog

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-datadog
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-dynatrace

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-dynatrace
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-elastic

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-elastic
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-ganglia

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-ganglia
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-graphite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-graphite
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-health

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-health
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-humio

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-humio
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-influx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-influx
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-jmx
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-kairos

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-kairos
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-new-relic

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-new-relic
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-opentsdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-opentsdb
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-otlp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-otlp
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-prometheus

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-prometheus
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-signalfx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-signalfx
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-stackdriver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-stackdriver
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-statsd

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-statsd
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-registry-wavefront

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-registry-wavefront
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.micrometer:micrometer-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.micrometer
    Artifact Idmicrometer-test
    Current Version1.9.17
    Scope
    Classifier
    Typejar
    Newer versions1.10.0-M1
    1.10.0-M2
    1.10.0-M3
    1.10.0-M4
    1.10.0-M5
    1.10.0-M6
    1.10.0-RC1
    1.10.0
    1.10.1
    1.10.2
    1.10.3
    1.10.4
    1.10.5
    1.10.6
    1.10.7
    1.10.8
    1.10.9
    1.10.10
    1.10.11
    1.10.12
    1.10.13
    1.11.0-M1
    1.11.0-M2
    1.11.0-RC1
    1.11.0
    1.11.1
    1.11.2
    1.11.3
    1.11.4
    1.11.5
    1.11.6
    1.11.7
    1.11.8
    1.12.0-M1
    1.12.0-M2
    1.12.0-M3
    1.12.0-RC1
    1.12.0
    1.12.1
    1.12.2 Latest Minor
    +

    io.netty:netty-all

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-all
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-buffer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-buffer
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-dns

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-dns
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-haproxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-haproxy
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-http
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-http2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-http2
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-memcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-memcache
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-mqtt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-mqtt
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-redis
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-codec-smtp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-smtp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-codec-socks

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-socks
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-stomp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-stomp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-codec-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-codec-xml
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-common
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-dev-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-dev-tools
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-example

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-example
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-handler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-handler
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-handler-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-handler-proxy
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-handler-ssl-ocsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-handler-ssl-ocsp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-resolver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-resolver-dns

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver-dns
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-resolver-dns-classes-macos

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver-dns-classes-macos
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-resolver-dns-native-macos

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-resolver-dns-native-macos
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-tcnative

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-tcnative
    Current Version2.0.61.Final
    Scope
    Classifierlinux-x86_64
    Typejar
    Newer versions2.0.62.Final Latest Incremental
    +

    io.netty:netty-tcnative-boringssl-static

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-tcnative-boringssl-static
    Current Version2.0.61.Final
    Scope
    Classifier
    Typejar
    Newer versions2.0.62.Final Latest Incremental
    +

    io.netty:netty-tcnative-classes

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-tcnative-classes
    Current Version2.0.61.Final
    Scope
    Classifier
    Typejar
    Newer versions2.0.62.Final Latest Incremental
    +

    io.netty:netty-transport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-classes-epoll

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-classes-epoll
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-classes-kqueue

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-classes-kqueue
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-native-epoll

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-native-epoll
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-native-kqueue

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-native-kqueue
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-native-unix-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-native-unix-common
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    +

    io.netty:netty-transport-rxtx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-rxtx
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-sctp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-sctp
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.netty:netty-transport-udt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.netty
    Artifact Idnetty-transport-udt
    Current Version4.1.101.Final
    Scope
    Classifier
    Typejar
    Newer versions4.1.102.Final
    4.1.103.Final
    4.1.104.Final
    4.1.105.Final
    4.1.106.Final Latest Incremental
    5.0.0.Alpha1
    5.0.0.Alpha2 Latest Major
    +

    io.projectreactor:reactor-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor
    Artifact Idreactor-core
    Current Version3.4.34
    Scope
    Classifier
    Typejar
    Newer versions3.4.35 Latest Incremental
    3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4
    3.5.5
    3.5.6
    3.5.7
    3.5.8
    3.5.9
    3.5.10
    3.5.11
    3.5.12
    3.5.13
    3.5.14
    3.6.0-M1
    3.6.0-M2
    3.6.0-M3
    3.6.0-RC1
    3.6.0
    3.6.1
    3.6.2 Latest Minor
    +

    io.projectreactor:reactor-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor
    Artifact Idreactor-test
    Current Version3.4.34
    Scope
    Classifier
    Typejar
    Newer versions3.4.35 Latest Incremental
    3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4
    3.5.5
    3.5.6
    3.5.7
    3.5.8
    3.5.9
    3.5.10
    3.5.11
    3.5.12
    3.5.13
    3.5.14
    3.6.0-M1
    3.6.0-M2
    3.6.0-M3
    3.6.0-RC1
    3.6.0
    3.6.1
    3.6.2 Latest Minor
    +

    io.projectreactor:reactor-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor
    Artifact Idreactor-tools
    Current Version3.4.34
    Scope
    Classifier
    Typejar
    Newer versions3.4.35 Latest Incremental
    3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1
    3.5.2
    3.5.3
    3.5.4
    3.5.5
    3.5.6
    3.5.7
    3.5.8
    3.5.9
    3.5.10
    3.5.11
    3.5.12
    3.5.13
    3.5.14
    3.6.0-M1
    3.6.0-M2
    3.6.0-M3
    3.6.0-RC1
    3.6.0
    3.6.1
    3.6.2 Latest Minor
    +

    io.projectreactor.addons:reactor-adapter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.projectreactor.addons
    Artifact Idreactor-adapter
    Current Version3.4.10
    Scope
    Classifier
    Typejar
    Newer versions3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1 Latest Minor
    +

    io.projectreactor.addons:reactor-extra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.projectreactor.addons
    Artifact Idreactor-extra
    Current Version3.4.10
    Scope
    Classifier
    Typejar
    Newer versions3.5.0-M1
    3.5.0-M2
    3.5.0-M3
    3.5.0-M4
    3.5.0-M5
    3.5.0-M6
    3.5.0-RC1
    3.5.0
    3.5.1 Latest Minor
    +

    io.projectreactor.addons:reactor-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.projectreactor.addons
    Artifact Idreactor-pool
    Current Version0.2.12
    Scope
    Classifier
    Typejar
    Newer versions1.0.0-M1
    1.0.0-M3
    1.0.0-M4
    1.0.0-M5
    1.0.0-M6
    1.0.0-RC1
    1.0.0
    1.0.1
    1.0.2
    1.0.3
    1.0.4
    1.0.5 Latest Major
    +

    io.projectreactor.kafka:reactor-kafka

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.projectreactor.kafka
    Artifact Idreactor-kafka
    Current Version1.3.22
    Scope
    Classifier
    Typejar
    +

    io.projectreactor.kotlin:reactor-kotlin-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.projectreactor.kotlin
    Artifact Idreactor-kotlin-extensions
    Current Version1.1.10
    Scope
    Classifier
    Typejar
    Newer versions1.2.0-M1
    1.2.0-M3
    1.2.0-M4
    1.2.0-M5
    1.2.0-M6
    1.2.0-RC1
    1.2.0
    1.2.1
    1.2.2 Latest Minor
    +

    io.projectreactor.netty:reactor-netty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.netty:reactor-netty-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty-core
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.netty:reactor-netty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty-http
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.netty:reactor-netty-http-brave

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.projectreactor.netty
    Artifact Idreactor-netty-http-brave
    Current Version1.0.39
    Scope
    Classifier
    Typejar
    Newer versions1.0.40
    1.0.41 Latest Incremental
    1.1.0-M1
    1.1.0-M2
    1.1.0-M3
    1.1.0-M4
    1.1.0-M5
    1.1.0-M6
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.1.8
    1.1.9
    1.1.10
    1.1.11
    1.1.12
    1.1.13
    1.1.14
    1.1.15 Latest Minor
    +

    io.projectreactor.rabbitmq:reactor-rabbitmq

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.projectreactor.rabbitmq
    Artifact Idreactor-rabbitmq
    Current Version1.5.6
    Scope
    Classifier
    Typejar
    +

    io.prometheus:simpleclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_caffeine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_caffeine
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_common
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_dropwizard

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_dropwizard
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_graphite_bridge

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_graphite_bridge
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_guava
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_hibernate

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_hibernate
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_hotspot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_hotspot
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_httpserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_httpserver
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_jetty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_jetty
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_jetty_jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_jetty_jdk8
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_log4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_log4j
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_log4j2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_log4j2
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_logback

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_logback
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_pushgateway

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_pushgateway
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_servlet
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_servlet_jakarta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_servlet_jakarta
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_spring_boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_spring_boot
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_spring_web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_spring_web
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_tracer_otel

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_tracer_otel
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_tracer_otel_agent

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_tracer_otel_agent
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.prometheus:simpleclient_vertx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.prometheus
    Artifact Idsimpleclient_vertx
    Current Version0.15.0
    Scope
    Classifier
    Typejar
    Newer versions0.16.0 Latest Minor
    +

    io.r2dbc:r2dbc-h2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-h2
    Current Version0.9.1.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.M6
    1.0.0.M7
    1.0.0.RC1
    1.0.0.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-mssql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idio.r2dbc
    Artifact Idr2dbc-mssql
    Current Version0.9.0.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions0.9.0.SONATYPE-M4 Latest Subincremental
    1.0.0.M6
    1.0.0.M7
    1.0.0.RC1
    1.0.0.RELEASE
    1.0.1.RELEASE
    1.0.2.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-pool
    Current Version0.9.2.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.RC1
    1.0.0.RELEASE
    1.0.1.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-proxy
    Current Version0.9.1.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.M7
    1.0.0.RELEASE
    1.0.1.RELEASE
    1.1.0.RELEASE
    1.1.1.RELEASE
    1.1.2.RELEASE
    1.1.3.RELEASE
    1.1.4.RELEASE Latest Major
    +

    io.r2dbc:r2dbc-spi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.r2dbc
    Artifact Idr2dbc-spi
    Current Version0.9.1.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.0.0.M4
    1.0.0.M5
    1.0.0.M6
    1.0.0.M7
    1.0.0.RELEASE Latest Major
    +

    io.reactivex:rxjava

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.reactivex
    Artifact Idrxjava
    Current Version1.3.8
    Scope
    Classifier
    Typejar
    +

    io.reactivex:rxjava-reactive-streams

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.reactivex
    Artifact Idrxjava-reactive-streams
    Current Version1.2.1
    Scope
    Classifier
    Typejar
    +

    io.reactivex.rxjava2:rxjava

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.reactivex.rxjava2
    Artifact Idrxjava
    Current Version2.2.21
    Scope
    Classifier
    Typejar
    +

    io.rest-assured:json-path

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idjson-path
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:json-schema-validator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idjson-schema-validator
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:kotlin-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idkotlin-extensions
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:rest-assured

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idrest-assured
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:rest-assured-all

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idrest-assured-all
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:rest-assured-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idrest-assured-common
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:scala-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idscala-support
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-commons
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-mock-mvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-mock-mvc
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-mock-mvc-kotlin-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-mock-mvc-kotlin-extensions
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:spring-web-test-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idspring-web-test-client
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured:xml-path

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idio.rest-assured
    Artifact Idxml-path
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions5.0.0
    5.0.1
    5.1.0
    5.1.1
    5.2.0
    5.2.1
    5.3.0
    5.3.1
    5.3.2
    5.4.0 Latest Major
    +

    io.rest-assured.examples:kotlin-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idkotlin-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:rest-assured-itest-java

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idrest-assured-itest-java
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scala-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscala-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scala-mock-mvc-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscala-mock-mvc-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scalatra-example

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscalatra-example
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    +

    io.rest-assured.examples:scalatra-webapp

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idscalatra-webapp
    Current Version4.5.1
    Scope
    Classifier
    Typewar
    +

    io.rest-assured.examples:spring-mvc-webapp

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.rest-assured.examples
    Artifact Idspring-mvc-webapp
    Current Version4.5.1
    Scope
    Classifier
    Typewar
    +

    io.rsocket:rsocket-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-core
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-load-balancer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-load-balancer
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-micrometer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-micrometer
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-test
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-transport-local

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-transport-local
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.rsocket:rsocket-transport-netty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idio.rsocket
    Artifact Idrsocket-transport-netty
    Current Version1.1.3
    Scope
    Classifier
    Typejar
    Newer versions1.1.4 Latest Incremental
    +

    io.spring.gradle:dependency-management-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.spring.gradle
    Artifact Iddependency-management-plugin
    Current Version1.0.15.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4 Latest Minor
    +

    io.undertow:undertow-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.undertow
    Artifact Idundertow-core
    Current Version2.2.28.Final
    Scope
    Classifier
    Typejar
    Newer versions2.3.0.Alpha1
    2.3.0.Alpha2
    2.3.0.Beta1
    2.3.0.Final
    2.3.1.Final
    2.3.2.Final
    2.3.3.Final
    2.3.4.Final
    2.3.5.Final
    2.3.6.Final
    2.3.7.Final
    2.3.8.Final
    2.3.9.Final
    2.3.10.Final Latest Minor
    +

    io.undertow:undertow-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.undertow
    Artifact Idundertow-servlet
    Current Version2.2.28.Final
    Scope
    Classifier
    Typejar
    Newer versions2.3.0.Alpha1
    2.3.0.Alpha2
    2.3.0.Beta1
    2.3.0.Final
    2.3.1.Final
    2.3.2.Final
    2.3.3.Final
    2.3.4.Final
    2.3.5.Final
    2.3.6.Final
    2.3.7.Final
    2.3.8.Final
    2.3.9.Final
    2.3.10.Final Latest Minor
    +

    io.undertow:undertow-websockets-jsr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idio.undertow
    Artifact Idundertow-websockets-jsr
    Current Version2.2.28.Final
    Scope
    Classifier
    Typejar
    Newer versions2.3.0.Alpha1
    2.3.0.Alpha2
    2.3.0.Beta1
    2.3.0.Final
    2.3.1.Final
    2.3.2.Final
    2.3.3.Final
    2.3.4.Final
    2.3.5.Final
    2.3.6.Final
    2.3.7.Final
    2.3.8.Final
    2.3.9.Final
    2.3.10.Final Latest Minor
    +

    jakarta.activation:jakarta.activation-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.activation
    Artifact Idjakarta.activation-api
    Current Version1.2.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-rc1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1
    2.1.0-RC1
    2.1.0-RC2
    2.1.0
    2.1.1
    2.1.2 Latest Major
    +

    jakarta.annotation:jakarta.annotation-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.annotation
    Artifact Idjakarta.annotation-api
    Current Version1.3.5
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0
    2.1.0-B1
    2.1.0
    2.1.1
    3.0.0-M1 Latest Major
    +

    jakarta.jms:jakarta.jms-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.jms
    Artifact Idjakarta.jms-api
    Current Version2.0.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0
    3.1.0 Latest Major
    +

    jakarta.json:jakarta.json-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.json
    Artifact Idjakarta.json-api
    Current Version1.1.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1
    2.0.2
    2.1.0-RC1
    2.1.0
    2.1.1
    2.1.2
    2.1.3 Latest Major
    +

    jakarta.json.bind:jakarta.json.bind-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.json.bind
    Artifact Idjakarta.json.bind-api
    Current Version1.0.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0
    3.0.0-RC1
    3.0.0 Latest Major
    +

    jakarta.mail:jakarta.mail-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.mail
    Artifact Idjakarta.mail-api
    Current Version1.6.7
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0-RC4
    2.0.0-RC5
    2.0.0-RC6
    2.0.0
    2.0.1
    2.1.0-RC1
    2.1.0-RC2
    2.1.0
    2.1.1
    2.1.2 Latest Major
    +

    jakarta.management.j2ee:jakarta.management.j2ee-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjakarta.management.j2ee
    Artifact Idjakarta.management.j2ee-api
    Current Version1.1.4
    Scope
    Classifier
    Typejar
    +

    jakarta.persistence:jakarta.persistence-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.persistence
    Artifact Idjakarta.persistence-api
    Current Version2.2.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.2.0-B01
    3.2.0-B02
    3.2.0-M1 Latest Major
    +

    jakarta.servlet:jakarta.servlet-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.servlet
    Artifact Idjakarta.servlet-api
    Current Version4.0.4
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0
    6.0.0
    6.1.0-M1 Latest Major
    +

    jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.servlet.jsp.jstl
    Artifact Idjakarta.servlet.jsp.jstl-api
    Current Version1.2.7
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0
    3.0.0 Latest Major
    +

    jakarta.transaction:jakarta.transaction-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.transaction
    Artifact Idjakarta.transaction-api
    Current Version1.3.3
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1-RC1
    2.0.1 Latest Major
    +

    jakarta.validation:jakarta.validation-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.validation
    Artifact Idjakarta.validation-api
    Current Version2.0.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0
    3.0.1
    3.0.2
    3.1.0-M1 Latest Major
    +

    jakarta.websocket:jakarta.websocket-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.websocket
    Artifact Idjakarta.websocket-api
    Current Version1.1.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0-RC1
    2.0.0
    2.1.0
    2.1.1
    2.2.0-M1 Latest Major
    +

    jakarta.ws.rs:jakarta.ws.rs-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.ws.rs
    Artifact Idjakarta.ws.rs-api
    Current Version2.1.6
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0
    3.1.0 Latest Major
    +

    jakarta.xml.bind:jakarta.xml.bind-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.xml.bind
    Artifact Idjakarta.xml.bind-api
    Current Version2.3.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0-RC2
    3.0.0-RC3
    3.0.0
    3.0.1
    4.0.0-RC1
    4.0.0-RC2
    4.0.0-RC3
    4.0.0
    4.0.1 Latest Major
    +

    jakarta.xml.soap:jakarta.xml.soap-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.xml.soap
    Artifact Idjakarta.xml.soap-api
    Current Version1.4.2
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-RC1
    2.0.0-RC2
    2.0.0-RC3
    2.0.0
    2.0.1
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1 Latest Major
    +

    jakarta.xml.ws:jakarta.xml.ws-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjakarta.xml.ws
    Artifact Idjakarta.xml.ws-api
    Current Version2.3.3
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-RC1
    3.0.0-RC2
    3.0.0-RC3
    3.0.0
    3.0.1
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1 Latest Major
    +

    javax.activation:javax.activation-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.activation
    Artifact Idjavax.activation-api
    Current Version1.2.0
    Scope
    Classifier
    Typejar
    +

    javax.annotation:javax.annotation-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.annotation
    Artifact Idjavax.annotation-api
    Current Version1.3.2
    Scope
    Classifier
    Typejar
    +

    javax.cache:cache-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.cache
    Artifact Idcache-api
    Current Version1.1.1
    Scope
    Classifier
    Typejar
    +

    javax.jms:javax.jms-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.jms
    Artifact Idjavax.jms-api
    Current Version2.0.1
    Scope
    Classifier
    Typejar
    +

    javax.json:javax.json-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.json
    Artifact Idjavax.json-api
    Current Version1.1.4
    Scope
    Classifier
    Typejar
    +

    javax.json.bind:javax.json.bind-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.json.bind
    Artifact Idjavax.json.bind-api
    Current Version1.0
    Scope
    Classifier
    Typejar
    +

    javax.mail:javax.mail-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.mail
    Artifact Idjavax.mail-api
    Current Version1.6.2
    Scope
    Classifier
    Typejar
    +

    javax.money:money-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.money
    Artifact Idmoney-api
    Current Version1.1
    Scope
    Classifier
    Typejar
    +

    javax.persistence:javax.persistence-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.persistence
    Artifact Idjavax.persistence-api
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    javax.servlet:javax.servlet-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.servlet
    Artifact Idjavax.servlet-api
    Current Version4.0.1
    Scope
    Classifier
    Typejar
    +

    javax.servlet:jstl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.servlet
    Artifact Idjstl
    Current Version1.2
    Scope
    Classifier
    Typejar
    +

    javax.transaction:javax.transaction-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.transaction
    Artifact Idjavax.transaction-api
    Current Version1.3
    Scope
    Classifier
    Typejar
    +

    javax.validation:validation-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.validation
    Artifact Idvalidation-api
    Current Version2.0.1.Final
    Scope
    Classifier
    Typejar
    +

    javax.websocket:javax.websocket-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.websocket
    Artifact Idjavax.websocket-api
    Current Version1.1
    Scope
    Classifier
    Typejar
    +

    javax.xml.bind:jaxb-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idjavax.xml.bind
    Artifact Idjaxb-api
    Current Version2.3.1
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0427
    2.4.0-b180830.0359 Latest Minor
    +

    javax.xml.ws:jaxws-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjavax.xml.ws
    Artifact Idjaxws-api
    Current Version2.3.1
    Scope
    Classifier
    Typejar
    +

    jaxen:jaxen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idjaxen
    Artifact Idjaxen
    Current Version1.2.0
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-beta-1
    2.0.0 Latest Major
    +

    junit:junit

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idjunit
    Artifact Idjunit
    Current Version4.13.2
    Scope
    Classifier
    Typejar
    +

    net.bytebuddy:byte-buddy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.bytebuddy
    Artifact Idbyte-buddy
    Current Version1.12.23
    Scope
    Classifier
    Typejar
    Newer versions1.13.0
    1.14.0
    1.14.1
    1.14.2
    1.14.3
    1.14.4
    1.14.5
    1.14.6
    1.14.7
    1.14.8
    1.14.9
    1.14.10
    1.14.11 Latest Minor
    +

    net.bytebuddy:byte-buddy-agent

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.bytebuddy
    Artifact Idbyte-buddy-agent
    Current Version1.12.23
    Scope
    Classifier
    Typejar
    Newer versions1.13.0
    1.14.0
    1.14.1
    1.14.2
    1.14.3
    1.14.4
    1.14.5
    1.14.6
    1.14.7
    1.14.8
    1.14.9
    1.14.10
    1.14.11 Latest Minor
    +

    net.minidev:json-smart

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.minidev
    Artifact Idjson-smart
    Current Version2.4.11
    Scope
    Classifier
    Typejar
    Newer versions2.5.0 Latest Minor
    +

    net.sf.ehcache:ehcache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.sf.ehcache
    Artifact Idehcache
    Current Version2.10.9.2
    Scope
    Classifier
    Typejar
    +

    net.sourceforge.htmlunit:htmlunit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnet.sourceforge.htmlunit
    Artifact Idhtmlunit
    Current Version2.60.0
    Scope
    Classifier
    Typejar
    Newer versions2.61.0
    2.62.0
    2.63.0
    2.64.0
    2.65.0
    2.65.1
    2.66.0
    2.67.0
    2.68.0
    2.69.0
    2.70.0 Latest Minor
    +

    net.sourceforge.jtds:jtds

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.sourceforge.jtds
    Artifact Idjtds
    Current Version1.3.1
    Scope
    Classifier
    Typejar
    +

    net.sourceforge.nekohtml:nekohtml

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.sourceforge.nekohtml
    Artifact Idnekohtml
    Current Version1.9.22
    Scope
    Classifier
    Typejar
    +

    nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idnz.net.ultraq.thymeleaf
    Artifact Idthymeleaf-layout-dialect
    Current Version3.0.0
    Scope
    Classifier
    Typejar
    Newer versions3.1.0
    3.2.0
    3.2.1
    3.3.0 Latest Minor
    +

    org.apache.activemq:activemq-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-amqp
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-blueprint

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-blueprint
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-broker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-broker
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-camel

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.activemq
    Artifact Idactivemq-camel
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    +

    org.apache.activemq:activemq-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-client
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-console
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-http
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-jaas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-jaas
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-jdbc-store

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-jdbc-store
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-jms-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-jms-pool
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-kahadb-store

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-kahadb-store
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-karaf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-karaf
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-leveldb-store

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.activemq
    Artifact Idactivemq-leveldb-store
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    +

    org.apache.activemq:activemq-log4j-appender

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-log4j-appender
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-mqtt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-mqtt
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-openwire-generator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-openwire-generator
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-openwire-legacy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-openwire-legacy
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-osgi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-osgi
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-partition

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-partition
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    +

    org.apache.activemq:activemq-pool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-pool
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-ra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-ra
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-run

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-run
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-runtime-config

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-runtime-config
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-shiro

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-shiro
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-spring
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-stomp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-stomp
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:activemq-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idactivemq-web
    Current Version5.16.7
    Scope
    Classifier
    Typejar
    Newer versions5.17.0
    5.17.1
    5.17.2
    5.17.3
    5.17.4
    5.17.5
    5.17.6
    5.18.0
    5.18.1
    5.18.2
    5.18.3 Latest Minor
    6.0.0
    6.0.1 Latest Major
    +

    org.apache.activemq:artemis-amqp-protocol

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-amqp-protocol
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-commons
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-core-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-core-client
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-jdbc-store

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-jdbc-store
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-jms-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-jms-client
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-jms-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-jms-server
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-journal

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-journal
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-quorum-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-quorum-api
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-selector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-selector
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-server
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.activemq:artemis-service-extensions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.activemq
    Artifact Idartemis-service-extensions
    Current Version2.19.1
    Scope
    Classifier
    Typejar
    Newer versions2.20.0
    2.21.0
    2.22.0
    2.23.0
    2.23.1
    2.24.0
    2.25.0
    2.26.0
    2.27.0
    2.27.1
    2.28.0
    2.29.0
    2.30.0
    2.31.0
    2.31.1
    2.31.2
    2.32.0 Latest Minor
    +

    org.apache.commons:commons-dbcp2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.commons
    Artifact Idcommons-dbcp2
    Current Version2.9.0
    Scope
    Classifier
    Typejar
    Newer versions2.10.0
    2.11.0 Latest Minor
    +

    org.apache.commons:commons-lang3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.commons
    Artifact Idcommons-lang3
    Current Version3.12.0
    Scope
    Classifier
    Typejar
    Newer versions3.13.0
    3.14.0 Latest Minor
    +

    org.apache.commons:commons-pool2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.commons
    Artifact Idcommons-pool2
    Current Version2.11.1
    Scope
    Classifier
    Typejar
    Newer versions2.12.0 Latest Minor
    +

    org.apache.derby:derby

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderby
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbyclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbyclient
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbynet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbynet
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbyoptionaltools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbyoptionaltools
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.derby:derbytools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.derby
    Artifact Idderbytools
    Current Version10.14.2.0
    Scope
    Classifier
    Typejar
    Newer versions10.15.1.3
    10.15.2.0
    10.16.1.1
    10.17.1.0 Latest Minor
    +

    org.apache.httpcomponents:fluent-hc

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idfluent-hc
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpasyncclient

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpasyncclient
    Current Version4.1.5
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient-cache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient-cache
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient-osgi

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient-osgi
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpclient-win

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpclient-win
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpcore

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpcore
    Current Version4.4.16
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpcore-nio

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpcore-nio
    Current Version4.4.16
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents:httpmime

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.httpcomponents
    Artifact Idhttpmime
    Current Version4.5.14
    Scope
    Classifier
    Typejar
    +

    org.apache.httpcomponents.client5:httpclient5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.3-alpha1
    5.3
    5.3.1
    5.4-alpha1 Latest Minor
    +

    org.apache.httpcomponents.client5:httpclient5-cache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5-cache
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.3-alpha1
    5.3
    5.3.1
    5.4-alpha1 Latest Minor
    +

    org.apache.httpcomponents.client5:httpclient5-fluent

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5-fluent
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.3-alpha1
    5.3
    5.3.1
    5.4-alpha1 Latest Minor
    +

    org.apache.httpcomponents.client5:httpclient5-win

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.client5
    Artifact Idhttpclient5-win
    Current Version5.1.4
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-beta1
    5.2
    5.2.1
    5.2.2
    5.2.3 Latest Minor
    +

    org.apache.httpcomponents.core5:httpcore5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.core5
    Artifact Idhttpcore5
    Current Version5.1.5
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-alpha2
    5.2-beta1
    5.2-beta2
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3-alpha1 Latest Minor
    +

    org.apache.httpcomponents.core5:httpcore5-h2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.core5
    Artifact Idhttpcore5-h2
    Current Version5.1.5
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-alpha2
    5.2-beta1
    5.2-beta2
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3-alpha1 Latest Minor
    +

    org.apache.httpcomponents.core5:httpcore5-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.httpcomponents.core5
    Artifact Idhttpcore5-reactive
    Current Version5.1.5
    Scope
    Classifier
    Typejar
    Newer versions5.2-alpha1
    5.2-alpha2
    5.2-beta1
    5.2-beta2
    5.2
    5.2.1
    5.2.2
    5.2.3
    5.2.4
    5.3-alpha1 Latest Minor
    +

    org.apache.johnzon:johnzon-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-core
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jaxrs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jaxrs
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jsonb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jsonb
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jsonb-extras

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jsonb-extras
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-jsonschema

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-jsonschema
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-mapper

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-mapper
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.johnzon:johnzon-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.apache.johnzon
    Artifact Idjohnzon-websocket
    Current Version1.2.21
    Scope
    Classifier
    Typejar
    Newer versions2.0.0 Latest Major
    +

    org.apache.kafka:connect

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-api
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-basic-auth-extension

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-basic-auth-extension
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-file

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-file
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-json
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-mirror

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-mirror
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-mirror-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-mirror-client
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-runtime
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:connect-transforms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idconnect-transforms
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:generator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idgenerator
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-clients

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-clients
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-log4j-appender

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-log4j-appender
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-metadata

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-metadata
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-raft

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-raft
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-server-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-server-common
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-shell

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-shell
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-storage

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-storage
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-storage-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-storage-api
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams-scala_2.12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams-scala_2.12
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams-scala_2.13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams-scala_2.13
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-streams-test-utils

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-streams-test-utils
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka-tools
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka_2.12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka_2.12
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:kafka_2.13

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idkafka_2.13
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.kafka:trogdor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.kafka
    Artifact Idtrogdor
    Current Version3.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.2.1
    3.2.2
    3.2.3
    3.3.0
    3.3.1
    3.3.2
    3.4.0
    3.4.1
    3.5.0
    3.5.1
    3.5.2
    3.6.0
    3.6.1 Latest Minor
    +

    org.apache.logging.log4j:log4j-1.2-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-1.2-api
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-api
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-appserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-appserver
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-cassandra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-cassandra
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-core
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-couchdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-couchdb
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-docker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-docker
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-flume-ng

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-flume-ng
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-iostreams

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-iostreams
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-jcl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jcl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-jmx-gui

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jmx-gui
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.22.0 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jpa
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-jpl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jpl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-jul

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-jul
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-kubernetes

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-kubernetes
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-layout-template-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-layout-template-json
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-liquibase

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-liquibase
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-mongodb3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-mongodb3
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-mongodb4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-mongodb4
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-slf4j-impl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-slf4j-impl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-slf4j18-impl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-slf4j18-impl
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0 Latest Minor
    +

    org.apache.logging.log4j:log4j-spring-boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-spring-boot
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-spring-cloud-config-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-spring-cloud-config-client
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-taglib

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-taglib
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.logging.log4j:log4j-to-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-to-slf4j
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1
    3.0.0-beta1 Latest Major
    +

    org.apache.logging.log4j:log4j-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.apache.logging.log4j
    Artifact Idlog4j-web
    Current Version2.17.2
    Scope
    Classifier
    Typejar
    Newer versions2.18.0
    2.19.0
    2.20.0
    2.21.0
    2.21.1
    2.22.0
    2.22.1 Latest Minor
    3.0.0-alpha1 Latest Major
    +

    org.apache.solr:solr-analysis-extras

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-analysis-extras
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-analytics

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-analytics
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-cell

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-cell
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.solr:solr-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-core
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-dataimporthandler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-dataimporthandler
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.solr:solr-dataimporthandler-extras

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-dataimporthandler-extras
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.solr:solr-gcs-repository

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-gcs-repository
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-jaegertracer-configurator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-jaegertracer-configurator
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-langid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-langid
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-ltr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-ltr
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-prometheus-exporter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-prometheus-exporter
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-s3-repository

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-s3-repository
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-solrj

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-solrj
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-test-framework

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-test-framework
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    9.0.0
    9.1.0
    9.1.1
    9.2.0
    9.2.1
    9.3.0
    9.4.0
    9.4.1 Latest Major
    +

    org.apache.solr:solr-velocity

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.solr
    Artifact Idsolr-velocity
    Current Version8.11.2
    Scope
    Classifier
    Typejar
    Newer versions8.11.3 Latest Incremental
    +

    org.apache.tomcat:tomcat-annotations-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat
    Artifact Idtomcat-annotations-api
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat:tomcat-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat
    Artifact Idtomcat-jdbc
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat:tomcat-jsp-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat
    Artifact Idtomcat-jsp-api
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-core
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-el

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-el
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-jasper

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-jasper
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.apache.tomcat.embed:tomcat-embed-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.apache.tomcat.embed
    Artifact Idtomcat-embed-websocket
    Current Version9.0.83
    Scope
    Classifier
    Typejar
    Newer versions9.0.84
    9.0.85 Latest Incremental
    10.0.0-M1
    10.0.0-M3
    10.0.0-M4
    10.0.0-M5
    10.0.0-M6
    10.0.0-M7
    10.0.0-M8
    10.0.0-M9
    10.0.0-M10
    10.0.0
    10.0.2
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.16
    10.0.17
    10.0.18
    10.0.20
    10.0.21
    10.0.22
    10.0.23
    10.0.26
    10.0.27
    10.1.0-M1
    10.1.0-M2
    10.1.0-M4
    10.1.0-M5
    10.1.0-M6
    10.1.0-M7
    10.1.0-M8
    10.1.0-M10
    10.1.0-M11
    10.1.0-M12
    10.1.0-M14
    10.1.0-M15
    10.1.0-M16
    10.1.0-M17
    10.1.0
    10.1.1
    10.1.2
    10.1.4
    10.1.5
    10.1.6
    10.1.7
    10.1.8
    10.1.9
    10.1.10
    10.1.11
    10.1.12
    10.1.13
    10.1.14
    10.1.15
    10.1.16
    10.1.17
    10.1.18
    11.0.0-M1
    11.0.0-M3
    11.0.0-M4
    11.0.0-M5
    11.0.0-M6
    11.0.0-M7
    11.0.0-M9
    11.0.0-M10
    11.0.0-M11
    11.0.0-M12
    11.0.0-M13
    11.0.0-M14
    11.0.0-M15
    11.0.0-M16 Latest Major
    +

    org.aspectj:aspectjrt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.aspectj
    Artifact Idaspectjrt
    Current Version1.9.7
    Scope
    Classifier
    Typejar
    Newer versions1.9.8.M1
    1.9.8.RC1
    1.9.8.RC2
    1.9.8.RC3
    1.9.8
    1.9.9
    1.9.9.1
    1.9.19
    1.9.20
    1.9.20.1
    1.9.21.M1
    1.9.21.RC1
    1.9.21 Latest Incremental
    +

    org.aspectj:aspectjtools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.aspectj
    Artifact Idaspectjtools
    Current Version1.9.7
    Scope
    Classifier
    Typejar
    Newer versions1.9.8.M1
    1.9.8.RC1
    1.9.8.RC2
    1.9.8.RC3
    1.9.8
    1.9.9
    1.9.9.1
    1.9.19
    1.9.20
    1.9.20.1
    1.9.21.M1
    1.9.21.RC1
    1.9.21 Latest Incremental
    +

    org.aspectj:aspectjweaver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.aspectj
    Artifact Idaspectjweaver
    Current Version1.9.7
    Scope
    Classifier
    Typejar
    Newer versions1.9.8.M1
    1.9.8.RC1
    1.9.8.RC2
    1.9.8.RC3
    1.9.8
    1.9.9
    1.9.9.1
    1.9.19
    1.9.20
    1.9.20.1
    1.9.21.M1
    1.9.21.RC1
    1.9.21 Latest Incremental
    +

    org.assertj:assertj-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.assertj
    Artifact Idassertj-core
    Current Version3.22.0
    Scope
    Classifier
    Typejar
    Newer versions3.23.0
    3.23.1
    3.24.0
    3.24.1
    3.24.2
    3.25.0
    3.25.1
    3.25.2
    3.25.3 Latest Minor
    +

    org.awaitility:awaitility

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.awaitility:awaitility-groovy

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility-groovy
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.awaitility:awaitility-kotlin

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility-kotlin
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.awaitility:awaitility-scala

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.awaitility
    Artifact Idawaitility-scala
    Current Version4.2.0
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-api
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-config

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-config
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-core
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-jcache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-jcache
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-micrometer

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-micrometer
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.cache2k:cache2k-spring

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.cache2k
    Artifact Idcache2k-spring
    Current Version2.6.1.Final
    Scope
    Classifier
    Typejar
    +

    org.codehaus.groovy:groovy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-ant

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-ant
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-astbuilder

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-astbuilder
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-bsf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-bsf
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-cli-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-cli-commons
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-cli-picocli

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-cli-picocli
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-console
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-datetime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-datetime
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-dateutil

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-dateutil
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-docgenerator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-docgenerator
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-groovydoc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-groovydoc
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-groovysh

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-groovysh
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-jaxb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-jaxb
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-jmx
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-json
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-jsr223

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-jsr223
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-macro

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-macro
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-nio

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-nio
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-servlet
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-sql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-sql
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-swing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-swing
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-templates

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-templates
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-test
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-test-junit5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-test-junit5
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-testng

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-testng
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-xml
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.groovy:groovy-yaml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.groovy
    Artifact Idgroovy-yaml
    Current Version3.0.19
    Scope
    Classifier
    Typejar
    Newer versions3.0.20 Latest Incremental
    +

    org.codehaus.janino:commons-compiler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.janino
    Artifact Idcommons-compiler
    Current Version3.1.10
    Scope
    Classifier
    Typejar
    Newer versions3.1.11
    3.1.12 Latest Incremental
    +

    org.codehaus.janino:commons-compiler-jdk

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.janino
    Artifact Idcommons-compiler-jdk
    Current Version3.1.10
    Scope
    Classifier
    Typejar
    Newer versions3.1.11
    3.1.12 Latest Incremental
    +

    org.codehaus.janino:janino

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.codehaus.janino
    Artifact Idjanino
    Current Version3.1.10
    Scope
    Classifier
    Typejar
    Newer versions3.1.11
    3.1.12 Latest Incremental
    +

    org.eclipse.jetty:apache-jsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idapache-jsp
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:apache-jstl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idapache-jstl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0 Latest Major
    +

    org.eclipse.jetty:infinispan-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idinfinispan-common
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:infinispan-embedded-query

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idinfinispan-embedded-query
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:infinispan-remote-query

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idinfinispan-remote-query
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-conscrypt-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-conscrypt-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-conscrypt-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-conscrypt-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-java-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-java-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-java-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-java-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-alpn-openjdk8-client

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-openjdk8-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty:jetty-alpn-openjdk8-server

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-openjdk8-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty:jetty-alpn-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-alpn-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-annotations
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-ant

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-ant
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-continuation

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-continuation
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty:jetty-deploy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-deploy
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-distribution

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-distribution
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typezip
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    11.0.0-alpha0
    11.0.0.beta1 Latest Major
    +

    org.eclipse.jetty:jetty-hazelcast

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-hazelcast
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-home

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-home
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typezip
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-http
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-http-spi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-http-spi
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-io

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-io
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-jaas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jaas
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-jaspi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jaspi
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jmx
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-jndi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-jndi
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-nosql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-nosql
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-openid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-openid
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-plus

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-plus
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-proxy
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-quickstart

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-quickstart
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-reactive-httpclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-reactive-httpclient
    Current Version1.1.15
    Scope
    Classifier
    Typejar
    Newer versions2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    4.0.0.beta0
    4.0.0.beta1
    4.0.0
    4.0.1
    4.0.2
    4.0.3 Latest Major
    +

    org.eclipse.jetty:jetty-rewrite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-rewrite
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-security
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-servlet
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-servlets

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-servlets
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-spring
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3 Latest Major
    +

    org.eclipse.jetty:jetty-unixsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-unixsocket
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-util

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-util
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-util-ajax

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-util-ajax
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty:jetty-webapp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-webapp
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty:jetty-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty
    Artifact Idjetty-xml
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty.fcgi:fcgi-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.fcgi
    Artifact Idfcgi-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.fcgi:fcgi-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.fcgi
    Artifact Idfcgi-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.gcloud:jetty-gcloud-session-manager

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.gcloud
    Artifact Idjetty-gcloud-session-manager
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty.http2:http2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-common
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-hpack

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-hpack
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-http-client-transport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-http-client-transport
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.http2:http2-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.http2
    Artifact Idhttp2-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.memcached:jetty-memcached-sessions

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.memcached
    Artifact Idjetty-memcached-sessions
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20
    12.0.0.alpha0
    12.0.0.alpha1
    12.0.0.alpha2
    12.0.0.alpha3
    12.0.0.beta0
    12.0.0.beta1
    12.0.0.beta2
    12.0.0.beta3
    12.0.0.beta4
    12.0.0
    12.0.1
    12.0.2
    12.0.3
    12.0.4
    12.0.5
    12.0.6 Latest Major
    +

    org.eclipse.jetty.orbit:javax.servlet.jsp

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.orbit
    Artifact Idjavax.servlet.jsp
    Current Version2.2.0.v201112011158
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.osgi:jetty-httpservice

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-httpservice
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.osgi:jetty-osgi-boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-osgi-boot
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.osgi:jetty-osgi-boot-jsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-osgi-boot-jsp
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.osgi:jetty-osgi-boot-warurl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.osgi
    Artifact Idjetty-osgi-boot-warurl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0.beta0
    10.0.0.beta1
    10.0.0.beta2
    10.0.0.beta3
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0-alpha0
    11.0.0.beta1
    11.0.0.beta2
    11.0.0.beta3
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.eclipse.jetty.websocket:javax-websocket-client-impl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idjavax-websocket-client-impl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:javax-websocket-server-impl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idjavax-websocket-server-impl
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-api

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-api
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-client

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-client
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-common

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-common
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-server

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-server
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    +

    org.eclipse.jetty.websocket:websocket-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.eclipse.jetty.websocket
    Artifact Idwebsocket-servlet
    Current Version9.4.53.v20231009
    Scope
    Classifier
    Typejar
    Newer versions10.0.0-alpha0
    10.0.0.alpha1
    10.0.0.alpha2
    10.0.0
    10.0.1
    10.0.2
    10.0.3
    10.0.4
    10.0.5
    10.0.6
    10.0.7
    10.0.8
    10.0.9
    10.0.10
    10.0.11
    10.0.12
    10.0.13
    10.0.14
    10.0.15
    10.0.16
    10.0.17
    10.0.18
    10.0.19
    10.0.20
    11.0.0
    11.0.1
    11.0.2
    11.0.3
    11.0.4
    11.0.5
    11.0.6
    11.0.7
    11.0.8
    11.0.9
    11.0.10
    11.0.11
    11.0.12
    11.0.13
    11.0.14
    11.0.15
    11.0.16
    11.0.17
    11.0.18
    11.0.19
    11.0.20 Latest Major
    +

    org.ehcache:ehcache

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ehcache
    Artifact Idehcache
    Current Version3.10.8
    Scope
    Classifier
    Typejar
    +

    org.ehcache:ehcache-clustered

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ehcache
    Artifact Idehcache-clustered
    Current Version3.10.8
    Scope
    Classifier
    Typejar
    +

    org.ehcache:ehcache-transactions

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ehcache
    Artifact Idehcache-transactions
    Current Version3.10.8
    Scope
    Classifier
    Typejar
    +

    org.elasticsearch:elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch
    Artifact Idelasticsearch
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.client:elasticsearch-rest-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idelasticsearch-rest-client
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.client:elasticsearch-rest-client-sniffer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idelasticsearch-rest-client-sniffer
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.client:elasticsearch-rest-high-level-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idelasticsearch-rest-high-level-client
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2 Latest Major
    +

    org.elasticsearch.client:transport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.client
    Artifact Idtransport
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    +

    org.elasticsearch.distribution.integ-test-zip:elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.distribution.integ-test-zip
    Artifact Idelasticsearch
    Current Version7.17.15
    Scope
    Classifier
    Typezip
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    8.0.0-alpha1
    8.0.0-alpha2
    8.0.0-beta1
    8.0.0-rc1
    8.0.0-rc2
    8.0.0
    8.0.1
    8.1.0
    8.1.1
    8.1.2
    8.1.3
    8.2.0
    8.2.1
    8.2.2
    8.2.3
    8.3.0
    8.3.1
    8.3.2
    8.3.3
    8.4.0
    8.4.1
    8.4.2
    8.4.3
    8.5.0
    8.5.1
    8.5.2
    8.5.3
    8.6.0
    8.6.1
    8.6.2
    8.7.0
    8.7.1
    8.8.0
    8.8.1
    8.8.2
    8.9.0
    8.9.1
    8.9.2
    8.10.0
    8.10.1
    8.10.2
    8.10.3
    8.10.4
    8.11.0
    8.11.1
    8.11.2
    8.11.3
    8.11.4
    8.12.0
    8.12.1 Latest Major
    +

    org.elasticsearch.plugin:transport-netty4-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.elasticsearch.plugin
    Artifact Idtransport-netty4-client
    Current Version7.17.15
    Scope
    Classifier
    Typejar
    Newer versions7.17.16
    7.17.17
    7.17.18 Latest Incremental
    +

    org.firebirdsql.jdbc:jaybird

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idorg.firebirdsql.jdbc
    Artifact Idjaybird
    Current Version4.0.9.java8
    Scope
    Classifier
    Typejar
    Newer versions4.0.9.java11 Latest Subincremental
    4.0.10.java7
    4.0.10.java8
    4.0.10.java11 Latest Incremental
    5.0.0.java8-beta-1
    5.0.0.java8
    5.0.0.java11-beta-1
    5.0.0.java11
    5.0.1.java8
    5.0.1.java11
    5.0.2.java8
    5.0.2.java11
    5.0.3.java8
    5.0.3.java11 Latest Major
    +

    org.firebirdsql.jdbc:jaybird-jdk18

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.firebirdsql.jdbc
    Artifact Idjaybird-jdk18
    Current Version4.0.9.java8
    Scope
    Classifier
    Typejar
    Newer versions4.0.10.java8 Latest Incremental
    +

    org.flywaydb:flyway-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-core
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.flywaydb:flyway-firebird

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-firebird
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.flywaydb:flyway-mysql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-mysql
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.flywaydb:flyway-sqlserver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.flywaydb
    Artifact Idflyway-sqlserver
    Current Version8.5.13
    Scope
    Classifier
    Typejar
    Newer versions9.0.0
    9.0.1
    9.0.2
    9.0.3
    9.0.4
    9.1.0
    9.1.1
    9.1.2
    9.1.3
    9.1.4
    9.1.5
    9.1.6
    9.2.0
    9.2.1
    9.2.2
    9.2.3
    9.3.0
    9.3.1
    9.4.0
    9.5.0
    9.5.1
    9.6.0
    9.7.0
    9.8.0
    9.8.1
    9.8.2
    9.8.3
    9.9.0
    9.10.0
    9.10.1
    9.10.2
    9.11.0
    9.12.0
    9.13.0
    9.14.0
    9.14.1
    9.15.0
    9.15.1
    9.15.2
    9.16.0
    9.16.1
    9.16.2
    9.16.3
    9.17.0
    9.18.0
    9.19.0
    9.19.1
    9.19.2
    9.19.3
    9.19.4
    9.20.0
    9.20.1
    9.21.0
    9.21.1
    9.21.2
    9.22.0
    9.22.1
    9.22.2
    9.22.3
    10.0.0
    10.0.1
    10.1.0
    10.2.0
    10.3.0
    10.4.0
    10.4.1
    10.5.0
    10.6.0
    10.7.0
    10.7.1
    10.7.2 Latest Major
    +

    org.freemarker:freemarker

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.freemarker
    Artifact Idfreemarker
    Current Version2.3.32
    Scope
    Classifier
    Typejar
    +

    org.glassfish:jakarta.el

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.glassfish
    Artifact Idjakarta.el
    Current Version3.0.4
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    5.0.0-M1 Latest Major
    +

    org.glassfish.jaxb:codemodel

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idcodemodel
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:codemodel-annotation-compiler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idcodemodel-annotation-compiler
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:jaxb-jxc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idjaxb-jxc
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:jaxb-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idjaxb-runtime
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:jaxb-xjc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idjaxb-xjc
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:txw2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idtxw2
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:txwc2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idtxwc2
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jaxb:xsom

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jaxb
    Artifact Idxsom
    Current Version2.3.9
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-b180725.0644
    2.4.0-b180830.0438 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0
    3.0.1-b02
    3.0.1
    3.0.2-b01
    3.0.2
    3.1.0-M1
    4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4 Latest Major
    +

    org.glassfish.jersey.bundles:jaxrs-ri

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.bundles
    Artifact Idjaxrs-ri
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-apache-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-apache-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-grizzly-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-grizzly-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-helidon-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-helidon-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-jdk-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-jdk-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-jetty-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-jetty-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.connectors:jersey-netty-connector

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.connectors
    Artifact Idjersey-netty-connector
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-grizzly2-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-grizzly2-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-grizzly2-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-grizzly2-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-jdk-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-jdk-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-jetty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-jetty-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-jetty-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-jetty-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-netty-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-netty-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-servlet-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-servlet-core
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers:jersey-container-simple-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers
    Artifact Idjersey-container-simple-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.containers.glassfish:jersey-gf-ejb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.containers.glassfish
    Artifact Idjersey-gf-ejb
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.core:jersey-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.core
    Artifact Idjersey-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.core:jersey-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.core
    Artifact Idjersey-common
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.core:jersey-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.core
    Artifact Idjersey-server
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-bean-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-bean-validation
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-declarative-linking

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-declarative-linking
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-entity-filtering

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-entity-filtering
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-metainf-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-metainf-services
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-bean-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-bean-validation
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-freemarker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-freemarker
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-jsp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-jsp
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-mvc-mustache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-mvc-mustache
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-proxy-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-proxy-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext:jersey-servlet-portability

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-servlet-portability
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6 Latest Major
    +

    org.glassfish.jersey.ext:jersey-spring4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-spring4
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6 Latest Major
    +

    org.glassfish.jersey.ext:jersey-spring5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-spring5
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6 Latest Major
    +

    org.glassfish.jersey.ext:jersey-wadl-doclet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext
    Artifact Idjersey-wadl-doclet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi-rs-inject

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi-rs-inject
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-ban-custom-hk2-binding

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-ban-custom-hk2-binding
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-servlet

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-servlet
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-transaction

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-transaction
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-cdi1x-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-cdi1x-validation
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.cdi:jersey-weld2-se

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.cdi
    Artifact Idjersey-weld2-se
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.microprofile:jersey-mp-config

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.microprofile
    Artifact Idjersey-mp-config
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.microprofile:jersey-mp-rest-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.microprofile
    Artifact Idjersey-mp-rest-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.rx:jersey-rx-client-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.rx
    Artifact Idjersey-rx-client-guava
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.rx
    Artifact Idjersey-rx-client-rxjava
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.ext.rx
    Artifact Idjersey-rx-client-rxjava2
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.inject:jersey-cdi2-se

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.inject
    Artifact Idjersey-cdi2-se
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.inject:jersey-hk2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.inject
    Artifact Idjersey-hk2
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-jaxb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-jaxb
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-binding

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-binding
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-jackson

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-jackson
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-jettison

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-jettison
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-json-processing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-json-processing
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-kryo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-kryo
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-moxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-moxy
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-multipart

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-multipart
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.media:jersey-media-sse

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.media
    Artifact Idjersey-media-sse
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth1-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth1-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth1-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth1-server
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth1-signature

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth1-signature
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.security:oauth2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.security
    Artifact Idoauth2-client
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework:jersey-test-framework-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework
    Artifact Idjersey-test-framework-core
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework:jersey-test-framework-util

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework
    Artifact Idjersey-test-framework-util
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-bundle
    Current Version2.35
    Scope
    Classifier
    Typepom
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-external

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-external
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-grizzly2
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-inmemory

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-inmemory
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-jdk-http
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-jetty
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-simple

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.glassfish.jersey.test-framework.providers
    Artifact Idjersey-test-framework-provider-simple
    Current Version2.35
    Scope
    Classifier
    Typejar
    Newer versions2.36
    2.37
    2.38
    2.39
    2.39.1
    2.40
    2.41 Latest Minor
    3.0.0-M1
    3.0.0-M6
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M1
    3.1.0-M2
    3.1.0-M3
    3.1.0-M7
    3.1.0-M8
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.glassfish.web:jakarta.servlet.jsp.jstl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.glassfish.web
    Artifact Idjakarta.servlet.jsp.jstl
    Current Version1.2.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0
    3.0.0
    3.0.1 Latest Major
    +

    org.hamcrest:hamcrest

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.hamcrest
    Artifact Idhamcrest
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    org.hamcrest:hamcrest-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.hamcrest
    Artifact Idhamcrest-core
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    org.hamcrest:hamcrest-library

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.hamcrest
    Artifact Idhamcrest-library
    Current Version2.2
    Scope
    Classifier
    Typejar
    +

    org.hibernate:hibernate-c3p0

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-c3p0
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-core
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-ehcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-ehcache
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7 Latest Major
    +

    org.hibernate:hibernate-entitymanager

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-entitymanager
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7 Latest Major
    +

    org.hibernate:hibernate-envers

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-envers
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-hikaricp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-hikaricp
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-java8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-java8
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7 Latest Major
    +

    org.hibernate:hibernate-jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-jcache
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-jpamodelgen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-jpamodelgen
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-micrometer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-micrometer
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-proxool

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-proxool
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-spatial

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-spatial
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-testing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-testing
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate:hibernate-vibur

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate
    Artifact Idhibernate-vibur
    Current Version5.6.15.Final
    Scope
    Classifier
    Typejar
    Newer versions6.0.0.Alpha2
    6.0.0.Alpha3
    6.0.0.Alpha4
    6.0.0.Alpha5
    6.0.0.Alpha6
    6.0.0.Alpha7
    6.0.0.Alpha8
    6.0.0.Alpha9
    6.0.0.Beta1
    6.0.0.Beta2
    6.0.0.Beta3
    6.0.0.CR1
    6.0.0.CR2
    6.0.0.Final
    6.0.1.Final
    6.0.2.Final
    6.1.0.Final
    6.1.1.Final
    6.1.2.Final
    6.1.3.Final
    6.1.4.Final
    6.1.5.Final
    6.1.6.Final
    6.1.7.Final
    6.2.0.CR1
    6.2.0.CR2
    6.2.0.CR3
    6.2.0.CR4
    6.2.0.Final
    6.2.1.Final
    6.2.2.Final
    6.2.3.Final
    6.2.4.Final
    6.2.5.Final
    6.2.6.Final
    6.2.7.Final
    6.2.8.Final
    6.2.9.Final
    6.2.10.Final
    6.2.11.Final
    6.2.12.Final
    6.2.13.Final
    6.2.14.Final
    6.2.15.Final
    6.2.16.Final
    6.2.17.Final
    6.2.18.Final
    6.2.19.Final
    6.2.20.Final
    6.2.21.Final
    6.2.22.Final
    6.3.0.CR1
    6.3.0.Final
    6.3.1.Final
    6.3.2.Final
    6.4.0.CR1
    6.4.0.Final
    6.4.1.Final
    6.4.2.Final
    6.4.3.Final
    6.4.4.Final Latest Major
    +

    org.hibernate.validator:hibernate-validator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate.validator
    Artifact Idhibernate-validator
    Current Version6.2.5.Final
    Scope
    Classifier
    Typejar
    Newer versions7.0.0.Alpha1
    7.0.0.Alpha2
    7.0.0.Alpha3
    7.0.0.Alpha4
    7.0.0.Alpha5
    7.0.0.Alpha6
    7.0.0.CR1
    7.0.0.Final
    7.0.1.Final
    7.0.2.Final
    7.0.3.Final
    7.0.4.Final
    7.0.5.Final
    8.0.0.Alpha1
    8.0.0.Alpha2
    8.0.0.Alpha3
    8.0.0.CR1
    8.0.0.CR2
    8.0.0.CR3
    8.0.0.Final
    8.0.1.Final Latest Major
    +

    org.hibernate.validator:hibernate-validator-annotation-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.hibernate.validator
    Artifact Idhibernate-validator-annotation-processor
    Current Version6.2.5.Final
    Scope
    Classifier
    Typejar
    Newer versions7.0.0.Alpha1
    7.0.0.Alpha2
    7.0.0.Alpha3
    7.0.0.Alpha4
    7.0.0.Alpha5
    7.0.0.Alpha6
    7.0.0.CR1
    7.0.0.Final
    7.0.1.Final
    7.0.2.Final
    7.0.3.Final
    7.0.4.Final
    7.0.5.Final
    8.0.0.Alpha1
    8.0.0.Alpha2
    8.0.0.Alpha3
    8.0.0.CR1
    8.0.0.CR2
    8.0.0.CR3
    8.0.0.Final
    8.0.1.Final Latest Major
    +

    org.hsqldb:hsqldb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.hsqldb
    Artifact Idhsqldb
    Current Version2.5.2
    Scope
    Classifier
    Typejar
    Newer versions2.6.0
    2.6.1
    2.7.0
    2.7.1
    2.7.2 Latest Minor
    +

    org.infinispan:infinispan-anchored-keys

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-anchored-keys
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-api
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-jdbc
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-jpa
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.Dev01
    14.0.0.Dev02 Latest Major
    +

    org.infinispan:infinispan-cachestore-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-rocksdb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-rocksdb
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cachestore-sql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cachestore-sql
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cdi-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cdi-common
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cdi-embedded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cdi-embedded
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cdi-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cdi-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-checkstyle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-checkstyle
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cli-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cli-client
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-client-hotrod

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-client-hotrod
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-client-rest

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-client-rest
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-cloudevents-integration

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-cloudevents-integration
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-clustered-counter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-clustered-counter
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-clustered-lock

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-clustered-lock
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-commons
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-commons-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-commons-test
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-component-annotations

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-component-annotations
    Current Version13.0.20.Final
    Scopeprovided
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-component-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-component-processor
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-console
    Current Version0.15.5.Final
    Scope
    Classifier
    Typejar
    Newer versions14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    15.0.0.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05 Latest Major
    +

    org.infinispan:infinispan-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-extended-statistics

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-extended-statistics
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-hibernate-cache-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-hibernate-cache-commons
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-hibernate-cache-spi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-hibernate-cache-spi
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-hibernate-cache-v53

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-hibernate-cache-v53
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.Dev01
    14.0.0.Dev02 Latest Major
    +

    org.infinispan:infinispan-jboss-marshalling

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jboss-marshalling
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-jcache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jcache
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-jcache-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jcache-commons
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-jcache-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-jcache-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-key-value-store-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-key-value-store-client
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-marshaller-kryo

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-kryo
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-marshaller-kryo-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-kryo-bundle
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-marshaller-protostuff

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-protostuff
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-marshaller-protostuff-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-marshaller-protostuff-bundle
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-multimap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-multimap
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-objectfilter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-objectfilter
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-query

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-query
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-query-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-query-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-query-dsl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-query-dsl
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-remote-query-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-remote-query-client
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-remote-query-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-remote-query-server
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-scripting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-scripting
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-hotrod

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-hotrod
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-memcached

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-memcached
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-rest

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-rest
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-router

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-router
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-runtime
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-testdriver-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-testdriver-core
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-testdriver-junit4

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-testdriver-junit4
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-server-testdriver-junit5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-server-testdriver-junit5
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-spring-boot-starter-embedded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring-boot-starter-embedded
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring-boot-starter-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring-boot-starter-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring5-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring5-common
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring5-embedded

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring5-embedded
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-spring5-remote

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-spring5-remote
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final Latest Major
    +

    org.infinispan:infinispan-tasks

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-tasks
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-tasks-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-tasks-api
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions13.0.21.Final Latest Incremental
    14.0.0.CR1
    14.0.0.CR2
    14.0.0.Final
    14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.1.Final
    14.0.2.Final
    14.0.3.Final
    14.0.4.Final
    14.0.5.Final
    14.0.6.Final
    14.0.7.Final
    14.0.8.Final
    14.0.9.Final
    14.0.10.Final
    14.0.11.Final
    14.0.12.Final
    14.0.13.Final
    14.0.14.Final
    14.0.15.Final
    14.0.16.Final
    14.0.17.Final
    14.0.18.Final
    14.0.19.Final
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan:infinispan-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.infinispan
    Artifact Idinfinispan-tools
    Current Version13.0.20.Final
    Scope
    Classifier
    Typejar
    Newer versions14.0.0.Dev01
    14.0.0.Dev02
    14.0.0.Dev03
    14.0.0.Dev04
    14.0.20.Final
    14.0.21.Final
    14.0.22.Final
    14.0.23.Final
    14.0.24.Final
    15.0.0.Dev01
    15.0.0.Dev02
    15.0.0.Dev03
    15.0.0.Dev04
    15.0.0.Dev05
    15.0.0.Dev06
    15.0.0.Dev07
    15.0.0.Dev08 Latest Major
    +

    org.infinispan.protostream:protostream

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.infinispan.protostream
    Artifact Idprotostream
    Current Version4.4.4.Final
    Scope
    Classifier
    Typejar
    Newer versions4.5.0.CR1
    4.5.0.Final
    4.5.0.Dev01
    4.5.0.Dev02
    4.5.0.Dev03
    4.5.0.Dev04
    4.5.0.Dev05
    4.5.1.Final
    4.6.0.Final
    4.6.1.Final
    4.6.2.Final
    4.6.3.Final
    4.6.4.Final
    4.6.5.Final Latest Minor
    5.0.0.Dev01
    14.0.0.CR2 Latest Major
    +

    org.infinispan.protostream:protostream-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.infinispan.protostream
    Artifact Idprotostream-processor
    Current Version4.4.4.Final
    Scopeprovided
    Classifier
    Typejar
    Newer versions4.5.0.CR1
    4.5.0.Final
    4.5.0.Dev01
    4.5.0.Dev02
    4.5.0.Dev03
    4.5.0.Dev04
    4.5.0.Dev05
    4.5.1.Final
    4.6.0.Final
    4.6.1.Final
    4.6.2.Final
    4.6.3.Final
    4.6.4.Final
    4.6.5.Final Latest Minor
    5.0.0.Dev01
    14.0.0.CR2 Latest Major
    +

    org.infinispan.protostream:protostream-types

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.infinispan.protostream
    Artifact Idprotostream-types
    Current Version4.4.4.Final
    Scope
    Classifier
    Typejar
    Newer versions4.5.0.CR1
    4.5.0.Final
    4.5.0.Dev01
    4.5.0.Dev02
    4.5.0.Dev03
    4.5.0.Dev04
    4.5.0.Dev05
    4.5.1.Final
    4.6.0.Final
    4.6.1.Final
    4.6.2.Final
    4.6.3.Final
    4.6.4.Final
    4.6.5.Final Latest Minor
    5.0.0.Dev01
    14.0.0.CR2 Latest Major
    +

    org.influxdb:influxdb-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.influxdb
    Artifact Idinfluxdb-java
    Current Version2.22
    Scope
    Classifier
    Typejar
    Newer versions2.23
    2.24 Latest Minor
    +

    org.jboss.logging:jboss-logging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jboss.logging
    Artifact Idjboss-logging
    Current Version3.4.3.Final
    Scope
    Classifier
    Typejar
    Newer versions3.5.0.Final
    3.5.1.Final
    3.5.2.Final
    3.5.3.Final Latest Minor
    +

    org.jdom:jdom2

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.jdom
    Artifact Idjdom2
    Current Version2.0.6.1
    Scope
    Classifier
    Typejar
    +

    org.jetbrains.kotlin:kotlin-compiler

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-compiler
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-compiler-embeddable

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-compiler-embeddable
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-daemon-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-daemon-client
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-main-kts

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-main-kts
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-osgi-bundle

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-osgi-bundle
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-reflect

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-reflect
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-script-runtime

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-script-runtime
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-script-util

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-script-util
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22 Latest Minor
    +

    org.jetbrains.kotlin:kotlin-scripting-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-scripting-ide-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-ide-services
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-scripting-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-jvm
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-scripting-jvm-host

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-scripting-jvm-host
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-jdk7

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-jdk7
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-jdk8
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-stdlib-js

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-stdlib-js
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-annotations-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-annotations-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-common

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-common
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-js

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-js
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-junit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-junit
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-junit5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-junit5
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlin:kotlin-test-testng

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlin
    Artifact Idkotlin-test-testng
    Current Version1.6.21
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0-RC2
    1.7.0
    1.7.10
    1.7.20-Beta
    1.7.20-RC
    1.7.20
    1.7.21
    1.7.22
    1.8.0-Beta
    1.8.0-RC
    1.8.0-RC2
    1.8.0
    1.8.0-343
    1.8.10
    1.8.20-Beta
    1.8.20-RC
    1.8.20-RC2
    1.8.20
    1.8.21
    1.8.22
    1.9.0-Beta
    1.9.0-RC
    1.9.0
    1.9.10
    1.9.20-Beta
    1.9.20-Beta2
    1.9.20-RC
    1.9.20-RC2
    1.9.20
    1.9.21
    1.9.22 Latest Minor
    2.0.0-Beta1
    2.0.0-Beta2
    2.0.0-Beta3 Latest Major
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-android

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-android
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-core
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-core-jvm
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-debug

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-debug
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-guava

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-guava
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-javafx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-javafx
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-jdk8

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-jdk8
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-jdk9

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-jdk9
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-play-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-play-services
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-reactive
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-reactor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-reactor
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-rx2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-rx2
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-rx3

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-rx3
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-slf4j
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-swing

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-swing
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-test
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jetbrains.kotlinx
    Artifact Idkotlinx-coroutines-test-jvm
    Current Version1.6.4
    Scope
    Classifier
    Typejar
    Newer versions1.7.0-Beta
    1.7.0-RC
    1.7.0
    1.7.1
    1.7.2
    1.7.3
    1.8.0-RC
    1.8.0-RC2 Latest Minor
    +

    org.jolokia:jolokia-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.jolokia
    Artifact Idjolokia-core
    Current Version1.7.2
    Scope
    Classifier
    Typejar
    +

    org.jooq:jooq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.jooq:jooq-codegen

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq-codegen
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.jooq:jooq-kotlin

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq-kotlin
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.jooq:jooq-meta

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.jooq
    Artifact Idjooq-meta
    Current Version3.14.16
    Scope
    Classifier
    Typejar
    Newer versions3.15.0
    3.15.1
    3.15.2
    3.15.3
    3.15.4
    3.15.5
    3.15.6
    3.15.7
    3.15.8
    3.15.9
    3.15.10
    3.15.11
    3.15.12
    3.16.0
    3.16.1
    3.16.2
    3.16.3
    3.16.4
    3.16.5
    3.16.6
    3.16.7
    3.16.8
    3.16.9
    3.16.10
    3.16.11
    3.16.12
    3.16.13
    3.16.14
    3.16.15
    3.16.16
    3.16.17
    3.16.18
    3.16.19
    3.16.20
    3.16.21
    3.16.22
    3.16.23
    3.17.0
    3.17.1
    3.17.2
    3.17.3
    3.17.4
    3.17.5
    3.17.6
    3.17.7
    3.17.8
    3.17.9
    3.17.10
    3.17.11
    3.17.12
    3.17.13
    3.17.14
    3.17.15
    3.17.16
    3.17.17
    3.17.18
    3.17.19
    3.18.0
    3.18.1
    3.18.2
    3.18.3
    3.18.4
    3.18.5
    3.18.6
    3.18.7
    3.18.8
    3.18.9
    3.18.10
    3.19.0
    3.19.1
    3.19.2
    3.19.3 Latest Minor
    +

    org.junit.jupiter:junit-jupiter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-api
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-engine
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-migrationsupport

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-migrationsupport
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.jupiter:junit-jupiter-params

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.jupiter
    Artifact Idjunit-jupiter-params
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-commons
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-console

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-console
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-engine
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-jfr

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-jfr
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-launcher

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-launcher
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-reporting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-reporting
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-runner

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-runner
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite-api
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite-commons
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-suite-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-suite-engine
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.platform:junit-platform-testkit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.platform
    Artifact Idjunit-platform-testkit
    Current Version1.8.2
    Scope
    Classifier
    Typejar
    Newer versions1.9.0-M1
    1.9.0-RC1
    1.9.0
    1.9.1
    1.9.2
    1.9.3
    1.10.0-M1
    1.10.0-RC1
    1.10.0-RC2
    1.10.0
    1.10.1
    1.10.2 Latest Minor
    +

    org.junit.vintage:junit-vintage-engine

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.junit.vintage
    Artifact Idjunit-vintage-engine
    Current Version5.8.2
    Scope
    Classifier
    Typejar
    Newer versions5.9.0-M1
    5.9.0-RC1
    5.9.0
    5.9.1
    5.9.2
    5.9.3
    5.10.0-M1
    5.10.0-RC1
    5.10.0-RC2
    5.10.0
    5.10.1
    5.10.2 Latest Minor
    +

    org.liquibase:liquibase-cdi

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.liquibase
    Artifact Idliquibase-cdi
    Current Version4.9.1
    Scope
    Classifier
    Typejar
    Newer versions4.10.0
    4.11.0
    4.12.0
    4.13.0
    4.14.0
    4.15.0
    4.16.0
    4.16.1
    4.17.0
    4.17.1
    4.17.2
    4.18.0
    4.19.0
    4.19.1
    4.20.0
    4.21.0
    4.21.1
    4.22.0
    4.23.0
    4.23.1
    4.23.2
    4.24.0
    4.25.0
    4.25.1
    4.26.0 Latest Minor
    +

    org.liquibase:liquibase-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.liquibase
    Artifact Idliquibase-core
    Current Version4.9.1
    Scope
    Classifier
    Typejar
    Newer versions4.10.0
    4.11.0
    4.12.0
    4.13.0
    4.14.0
    4.15.0
    4.16.0
    4.16.1
    4.17.0
    4.17.1
    4.17.2
    4.18.0
    4.19.0
    4.19.1
    4.20.0
    4.21.0
    4.21.1
    4.22.0
    4.23.0
    4.23.1
    4.23.2
    4.24.0
    4.25.0
    4.25.1
    4.26.0 Latest Minor
    +

    org.mariadb:r2dbc-mariadb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.mariadb
    Artifact Idr2dbc-mariadb
    Current Version1.1.2
    Scope
    Classifier
    Typejar
    Newer versions1.1.3
    1.1.4 Latest Incremental
    +

    org.mariadb.jdbc:mariadb-java-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mariadb.jdbc
    Artifact Idmariadb-java-client
    Current Version3.1.4
    Scope
    Classifier
    Typejar
    Newer versions3.2.0
    3.3.0
    3.3.1
    3.3.2 Latest Minor
    +

    org.messaginghub:pooled-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.messaginghub
    Artifact Idpooled-jms
    Current Version1.2.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    3.0.0
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5 Latest Major
    +

    org.mockito:mockito-android

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-android
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-core
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-errorprone

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-errorprone
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-inline

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-inline
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0 Latest Major
    +

    org.mockito:mockito-junit-jupiter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-junit-jupiter
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mockito:mockito-proxy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mockito
    Artifact Idmockito-proxy
    Current Version4.5.1
    Scope
    Classifier
    Typejar
    Newer versions4.6.0
    4.6.1
    4.7.0
    4.8.0
    4.8.1
    4.9.0
    4.10.0
    4.11.0 Latest Minor
    5.0.0
    5.1.0
    5.1.1
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0 Latest Major
    +

    org.mongodb:bson

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idbson
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:bson-record-codec

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idbson-record-codec
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-core
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-legacy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-legacy
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-reactivestreams

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-reactivestreams
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mongodb:mongodb-driver-sync

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.mongodb
    Artifact Idmongodb-driver-sync
    Current Version4.6.1
    Scope
    Classifier
    Typejar
    Newer versions4.7.0-beta0
    4.7.0
    4.7.1
    4.7.2
    4.8.0-beta0
    4.8.0-rc0
    4.8.0
    4.8.1
    4.8.2
    4.9.0
    4.9.1
    4.10.0-alpha0
    4.10.0-alpha1
    4.10.0
    4.10.1
    4.10.2
    4.11.0
    4.11.1 Latest Minor
    5.0.0-beta0 Latest Major
    +

    org.mortbay.jasper:apache-el

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.mortbay.jasper
    Artifact Idapache-el
    Current Version9.0.52
    Scope
    Classifier
    Typejar
    Newer versions9.0.83
    9.0.83.1 Latest Incremental
    10.0.0-M5
    10.0.0-M7
    10.0.0-M10
    10.0.0-1-M7
    10.0.2
    10.0.7
    10.0.10
    10.0.14
    10.0.27
    10.1.0-M16
    10.1.1
    10.1.5
    10.1.7
    10.1.16 Latest Major
    +

    org.mybatis:mybatis

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis
    Artifact Idmybatis
    Current Version3.5.15
    Scope
    Classifier
    Typejar
    +

    org.mybatis:mybatis-spring

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.mybatis
    Artifact Idmybatis-spring
    Current Version2.1.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    org.mybatis.dynamic-sql:mybatis-dynamic-sql

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.dynamic-sql
    Artifact Idmybatis-dynamic-sql
    Current Version1.5.0
    Scope
    Classifier
    Typejar
    +

    org.mybatis.scripting:mybatis-freemarker

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.scripting
    Artifact Idmybatis-freemarker
    Current Version1.2.4
    Scope
    Classifier
    Typejar
    +

    org.mybatis.scripting:mybatis-thymeleaf

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.scripting
    Artifact Idmybatis-thymeleaf
    Current Version1.0.4
    Scope
    Classifier
    Typejar
    +

    org.mybatis.scripting:mybatis-velocity

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis.scripting
    Artifact Idmybatis-velocity
    Current Version2.1.2
    Scope
    Classifier
    Typejar
    +

    org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.mybatis.spring.boot
    Artifact Idmybatis-spring-boot-autoconfigure
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    org.mybatis.spring.boot:mybatis-spring-boot-starter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.mybatis.spring.boot
    Artifact Idmybatis-spring-boot-starter
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    +

    org.neo4j.driver:neo4j-java-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.neo4j.driver
    Artifact Idneo4j-java-driver
    Current Version4.4.12
    Scope
    Classifier
    Typejar
    Newer versions4.4.13 Latest Incremental
    5.0.0-alpha01
    5.0.0-alpha02
    5.0.0-alpha03
    5.0.0-beta01
    5.0.0
    5.1.0
    5.2.0
    5.3.0
    5.3.1
    5.4.0
    5.5.0
    5.6.0
    5.7.0
    5.8.0
    5.9.0
    5.10.0
    5.11.0
    5.12.0
    5.13.0
    5.14.0
    5.15.0
    5.16.0
    5.17.0 Latest Major
    +

    org.postgresql:postgresql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.postgresql
    Artifact Idpostgresql
    Current Version42.3.8
    Scope
    Classifier
    Typejar
    Newer versions42.4.0
    42.4.1
    42.4.2
    42.4.3
    42.5.0
    42.5.1
    42.5.2
    42.5.3
    42.5.4
    42.6.0
    42.7.0
    42.7.1 Latest Minor
    +

    org.postgresql:r2dbc-postgresql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.postgresql
    Artifact Idr2dbc-postgresql
    Current Version0.9.2.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions0.9.3.RELEASE Latest Incremental
    1.0.0.RC1
    1.0.0.RELEASE
    1.0.1.RELEASE
    1.0.2.RELEASE
    1.0.3.RELEASE
    1.0.4.RELEASE Latest Major
    +

    org.projectlombok:lombok

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.projectlombok
    Artifact Idlombok
    Current Version1.18.30
    Scope
    Classifier
    Typejar
    +

    org.quartz-scheduler:quartz

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.quartz-scheduler
    Artifact Idquartz
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-rc1
    2.4.0-rc2
    2.5.0-rc1 Latest Minor
    +

    org.quartz-scheduler:quartz-jobs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.quartz-scheduler
    Artifact Idquartz-jobs
    Current Version2.3.2
    Scope
    Classifier
    Typejar
    Newer versions2.4.0-rc1
    2.4.0-rc2
    2.5.0-rc1 Latest Minor
    +

    org.reactivestreams:reactive-streams

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.reactivestreams
    Artifact Idreactive-streams
    Current Version1.0.4
    Scope
    Classifier
    Typejar
    +

    org.seleniumhq.selenium:htmlunit-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idhtmlunit-driver
    Current Version3.61.0
    Scope
    Classifier
    Typejar
    Newer versions3.62.0
    3.63.0
    3.64.0 Latest Minor
    4.5.0
    4.5.2
    4.6.0
    4.7.0
    4.7.2
    4.8.0
    4.8.1
    4.8.1.1
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.13.0 Latest Major
    +

    org.seleniumhq.selenium:lift

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idlift
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-api
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-chrome-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-chrome-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-chromium-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-chromium-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v100

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v100
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v101

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v101
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v85

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v85
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-devtools-v99

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-devtools-v99
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    +

    org.seleniumhq.selenium:selenium-edge-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-edge-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-firefox-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-firefox-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-grid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-grid
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-http
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-ie-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-ie-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-java

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-java
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-json
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-opera-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-opera-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-remote-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-remote-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-safari-driver

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-safari-driver
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-session-map-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-session-map-jdbc
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-session-map-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-session-map-redis
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.seleniumhq.selenium:selenium-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.seleniumhq.selenium
    Artifact Idselenium-support
    Current Version4.1.4
    Scope
    Classifier
    Typejar
    Newer versions4.2.0
    4.2.1
    4.2.2
    4.3.0
    4.4.0
    4.5.0
    4.5.1
    4.5.2
    4.5.3
    4.6.0
    4.7.0
    4.7.1
    4.7.2
    4.8.0
    4.8.1
    4.8.2
    4.8.3
    4.9.0
    4.9.1
    4.10.0
    4.11.0
    4.12.0
    4.12.1
    4.13.0
    4.14.0
    4.14.1
    4.15.0
    4.16.0
    4.16.1
    4.17.0 Latest Minor
    +

    org.skyscreamer:jsonassert

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.skyscreamer
    Artifact Idjsonassert
    Current Version1.5.1
    Scope
    Classifier
    Typejar
    +

    org.slf4j:jcl-over-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idjcl-over-slf4j
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:jul-to-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idjul-to-slf4j
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:log4j-over-slf4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idlog4j-over-slf4j
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-api

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-api
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-ext

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-ext
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-jcl

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.slf4j
    Artifact Idslf4j-jcl
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    +

    org.slf4j:slf4j-jdk14

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-jdk14
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-log4j12

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-log4j12
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-nop

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-nop
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.slf4j:slf4j-simple

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.slf4j
    Artifact Idslf4j-simple
    Current Version1.7.36
    Scope
    Classifier
    Typejar
    Newer versions1.8.0-alpha0
    1.8.0-alpha1
    1.8.0-alpha2
    1.8.0-beta0
    1.8.0-beta1
    1.8.0-beta2
    1.8.0-beta4 Latest Minor
    2.0.0-alpha0
    2.0.0-alpha1
    2.0.0-alpha2
    2.0.0-alpha3
    2.0.0-alpha4
    2.0.0-alpha5
    2.0.0-alpha6
    2.0.0-alpha7
    2.0.0-beta0
    2.0.0-beta1
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.0.8
    2.0.9
    2.0.10
    2.0.11
    2.0.12
    2.1.0-alpha0
    2.1.0-alpha1 Latest Major
    +

    org.springframework:spring-aop

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-aop
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-aspects

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-aspects
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-beans

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-beans
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-context

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-context
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-context-indexer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-context-indexer
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-context-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-context-support
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-core
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-expression

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-expression
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-instrument

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-instrument
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-jcl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-jcl
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-jdbc
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-jms
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-messaging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-messaging
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-orm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-orm
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-oxm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-oxm
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-r2dbc
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-test
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-tx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-tx
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-web
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-webflux

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-webflux
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-webmvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-webmvc
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework:spring-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework
    Artifact Idspring-websocket
    Current Version5.3.31
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-RC1
    6.0.0-RC2
    6.0.0-RC3
    6.0.0-RC4
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.0.10
    6.0.11
    6.0.12
    6.0.13
    6.0.14
    6.0.15
    6.0.16
    6.1.0-M1
    6.1.0-M2
    6.1.0-M3
    6.1.0-M4
    6.1.0-M5
    6.1.0-RC1
    6.1.0-RC2
    6.1.0
    6.1.1
    6.1.2
    6.1.3 Latest Major
    +

    org.springframework.amqp:spring-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-amqp
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit-junit

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit-junit
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit-stream

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit-stream
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.amqp:spring-rabbit-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.amqp
    Artifact Idspring-rabbit-test
    Current Version2.4.17
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.batch:spring-batch-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-core
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.batch:spring-batch-infrastructure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-infrastructure
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.batch:spring-batch-integration

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-integration
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.batch:spring-batch-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.batch
    Artifact Idspring-batch-test
    Current Version4.3.10
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-M7
    5.0.0-M8
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.1.0-M1
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0 Latest Major
    +

    org.springframework.boot:spring-boot

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-actuator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-actuator
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-actuator-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-actuator-autoconfigure
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-autoconfigure
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-autoconfigure-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-autoconfigure-processor
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-buildpack-platform

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-buildpack-platform
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-configuration-metadata

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-configuration-metadata
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-configuration-processor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-configuration-processor
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-devtools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-devtools
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-jarmode-layertools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-jarmode-layertools
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-loader

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-loader
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-loader-tools

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-loader-tools
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-properties-migrator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-properties-migrator
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-activemq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-activemq
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-actuator

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-actuator
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-amqp
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-aop

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-aop
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-artemis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-artemis
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-batch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-batch
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-cache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-cache
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-cassandra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-cassandra
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-cassandra-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-cassandra-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-couchbase

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-couchbase
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-couchbase-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-couchbase-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-elasticsearch
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-jdbc
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-jpa
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-ldap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-ldap
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-mongodb
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-mongodb-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-mongodb-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-neo4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-neo4j
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-r2dbc
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-redis
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-redis-reactive

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-redis-reactive
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-data-rest

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-data-rest
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-freemarker

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-freemarker
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-graphql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-graphql
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-groovy-templates

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-groovy-templates
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-hateoas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-hateoas
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-integration

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-integration
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jdbc
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jersey

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jersey
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jetty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jetty
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jooq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jooq
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-json

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-json
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-jta-atomikos

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-jta-atomikos
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    +

    org.springframework.boot:spring-boot-starter-log4j2

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-log4j2
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-logging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-logging
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-mail

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-mail
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-mustache

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-mustache
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-oauth2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-oauth2-client
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-oauth2-resource-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-oauth2-resource-server
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-quartz

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-quartz
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-reactor-netty

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-reactor-netty
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-rsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-rsocket
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-security
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-test
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-thymeleaf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-thymeleaf
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-tomcat

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-tomcat
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-undertow

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-undertow
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-validation

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-validation
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-web
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-web-services

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-web-services
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-webflux

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-webflux
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-starter-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-starter-websocket
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-test
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.boot:spring-boot-test-autoconfigure

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-test-autoconfigure
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    org.springframework.data:spring-data-cassandra

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-cassandra
    Current Version3.4.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-commons

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-commons
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-couchbase

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-couchbase
    Current Version4.4.18
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    5.0.10
    5.0.11
    5.0.12
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0
    5.1.1
    5.1.2
    5.1.3
    5.1.4
    5.1.5
    5.1.6
    5.1.7
    5.1.8
    5.2.0-M1
    5.2.0-M2
    5.2.0-M3
    5.2.0-RC1
    5.2.0
    5.2.1
    5.2.2 Latest Major
    +

    org.springframework.data:spring-data-elasticsearch

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-elasticsearch
    Current Version4.4.18
    Scope
    Classifier
    Typejar
    Newer versions5.0.0-M1
    5.0.0-M2
    5.0.0-M3
    5.0.0-M4
    5.0.0-M5
    5.0.0-M6
    5.0.0-RC1
    5.0.0-RC2
    5.0.0
    5.0.1
    5.0.2
    5.0.3
    5.0.4
    5.0.5
    5.0.6
    5.0.7
    5.0.8
    5.0.9
    5.0.10
    5.0.11
    5.0.12
    5.1.0-M2
    5.1.0-M3
    5.1.0-RC1
    5.1.0
    5.1.1
    5.1.2
    5.1.3
    5.1.4
    5.1.5
    5.1.6
    5.1.7
    5.1.8
    5.2.0-M1
    5.2.0-M2
    5.2.0-M3
    5.2.0-RC1
    5.2.0
    5.2.1
    5.2.2 Latest Major
    +

    org.springframework.data:spring-data-envers

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-envers
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-geode

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-geode
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6 Latest Major
    +

    org.springframework.data:spring-data-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-jdbc
    Current Version2.4.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-jpa
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-keyvalue

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-keyvalue
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-ldap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-ldap
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-mongodb
    Current Version3.4.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-neo4j

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-neo4j
    Current Version6.3.18
    Scope
    Classifier
    Typejar
    Newer versions7.0.0-M1
    7.0.0-M2
    7.0.0-M3
    7.0.0-M4
    7.0.0-M5
    7.0.0-M6
    7.0.0-RC1
    7.0.0-RC2
    7.0.0
    7.0.1
    7.0.2
    7.0.3
    7.0.4
    7.0.5
    7.0.6
    7.0.7
    7.0.8
    7.0.9
    7.0.10
    7.0.11
    7.0.12
    7.1.0-M1
    7.1.0-M2
    7.1.0-M3
    7.1.0-RC1
    7.1.0
    7.1.1
    7.1.2
    7.1.3
    7.1.4
    7.1.5
    7.1.6
    7.1.7
    7.1.8
    7.2.0-M1
    7.2.0-M2
    7.2.0-M3
    7.2.0-RC1
    7.2.0
    7.2.1
    7.2.2 Latest Major
    +

    org.springframework.data:spring-data-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-r2dbc
    Current Version1.5.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-redis
    Current Version2.7.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-relational

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-relational
    Current Version2.4.18
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.1.0-M2
    3.1.0-M3
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1
    3.2.2 Latest Major
    +

    org.springframework.data:spring-data-rest-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-rest-core
    Current Version3.7.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-rest-hal-explorer

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-rest-hal-explorer
    Current Version3.7.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.data:spring-data-rest-webmvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.data
    Artifact Idspring-data-rest-webmvc
    Current Version3.7.18
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-M4
    4.0.0-M5
    4.0.0-M6
    4.0.0-RC1
    4.0.0-RC2
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10
    4.0.11
    4.0.12
    4.1.0-M2
    4.1.0-M3
    4.1.0-RC1
    4.1.0
    4.1.1
    4.1.2
    4.1.3
    4.1.4
    4.1.5
    4.1.6
    4.1.7
    4.1.8
    4.2.0-M1
    4.2.0-M2
    4.2.0-M3
    4.2.0-RC1
    4.2.0
    4.2.1
    4.2.2 Latest Major
    +

    org.springframework.experimental:spring-aot

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.experimental
    Artifact Idspring-aot
    Current Version0.12.2
    Scope
    Classifier
    Typejar
    +

    org.springframework.experimental:spring-native

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.experimental
    Artifact Idspring-native
    Current Version0.12.2
    Scope
    Classifier
    Typejar
    +

    org.springframework.graphql:spring-graphql

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.graphql
    Artifact Idspring-graphql
    Current Version1.0.6
    Scope
    Classifier
    Typejar
    Newer versions1.1.0-M1
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.2.0-M1
    1.2.0-RC1
    1.2.0
    1.2.1
    1.2.2
    1.2.3
    1.2.4 Latest Minor
    +

    org.springframework.graphql:spring-graphql-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.graphql
    Artifact Idspring-graphql-test
    Current Version1.0.6
    Scope
    Classifier
    Typejar
    Newer versions1.1.0-M1
    1.1.0-RC1
    1.1.0
    1.1.1
    1.1.2
    1.1.3
    1.1.4
    1.1.5
    1.1.6
    1.1.7
    1.2.0-M1
    1.2.0-RC1
    1.2.0
    1.2.1
    1.2.2
    1.2.3
    1.2.4 Latest Minor
    +

    org.springframework.hateoas:spring-hateoas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.hateoas
    Artifact Idspring-hateoas
    Current Version1.5.6
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0-M2
    2.0.0-M3
    2.0.0-M4
    2.0.0-M5
    2.0.0-M6
    2.0.0-RC1
    2.0.0-RC2
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5
    2.0.6
    2.0.7
    2.1.0-M1
    2.1.0-RC1
    2.1.0
    2.1.1
    2.1.2
    2.1.3
    2.2.0-M1
    2.2.0-M2
    2.2.0-RC1
    2.2.0 Latest Major
    +

    org.springframework.integration:spring-integration-amqp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-amqp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-core
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-event

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-event
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-feed

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-feed
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-file

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-file
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-ftp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-ftp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-gemfire

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-gemfire
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5 Latest Major
    +

    org.springframework.integration:spring-integration-groovy

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-groovy
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-http

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-http
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-ip

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-ip
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jdbc
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jms

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jms
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jmx

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jmx
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-jpa

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-jpa
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-kafka

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-kafka
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-mail

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-mail
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-mongodb
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-mqtt

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-mqtt
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-r2dbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-r2dbc
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-redis
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-rmi

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-rmi
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    +

    org.springframework.integration:spring-integration-rsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-rsocket
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-scripting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-scripting
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-security
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-sftp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-sftp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-stomp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-stomp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-stream

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-stream
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-syslog

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-syslog
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-test
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-test-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-test-support
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-webflux

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-webflux
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-websocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-websocket
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-ws

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-ws
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-xml
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-xmpp

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-xmpp
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-zeromq

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-zeromq
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.integration:spring-integration-zookeeper

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.integration
    Artifact Idspring-integration-zookeeper
    Current Version5.5.20
    Scope
    Classifier
    Typejar
    Newer versions6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.0.9
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0
    6.2.1 Latest Major
    +

    org.springframework.kafka:spring-kafka

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.kafka
    Artifact Idspring-kafka
    Current Version2.8.11
    Scope
    Classifier
    Typejar
    Newer versions2.9.0-M1
    2.9.0-RC1
    2.9.0
    2.9.1
    2.9.2
    2.9.3
    2.9.4
    2.9.5
    2.9.6
    2.9.7
    2.9.8
    2.9.9
    2.9.10
    2.9.11
    2.9.12
    2.9.13 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.kafka:spring-kafka-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.kafka
    Artifact Idspring-kafka-test
    Current Version2.8.11
    Scope
    Classifier
    Typejar
    Newer versions2.9.0-M1
    2.9.0-RC1
    2.9.0
    2.9.1
    2.9.2
    2.9.3
    2.9.4
    2.9.5
    2.9.6
    2.9.7
    2.9.8
    2.9.9
    2.9.10
    2.9.11
    2.9.12
    2.9.13 Latest Minor
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-M6
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-core
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-core-tiger

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-core-tiger
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1 Latest Major
    +

    org.springframework.ldap:spring-ldap-ldif-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-ldif-core
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-odm

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-odm
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.ldap:spring-ldap-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ldap
    Artifact Idspring-ldap-test
    Current Version2.4.1
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0
    3.2.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-asciidoctor

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-asciidoctor
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-core
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-mockmvc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-mockmvc
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-restassured

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-restassured
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.restdocs:spring-restdocs-webtestclient

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.restdocs
    Artifact Idspring-restdocs-webtestclient
    Current Version2.0.8.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0
    3.0.1 Latest Major
    +

    org.springframework.retry:spring-retry

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.retry
    Artifact Idspring-retry
    Current Version1.3.4
    Scope
    Classifier
    Typejar
    Newer versions2.0.0-M1
    2.0.0-RC1
    2.0.0-RC2
    2.0.0
    2.0.1
    2.0.2
    2.0.3
    2.0.4
    2.0.5 Latest Major
    +

    org.springframework.security:spring-security-acl

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-acl
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-aspects

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-aspects
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-cas

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-cas
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-config

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-config
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-core
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-crypto

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-crypto
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-data

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-data
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-ldap

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-ldap
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-messaging

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-messaging
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-client

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-client
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-core
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-jose

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-jose
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-oauth2-resource-server

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-oauth2-resource-server
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-openid

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-openid
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1 Latest Major
    +

    org.springframework.security:spring-security-remoting

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-remoting
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    +

    org.springframework.security:spring-security-rsocket

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-rsocket
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-saml2-service-provider

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-saml2-service-provider
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-taglibs

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-taglibs
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-test
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.security:spring-security-web

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.springframework.security
    Artifact Idspring-security-web
    Current Version5.7.11
    Scope
    Classifier
    Typejar
    Newer versions5.8.0-M1
    5.8.0-M2
    5.8.0-M3
    5.8.0-RC1
    5.8.0
    5.8.1
    5.8.2
    5.8.3
    5.8.4
    5.8.5
    5.8.6
    5.8.7
    5.8.8
    5.8.9 Latest Minor
    6.0.0-M1
    6.0.0-M2
    6.0.0-M3
    6.0.0-M4
    6.0.0-M5
    6.0.0-M6
    6.0.0-M7
    6.0.0-RC1
    6.0.0-RC2
    6.0.0
    6.0.1
    6.0.2
    6.0.3
    6.0.4
    6.0.5
    6.0.6
    6.0.7
    6.0.8
    6.1.0-M1
    6.1.0-M2
    6.1.0-RC1
    6.1.0
    6.1.1
    6.1.2
    6.1.3
    6.1.4
    6.1.5
    6.1.6
    6.2.0-M1
    6.2.0-M2
    6.2.0-M3
    6.2.0-RC1
    6.2.0-RC2
    6.2.0
    6.2.1
    6.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-core
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-data-geode

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer incremental version available. Incremental updates are typically passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-data-geode
    Current Version2.7.1
    Scope
    Classifier
    Typejar
    Newer versions2.7.2 Latest Incremental
    3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5 Latest Major
    +

    org.springframework.session:spring-session-data-mongodb

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-data-mongodb
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-data-redis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-data-redis
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-hazelcast

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-hazelcast
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.session:spring-session-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.session
    Artifact Idspring-session-jdbc
    Current Version2.7.4
    Scope
    Classifier
    Typejar
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.1.0-M1
    3.1.0-RC1
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.2.0-M1
    3.2.0-RC1
    3.2.0
    3.2.1
    3.3.0-M1 Latest Major
    +

    org.springframework.ws:spring-ws-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-core
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-ws-security

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-security
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-ws-support

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-support
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-ws-test

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-ws-test
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.springframework.ws:spring-xml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.ws
    Artifact Idspring-xml
    Current Version3.1.8
    Scope
    Classifier
    Typejar
    Newer versions4.0.0-M1
    4.0.0-M2
    4.0.0-M3
    4.0.0-RC1
    4.0.0
    4.0.1
    4.0.2
    4.0.3
    4.0.4
    4.0.5
    4.0.6
    4.0.7
    4.0.8
    4.0.9
    4.0.10 Latest Major
    +

    org.thymeleaf:thymeleaf

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.thymeleaf
    Artifact Idthymeleaf
    Current Version3.0.15.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.1.0.M1
    3.1.0.M2
    3.1.0.M3
    3.1.0.RC1
    3.1.0.RC2
    3.1.0.RELEASE
    3.1.1.RELEASE
    3.1.2.RELEASE Latest Minor
    +

    org.thymeleaf:thymeleaf-spring5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.thymeleaf
    Artifact Idthymeleaf-spring5
    Current Version3.0.15.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.1.0.M1
    3.1.0.M2
    3.1.0.M3
    3.1.0.RC1
    3.1.0.RC2
    3.1.0.RELEASE
    3.1.1.RELEASE
    3.1.2.RELEASE Latest Minor
    +

    org.thymeleaf.extras:thymeleaf-extras-java8time

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.thymeleaf.extras
    Artifact Idthymeleaf-extras-java8time
    Current Version3.0.4.RELEASE
    Scope
    Classifier
    Typejar
    +

    org.thymeleaf.extras:thymeleaf-extras-springsecurity5

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.thymeleaf.extras
    Artifact Idthymeleaf-extras-springsecurity5
    Current Version3.0.5.RELEASE
    Scope
    Classifier
    Typejar
    Newer versions3.1.0.M1
    3.1.0.RC1
    3.1.0.RC2
    3.1.0.RELEASE
    3.1.1.RELEASE
    3.1.2.RELEASE Latest Minor
    +

    org.webjars:webjars-locator-core

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.webjars
    Artifact Idwebjars-locator-core
    Current Version0.50
    Scope
    Classifier
    Typejar
    Newer versions0.51
    0.52
    0.53
    0.54
    0.55 Latest Minor
    +

    org.xerial:sqlite-jdbc

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.xerial
    Artifact Idsqlite-jdbc
    Current Version3.36.0.3
    Scope
    Classifier
    Typejar
    Newer versions3.39.2.0
    3.39.2.1
    3.39.3.0
    3.39.4.0
    3.39.4.1
    3.40.0.0
    3.40.1.0
    3.41.0.0
    3.41.0.1
    3.41.2.0
    3.41.2.1
    3.41.2.2
    3.42.0.0
    3.42.0.1
    3.43.0.0
    3.43.2.0
    3.43.2.1
    3.43.2.2
    3.44.0.0
    3.44.1.0
    3.45.0.0
    3.45.1.0 Latest Minor
    +

    org.xmlunit:xmlunit-assertj

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-assertj
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-assertj3

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-assertj3
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-core

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-core
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-legacy

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-legacy
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-matchers

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-matchers
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.xmlunit:xmlunit-placeholders

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.xmlunit
    Artifact Idxmlunit-placeholders
    Current Version2.9.1
    Scope
    Classifier
    Typejar
    +

    org.yaml:snakeyaml

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.yaml
    Artifact Idsnakeyaml
    Current Version1.30
    Scope
    Classifier
    Typejar
    Newer versions1.31
    1.32
    1.33 Latest Minor
    2.0
    2.1
    2.2 Latest Major
    +

    redis.clients:jedis

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idredis.clients
    Artifact Idjedis
    Current Version3.8.0
    Scope
    Classifier
    Typejar
    Newer versions3.9.0
    3.10.0 Latest Minor
    4.0.0-beta1
    4.0.0-beta2
    4.0.0-beta3
    4.0.0-beta4
    4.0.0-RC1
    4.0.0-rc2
    4.0.0
    4.0.1
    4.1.0
    4.1.1
    4.2.0-m1
    4.2.0-rc1
    4.2.0
    4.2.1
    4.2.2
    4.2.3
    4.3.0-m1
    4.3.0-m2
    4.3.0
    4.3.1
    4.3.2
    4.4.0-m1
    4.4.0-m2
    4.4.0-rc1
    4.4.0
    4.4.1
    4.4.2
    4.4.3
    4.4.4
    4.4.5
    4.4.6
    5.0.0-alpha1
    5.0.0-alpha2
    5.0.0-beta1
    5.0.0-beta2
    5.0.0
    5.0.1
    5.0.2
    5.1.0
    5.2.0-alpha2 Latest Major
    +

    wsdl4j:wsdl4j

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idwsdl4j
    Artifact Idwsdl4j
    Current Version1.6.3
    Scope
    Classifier
    Typejar
    +
    +
    +
    +
    + + + + diff --git a/en/distribution-management.html b/en/distribution-management.html new file mode 100644 index 0000000..fc4099c --- /dev/null +++ b/en/distribution-management.html @@ -0,0 +1,79 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Distribution Management + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    The following is the distribution management information used by this project.

    +

    Repository - ossrh

    https://oss.sonatype.org/service/local/staging/deploy/maven2/
    +

    Snapshot Repository - ossrh

    https://oss.sonatype.org/content/repositories/snapshots
    +

    Site - gh-pages-scm

    +

    scm:git:ssh://git@github.com/mybatis/spring-native.git/mybatis-spring-native-docs

    +
    +
    +
    +
    + + + + diff --git a/en/fonts/glyphicons-halflings-regular.eot b/en/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..423bd5d Binary files /dev/null and b/en/fonts/glyphicons-halflings-regular.eot differ diff --git a/en/fonts/glyphicons-halflings-regular.svg b/en/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..c8f06d9 --- /dev/null +++ b/en/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/fonts/glyphicons-halflings-regular.ttf b/en/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..a498ef4 Binary files /dev/null and b/en/fonts/glyphicons-halflings-regular.ttf differ diff --git a/en/fonts/glyphicons-halflings-regular.woff b/en/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..d83c539 Binary files /dev/null and b/en/fonts/glyphicons-halflings-regular.woff differ diff --git a/en/images/accessories-text-editor.png b/en/images/accessories-text-editor.png new file mode 100644 index 0000000..abc3366 Binary files /dev/null and b/en/images/accessories-text-editor.png differ diff --git a/en/images/add.gif b/en/images/add.gif new file mode 100644 index 0000000..1cb3dbf Binary files /dev/null and b/en/images/add.gif differ diff --git a/en/images/apache-maven-project-2.png b/en/images/apache-maven-project-2.png new file mode 100644 index 0000000..a44db6e Binary files /dev/null and b/en/images/apache-maven-project-2.png differ diff --git a/en/images/application-certificate.png b/en/images/application-certificate.png new file mode 100644 index 0000000..cc6aff6 Binary files /dev/null and b/en/images/application-certificate.png differ diff --git a/en/images/close.gif b/en/images/close.gif new file mode 100644 index 0000000..1c26bbc Binary files /dev/null and b/en/images/close.gif differ diff --git a/en/images/contact-new.png b/en/images/contact-new.png new file mode 100644 index 0000000..ebc4316 Binary files /dev/null and b/en/images/contact-new.png differ diff --git a/en/images/document-properties.png b/en/images/document-properties.png new file mode 100644 index 0000000..34c2409 Binary files /dev/null and b/en/images/document-properties.png differ diff --git a/en/images/drive-harddisk.png b/en/images/drive-harddisk.png new file mode 100644 index 0000000..d7ce475 Binary files /dev/null and b/en/images/drive-harddisk.png differ diff --git a/en/images/fix.gif b/en/images/fix.gif new file mode 100644 index 0000000..b7eb3dc Binary files /dev/null and b/en/images/fix.gif differ diff --git a/en/images/icon_error_sml.gif b/en/images/icon_error_sml.gif new file mode 100644 index 0000000..12e9a01 Binary files /dev/null and b/en/images/icon_error_sml.gif differ diff --git a/en/images/icon_help_sml.gif b/en/images/icon_help_sml.gif new file mode 100644 index 0000000..aaf20e6 Binary files /dev/null and b/en/images/icon_help_sml.gif differ diff --git a/en/images/icon_info_sml.gif b/en/images/icon_info_sml.gif new file mode 100644 index 0000000..b776326 Binary files /dev/null and b/en/images/icon_info_sml.gif differ diff --git a/en/images/icon_success_sml.gif b/en/images/icon_success_sml.gif new file mode 100644 index 0000000..0a19527 Binary files /dev/null and b/en/images/icon_success_sml.gif differ diff --git a/en/images/icon_warning_sml.gif b/en/images/icon_warning_sml.gif new file mode 100644 index 0000000..ac6ad6a Binary files /dev/null and b/en/images/icon_warning_sml.gif differ diff --git a/en/images/image-x-generic.png b/en/images/image-x-generic.png new file mode 100644 index 0000000..ab49efb Binary files /dev/null and b/en/images/image-x-generic.png differ diff --git a/en/images/internet-web-browser.png b/en/images/internet-web-browser.png new file mode 100644 index 0000000..307d6ac Binary files /dev/null and b/en/images/internet-web-browser.png differ diff --git a/en/images/logos/build-by-maven-black.png b/en/images/logos/build-by-maven-black.png new file mode 100644 index 0000000..919fd0f Binary files /dev/null and b/en/images/logos/build-by-maven-black.png differ diff --git a/en/images/logos/build-by-maven-white.png b/en/images/logos/build-by-maven-white.png new file mode 100644 index 0000000..7d44c9c Binary files /dev/null and b/en/images/logos/build-by-maven-white.png differ diff --git a/en/images/logos/maven-feather.png b/en/images/logos/maven-feather.png new file mode 100644 index 0000000..b5ada83 Binary files /dev/null and b/en/images/logos/maven-feather.png differ diff --git a/en/images/network-server.png b/en/images/network-server.png new file mode 100644 index 0000000..1d12e19 Binary files /dev/null and b/en/images/network-server.png differ diff --git a/en/images/package-x-generic.png b/en/images/package-x-generic.png new file mode 100644 index 0000000..8b7e9e6 Binary files /dev/null and b/en/images/package-x-generic.png differ diff --git a/en/images/profiles/pre-release.png b/en/images/profiles/pre-release.png new file mode 100644 index 0000000..d448e85 Binary files /dev/null and b/en/images/profiles/pre-release.png differ diff --git a/en/images/profiles/retired.png b/en/images/profiles/retired.png new file mode 100644 index 0000000..f89f6a2 Binary files /dev/null and b/en/images/profiles/retired.png differ diff --git a/en/images/profiles/sandbox.png b/en/images/profiles/sandbox.png new file mode 100644 index 0000000..f88b362 Binary files /dev/null and b/en/images/profiles/sandbox.png differ diff --git a/en/images/remove.gif b/en/images/remove.gif new file mode 100644 index 0000000..fc65631 Binary files /dev/null and b/en/images/remove.gif differ diff --git a/en/images/rss.png b/en/images/rss.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/en/images/rss.png differ diff --git a/en/images/update.gif b/en/images/update.gif new file mode 100644 index 0000000..b2a6d0b Binary files /dev/null and b/en/images/update.gif differ diff --git a/en/images/window-new.png b/en/images/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/en/images/window-new.png differ diff --git a/en/img/glyphicons-halflings-white.png b/en/img/glyphicons-halflings-white.png new file mode 100644 index 0000000..3bf6484 Binary files /dev/null and b/en/img/glyphicons-halflings-white.png differ diff --git a/en/img/glyphicons-halflings.png b/en/img/glyphicons-halflings.png new file mode 100644 index 0000000..a996999 Binary files /dev/null and b/en/img/glyphicons-halflings.png differ diff --git a/en/index.html b/en/index.html new file mode 100644 index 0000000..2ed02ef --- /dev/null +++ b/en/index.html @@ -0,0 +1,75 @@ + + + + + + + + + + mybatis-spring-native-docs – About + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    About mybatis-spring-native-docs

    +

    Documents for MyBatis integration with Spring Native feature

    +
    +
    +
    +
    + + + + diff --git a/en/issue-management.html b/en/issue-management.html new file mode 100644 index 0000000..9be0119 --- /dev/null +++ b/en/issue-management.html @@ -0,0 +1,79 @@ + + + + + + + + + + mybatis-spring-native-docs – Issue Management + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This project uses GitHub Issue Management to manage its issues.

    +

    Issue Management

    +

    Issues, bugs, and feature requests should be submitted to the following issue management system for this project.

    +
    +
    +
    +
    +
    + + + + diff --git a/en/js/apache-maven-fluido-2.0.0-M8.min.js b/en/js/apache-maven-fluido-2.0.0-M8.min.js new file mode 100644 index 0000000..819716a --- /dev/null +++ b/en/js/apache-maven-fluido-2.0.0-M8.min.js @@ -0,0 +1,287 @@ +(function(g,p){"object"===typeof module&&"object"===typeof module.exports?module.exports=g.document?p(g,!0):function(g){if(!g.document)throw Error("jQuery requires a window with a document");return p(g)}:p(g)})("undefined"!==typeof window?window:this,function(g,p){function x(a){var b=a.length,e=d.type(a);return"function"===e||d.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===e||0===b||"number"===typeof b&&0b;b+=2)"margin"=== +e&&(u+=d.css(a,e+oa[b],!0,l)),k?("content"===e&&(u-=d.css(a,"padding"+oa[b],!0,l)),"margin"!==e&&(u-=d.css(a,"border"+oa[b]+"Width",!0,l))):(u+=d.css(a,"padding"+oa[b],!0,l),"padding"!==e&&(u+=d.css(a,"border"+oa[b]+"Width",!0,l)));return u}function U(a,b,e){var k=!0,l="width"===b?a.offsetWidth:a.offsetHeight,u=ga(a),c=w.boxSizing&&"border-box"===d.css(a,"boxSizing",!1,u);if(0>=l||null==l){l=pa(a,b,u);if(0>l||null==l)l=a.style[b];if(Ja.test(l))return l;k=c&&(w.boxSizingReliable()||l===a.style[b]); +l=parseFloat(l)||0}return l+S(a,b,e||(c?"border":"content"),k,u)+"px"}function H(a,b,e,d,l){return new H.prototype.init(a,b,e,d,l)}function J(){setTimeout(function(){wa=void 0});return wa=d.now()}function v(a,b){var e,d={height:a},l=0;for(b=b?1:0;4>l;l+=2-b)e=oa[l],d["margin"+e]=d["padding"+e]=a;b&&(d.opacity=d.width=a);return d}function da(a,b,e){for(var d,l=(xa[b]||[]).concat(xa["*"]),c=0,f=l.length;ce&&l)return b;f.resolveWith(a,[h]);return!1}, +h=f.promise({elem:a,props:d.extend({},b),opts:d.extend(!0,{specialEasing:{}},e),originalProperties:b,originalOptions:e,startTime:wa||J(),duration:e.duration,tweens:[],createTween:function(b,e){b=d.Tween(a,h.opts,b,e,h.opts.specialEasing[b]||h.opts.easing);h.tweens.push(b);return b},stop:function(b){var e=0,d=b?h.tweens.length:0;if(k)return this;for(k=!0;ea?this[a+this.length]:this[a]:ba.call(this)},pushStack:function(a){a=d.merge(this.constructor(),a);a.prevObject=this;a.context=this.context;return a},each:function(a,b){return d.each(this,a,b)},map:function(a){return this.pushStack(d.map(this,function(b,e){return a.call(b,e,b)}))},slice:function(){return this.pushStack(ba.apply(this,arguments))},first:function(){return this.eq(0)}, +last:function(){return this.eq(-1)},eq:function(a){var b=this.length;a=+a+(0>a?b:0);return this.pushStack(0<=a&&ae?Math.max(0,d+e):e:0;eF.cacheLength&&delete a[b.shift()];return a[d+" "]=e}var b=[];return a}function k(a){a[Q]=!0;return a}function l(a){var b=I.createElement("div");try{return!!a(b)}catch(ma){return!1}finally{b.parentNode&&b.parentNode.removeChild(b)}}function c(a,b){var d=a.split("|");for(a=a.length;a--;)F.attrHandle[d[a]]=b}function f(a,b){var d=b&&a,e=d&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex|| +-2147483648)-(~a.sourceIndex||-2147483648);if(e)return e;if(d)for(;d=d.nextSibling;)if(d===b)return-1;return a?1:-1}function g(a){return function(b){return"input"===b.nodeName.toLowerCase()&&b.type===a}}function h(a){return function(b){var d=b.nodeName.toLowerCase();return("input"===d||"button"===d)&&b.type===a}}function m(a){return k(function(b){b=+b;return k(function(d,e){for(var k,l=a([],d.length,b),c=l.length;c--;)d[k=l[c]]&&(d[k]=!(e[k]=d[k]))})})}function t(a){return a&&"undefined"!==typeof a.getElementsByTagName&& +a}function n(){}function v(a){for(var b=0,d=a.length,e="";b+~]|[\x20\t\r\n\f])[\x20\t\r\n\f]*/,ta=/=[\x20\t\r\n\f]*([^\]'"]*?)[\x20\t\r\n\f]*\]/g,ua=new RegExp(ia),wa=new RegExp("^"+ka+"$"),ja={ID:/^#((?:\\.|[\w-]|[^\x00-\xa0])+)/,CLASS:/^\.((?:\\.|[\w-]|[^\x00-\xa0])+)/,TAG:new RegExp("^("+"(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+".replace("w","w*")+")"),ATTR:new RegExp("^"+la),PSEUDO:new RegExp("^"+ia), +CHILD:/^:(only|first|last|nth|nth-last)-(child|of-type)(?:\([\x20\t\r\n\f]*(even|odd|(([+-]|)(\d*)n|)[\x20\t\r\n\f]*(?:([+-]|)[\x20\t\r\n\f]*(\d+)|))[\x20\t\r\n\f]*\)|)/i,bool:/^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,needsContext:/^[\x20\t\r\n\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\([\x20\t\r\n\f]*((?:-\d)?\d*)[\x20\t\r\n\f]*\)|)(?=[^-]|$)/i},ya=/^(?:input|select|textarea|button)$/i,za=/^h\d$/i,ha= +/^[^{]+\{\s*\[native \w/,Aa=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,na=/[+~]/,Ca=/'|\\/g,qa=/\\([\da-f]{1,6}[\x20\t\r\n\f]?|([\x20\t\r\n\f])|.)/ig,ra=function(a,b,d){a="0x"+b-65536;return a!==a||d?b:0>a?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,a&1023|56320)},xa=function(){R()};try{Y.apply(V=Ga.call(E.childNodes),E.childNodes),V[E.childNodes.length].nodeType}catch(T){Y={apply:V.length?function(a,b){La.apply(a,Ga.call(b))}:function(a,b){for(var d=a.length,e=0;a[d++]=b[e++];);a.length= +d-1}}}B=b.support={};G=b.isXML=function(a){return(a=a&&(a.ownerDocument||a).documentElement)?"HTML"!==a.nodeName:!1};R=b.setDocument=function(a){var b=a?a.ownerDocument||a:E;if(b===I||9!==b.nodeType||!b.documentElement)return I;I=b;O=b.documentElement;(a=b.defaultView)&&a!==a.top&&(a.addEventListener?a.addEventListener("unload",xa,!1):a.attachEvent&&a.attachEvent("onunload",xa));H=!G(b);B.attributes=l(function(a){a.className="i";return!a.getAttribute("className")});B.getElementsByTagName=l(function(a){a.appendChild(b.createComment("")); +return!a.getElementsByTagName("*").length});B.getElementsByClassName=ha.test(b.getElementsByClassName);B.getById=l(function(a){O.appendChild(a).id=Q;return!b.getElementsByName||!b.getElementsByName(Q).length});B.getById?(F.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&H)return(a=b.getElementById(a))&&a.parentNode?[a]:[]},F.filter.ID=function(a){var b=a.replace(qa,ra);return function(a){return a.getAttribute("id")===b}}):(delete F.find.ID,F.filter.ID=function(a){var b=a.replace(qa, +ra);return function(a){return(a="undefined"!==typeof a.getAttributeNode&&a.getAttributeNode("id"))&&a.value===b}});F.find.TAG=B.getElementsByTagName?function(a,b){if("undefined"!==typeof b.getElementsByTagName)return b.getElementsByTagName(a);if(B.qsa)return b.querySelectorAll(a)}:function(a,b){var d=[],e=0;b=b.getElementsByTagName(a);if("*"===a){for(;a=b[e++];)1===a.nodeType&&d.push(a);return d}return b};F.find.CLASS=B.getElementsByClassName&&function(a,b){if(H)return b.getElementsByClassName(a)}; +J=[];r=[];if(B.qsa=ha.test(b.querySelectorAll))l(function(a){O.appendChild(a).innerHTML="\x3ca id\x3d'"+Q+"'\x3e\x3c/a\x3e\x3cselect id\x3d'"+Q+"-\f]' msallowcapture\x3d''\x3e\x3coption selected\x3d''\x3e\x3c/option\x3e\x3c/select\x3e";a.querySelectorAll("[msallowcapture^\x3d'']").length&&r.push("[*^$]\x3d[\\x20\\t\\r\\n\\f]*(?:''|\"\")");a.querySelectorAll("[selected]").length||r.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)"); +a.querySelectorAll("[id~\x3d"+Q+"-]").length||r.push("~\x3d");a.querySelectorAll(":checked").length||r.push(":checked");a.querySelectorAll("a#"+Q+"+*").length||r.push(".#.+[+~]")}),l(function(a){var d=b.createElement("input");d.setAttribute("type","hidden");a.appendChild(d).setAttribute("name","D");a.querySelectorAll("[name\x3dd]").length&&r.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?\x3d");a.querySelectorAll(":enabled").length||r.push(":enabled",":disabled");a.querySelectorAll("*,:x");r.push(",.*:")}); +(B.matchesSelector=ha.test(Ba=O.matches||O.webkitMatchesSelector||O.mozMatchesSelector||O.oMatchesSelector||O.msMatchesSelector))&&l(function(a){B.disconnectedMatch=Ba.call(a,"div");Ba.call(a,"[s!\x3d'']:x");J.push("!\x3d",ia)});r=r.length&&new RegExp(r.join("|"));J=J.length&&new RegExp(J.join("|"));va=(a=ha.test(O.compareDocumentPosition))||ha.test(O.contains)?function(a,b){var d=9===a.nodeType?a.documentElement:a;b=b&&b.parentNode;return a===b||!!(b&&1===b.nodeType&&(d.contains?d.contains(b):a.compareDocumentPosition&& +a.compareDocumentPosition(b)&16))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1};ca=a?function(a,d){if(a===d)return x=!0,0;var e=!a.compareDocumentPosition-!d.compareDocumentPosition;if(e)return e;e=(a.ownerDocument||a)===(d.ownerDocument||d)?a.compareDocumentPosition(d):1;return e&1||!B.sortDetached&&d.compareDocumentPosition(a)===e?a===b||a.ownerDocument===E&&va(E,a)?-1:d===b||d.ownerDocument===E&&va(E,d)?1:P?ba(P,a)-ba(P,d):0:e&4?-1:1}:function(a,d){if(a===d)return x=!0,0; +var e=0,k=a.parentNode,l=d.parentNode,c=[a],u=[d];if(!k||!l)return a===b?-1:d===b?1:k?-1:l?1:P?ba(P,a)-ba(P,d):0;if(k===l)return f(a,d);for(;a=a.parentNode;)c.unshift(a);for(a=d;a=a.parentNode;)u.unshift(a);for(;c[e]===u[e];)e++;return e?f(c[e],u[e]):c[e]===E?-1:u[e]===E?1:0};return b};b.matches=function(a,d){return b(a,null,null,d)};b.matchesSelector=function(a,d){(a.ownerDocument||a)!==I&&R(a);d=d.replace(ta,"\x3d'$1']");if(!(!B.matchesSelector||!H||J&&J.test(d)||r&&r.test(d)))try{var e=Ba.call(a, +d);if(e||B.disconnectedMatch||a.document&&11!==a.document.nodeType)return e}catch(Da){}return 0a.nodeType)return!1;return!0},parent:function(a){return!F.pseudos.empty(a)},header:function(a){return za.test(a.nodeName)},input:function(a){return ya.test(a.nodeName)}, +button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:m(function(){return[0]}),last:m(function(a,b){return[b-1]}),eq:m(function(a,b,d){return[0>d?d+b:d]}),even:m(function(a,b){for(var d=0;dd?d+b:d;0<=--b;)a.push(b);return a}),gt:m(function(a,b,d){for(d=0>d?d+b:d;++d(?:<\/\1>|)$/,Gb=/^.[^:#\[\.,]*$/;d.filter=function(a,b,e){var k=b[0];e&&(a=":not("+a+")");return 1===b.length&&1===k.nodeType?d.find.matchesSelector(k,a)?[k]:[]:d.find.matches(a,d.grep(b,function(a){return 1===a.nodeType}))};d.fn.extend({find:function(a){var b,e=[],k=this,l=k.length;if("string"!==typeof a)return this.pushStack(d(a).filter(function(){for(b= +0;b)[^>]*|#([\w-]*))$/;(d.fn.init=function(a,b){var e;if(!a)return this;if("string"=== +typeof a){e="\x3c"===a.charAt(0)&&"\x3e"===a.charAt(a.length-1)&&3<=a.length?[null,a,null]:Vb.exec(a);if(!e||!e[1]&&b)return!b||b.jquery?(b||Ha).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof d?b[0]:b,d.merge(this,d.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),mb.test(e[1])&&d.isPlainObject(b))for(e in b)if(d.isFunction(this[e]))this[e](b[e]);else this.attr(e,b[e])}else{if((b=z.getElementById(e[2]))&&b.parentNode){if(b.id!==e[2])return Ha.find(a);this.length=1;this[0]=b}this.context= +z;this.selector=a}return this}if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(d.isFunction(a))return"undefined"!==typeof Ha.ready?Ha.ready(a):a(d);void 0!==a.selector&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)}).prototype=d.fn;Ha=d(z);var Wb=/^(?:parents|prev(?:Until|All))/,Xb={children:!0,contents:!0,next:!0,prev:!0};d.extend({dir:function(a,b,e){var k=[];for(a=a[b];a&&9!==a.nodeType&&(void 0===e||1!==a.nodeType||!d(a).is(e));)1===a.nodeType&& +k.push(a),a=a[b];return k},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&d.push(a);return d}});d.fn.extend({has:function(a){var b,e=d(a,this),k=e.length;return this.filter(function(){for(b=0;be.nodeType&&(f?-1p.indexOf(":")&&"on"+p,a=a[d.expando]?a: +new d.Event(p,"object"===typeof a&&a),a.isTrigger=k?2:3,a.namespace=n.join("."),a.namespace_re=a.namespace?new RegExp("(^|\\.)"+n.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,a.result=void 0,a.target||(a.target=e),b=null==b?[a]:d.makeArray(b,[a]),n=d.event.special[p]||{},k||!n.trigger||!1!==n.trigger.apply(e,b))){if(!k&&!n.noBubble&&!d.isWindow(e)){m=n.delegateType||p;nb.test(m+p)||(h=h.parentNode);for(;h;h=h.parentNode)t.push(h),c=h;c===(e.ownerDocument||z)&&t.push(c.defaultView||c.parentWindow||g)}for(v= +0;(h=t[v++])&&!a.isPropagationStopped();)a.type=1]*)\/>/gi,rb=/<([\w:]+)/,sb=/\s*$/g,ca={option:[1,"\x3cselect multiple\x3d'multiple'\x3e","\x3c/select\x3e"],legend:[1,"\x3cfieldset\x3e","\x3c/fieldset\x3e"],area:[1, +"\x3cmap\x3e","\x3c/map\x3e"],param:[1,"\x3cobject\x3e","\x3c/object\x3e"],thead:[1,"\x3ctable\x3e","\x3c/table\x3e"],tr:[2,"\x3ctable\x3e\x3ctbody\x3e","\x3c/tbody\x3e\x3c/table\x3e"],col:[2,"\x3ctable\x3e\x3ctbody\x3e\x3c/tbody\x3e\x3ccolgroup\x3e","\x3c/colgroup\x3e\x3c/table\x3e"],td:[3,"\x3ctable\x3e\x3ctbody\x3e\x3ctr\x3e","\x3c/tr\x3e\x3c/tbody\x3e\x3c/table\x3e"],_default:w.htmlSerialize?[0,"",""]:[1,"X\x3cdiv\x3e","\x3c/div\x3e"]},Za=Aa(z).appendChild(z.createElement("div"));ca.optgroup= +ca.option;ca.tbody=ca.tfoot=ca.colgroup=ca.caption=ca.thead;ca.th=ca.td;d.extend({clone:function(a,b,e){var c,l,f,g,h,m=d.contains(a.ownerDocument,a);w.html5Clone||d.isXMLDoc(a)||!pb.test("\x3c"+a.nodeName+"\x3e")?f=a.cloneNode(!0):(Za.innerHTML=a.outerHTML,Za.removeChild(f=Za.firstChild));if(!(w.noCloneEvent&&w.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||d.isXMLDoc(a)))for(c=N(f),h=N(a),g=0;null!=(l=h[g]);++g)if(c[g]){var n=c[g],t,p=void 0,v;if(1===n.nodeType){t=n.nodeName.toLowerCase();if(!w.noCloneEvent&& +n[d.expando]){v=d._data(n);for(p in v.events)d.removeEvent(n,p,v.handle);n.removeAttribute(d.expando)}if("script"===t&&n.text!==l.text)ia(n).text=l.text,A(n);else if("object"===t)n.parentNode&&(n.outerHTML=l.outerHTML),w.html5Clone&&l.innerHTML&&!d.trim(n.innerHTML)&&(n.innerHTML=l.innerHTML);else if("input"===t&&Ua.test(l.type))n.defaultChecked=n.checked=l.checked,n.value!==l.value&&(n.value=l.value);else if("option"===t)n.defaultSelected=n.selected=l.defaultSelected;else if("input"===t||"textarea"=== +t)n.defaultValue=l.defaultValue}}if(b)if(e)for(h=h||N(a),c=c||N(f),g=0;null!=(l=h[g]);g++)P(l,c[g]);else P(a,f);c=N(f,"script");0e;e++)c[a+oa[e]+b]=d[e]||d[e-2]||d[0];return c}};ub.test(a)||(d.cssHooks[a+b].set=va)});d.fn.extend({css:function(a,b){return sa(this,function(a,b,c){var e,f={},k=0;if(d.isArray(b)){c=ga(a);for(e=b.length;kc)?null:[],g=a?c+1:e.length,h=0>c?g:a?c:0;hc.indexOf(" "+f+" ")&&(c+=f+" ");c=d.trim(c);e.className!==c&&(e.className=c)}return this},removeClass:function(a){var b, +e,c,f,g,h=0,m=this.length;b=0===arguments.length||"string"===typeof a&&a;if(d.isFunction(a))return this.each(function(b){d(this).removeClass(a.call(this,b,this.className))});if(b)for(b=(a||"").match(Y)||[];ha||304===a;if(c){l=t;for(var p=B,I,z,r,D,G=l.contents,K=l.dataTypes;"*"===K[0];)K.shift(),void 0===z&&(z=l.mimeType||p.getResponseHeader("Content-Type"));if(z)for(D in G)if(G[D]&&G[D].test(z)){K.unshift(D);break}if(K[0]in c)r=K[0];else{for(D in c){if(!K[0]||l.converters[D+" "+K[0]]){r=D;break}I||(I=D)}r=r||I}r?(r!==K[0]&&K.unshift(r),l=c[r]):l=void 0}a:{c=t;I=l;z=B;r=e;var P, +O,F,p={},G=c.dataTypes.slice();if(G[1])for(O in c.converters)p[O.toLowerCase()]=c.converters[O];for(D=G.shift();D;)if(c.responseFields[D]&&(z[c.responseFields[D]]=I),!F&&r&&c.dataFilter&&(I=c.dataFilter(I,c.dataType)),F=D,D=G.shift())if("*"===D)D=F;else if("*"!==F&&F!==D){O=p[F+" "+D]||p["* "+D];if(!O)for(P in p)if(l=P.split(" "),l[1]===D&&(O=p[F+" "+l[0]]||p["* "+l[0]])){!0===O?O=p[P]:!0!==p[P]&&(D=l[0],G.unshift(l[1]));break}if(!0!==O)if(O&&c["throws"])I=O(I);else try{I=O(I)}catch(Tb){l={state:"parsererror", +error:O?Tb:"No conversion from "+F+" to "+D};break a}}l={state:"success",data:I}}if(e)t.ifModified&&((u=B.getResponseHeader("Last-Modified"))&&(d.lastModified[g]=u),(u=B.getResponseHeader("etag"))&&(d.etag[g]=u)),204===a||"HEAD"===t.type?u="nocontent":304===a?u="notmodified":(u=l.state,f=l.data,k=l.error,e=!k);else if(k=u,a||!u)u="error",0>a&&(a=0);B.status=a;B.statusText=(b||u)+"";e?w.resolveWith(y,[f,u,B]):w.rejectWith(y,[B,u,k]);B.statusCode(da);da=void 0;n&&C.trigger(e?"ajaxSuccess":"ajaxError", +[B,t,e?f:k]);A.fireWith(y,[B,u]);n&&(C.trigger("ajaxComplete",[B,t]),--d.active||d.event.trigger("ajaxStop"))}}"object"===typeof a&&(b=a,a=void 0);b=b||{};var f,g,h,m,n,v,p,t=d.ajaxSetup({},b),y=t.context||t,C=t.context&&(y.nodeType||y.jquery)?d(y):d.event,w=d.Deferred(),A=d.Callbacks("once memory"),da=t.statusCode||{},I={},z={},L=0,r="canceled",B={readyState:0,getResponseHeader:function(a){var b;if(2===L){if(!p)for(p={};b=rc.exec(h);)p[b[1].toLowerCase()]=b[2];b=p[a.toLowerCase()]}return null==b? +null:b},getAllResponseHeaders:function(){return 2===L?h:null},setRequestHeader:function(a,b){var d=a.toLowerCase();L||(a=z[d]=z[d]||a,I[a]=b);return this},overrideMimeType:function(a){L||(t.mimeType=a);return this},statusCode:function(a){var b;if(a)if(2>L)for(b in a)da[b]=[da[b],a[b]];else B.always(a[B.status]);return this},abort:function(a){a=a||r;v&&v.abort(a);c(0,a);return this}};w.promise(B).complete=A.add;B.success=B.done;B.error=B.fail;t.url=((a||t.url||la)+"").replace(qc,"").replace(tc,ua[1]+ +"//");t.type=b.method||b.type||t.method||t.type;t.dataTypes=d.trim(t.dataType||"*").toLowerCase().match(Y)||[""];null==t.crossDomain&&(a=zb.exec(t.url.toLowerCase()),t.crossDomain=!(!a||a[1]===ua[1]&&a[2]===ua[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(ua[3]||("http:"===ua[1]?"80":"443"))));t.data&&t.processData&&"string"!==typeof t.data&&(t.data=d.param(t.data,t.traditional));D(Ab,t,b,B);if(2===L)return B;(n=d.event&&t.global)&&0===d.active++&&d.event.trigger("ajaxStart");t.type=t.type.toUpperCase(); +t.hasContent=!sc.test(t.type);g=t.url;t.hasContent||(t.data&&(g=t.url+=(db.test(g)?"\x26":"?")+t.data,delete t.data),!1===t.cache&&(t.url=yb.test(g)?g.replace(yb,"$1_\x3d"+cb++):g+(db.test(g)?"\x26":"?")+"_\x3d"+cb++));t.ifModified&&(d.lastModified[g]&&B.setRequestHeader("If-Modified-Since",d.lastModified[g]),d.etag[g]&&B.setRequestHeader("If-None-Match",d.etag[g]));(t.data&&t.hasContent&&!1!==t.contentType||b.contentType)&&B.setRequestHeader("Content-Type",t.contentType);B.setRequestHeader("Accept", +t.dataTypes[0]&&t.accepts[t.dataTypes[0]]?t.accepts[t.dataTypes[0]]+("*"!==t.dataTypes[0]?", "+Bb+"; q\x3d0.01":""):t.accepts["*"]);for(f in t.headers)B.setRequestHeader(f,t.headers[f]);if(t.beforeSend&&(!1===t.beforeSend.call(y,B,t)||2===L))return B.abort();r="abort";for(f in{success:1,error:1,complete:1})B[f](t[f]);if(v=D(Va,t,b,B)){B.readyState=1;n&&C.trigger("ajaxSend",[B,t]);t.async&&0L)c(-1, +F);else throw F;}}else c(-1,"No Transport");return B},getJSON:function(a,b,c){return d.get(a,b,c,"json")},getScript:function(a,b){return d.get(a,void 0,b,"script")}});d.each(["get","post"],function(a,b){d[b]=function(a,c,f,g){d.isFunction(c)&&(g=g||f,f=c,c=void 0);return d.ajax({url:a,type:b,dataType:g,data:c,success:f})}});d._evalUrl=function(a){return d.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})};d.fn.extend({wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this, +b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var a=this;a.firstChild&&1===a.firstChild.nodeType;)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return d.isFunction(a)?this.each(function(b){d(this).wrapInner(a.call(this,b))}):this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=d.isFunction(a);return this.each(function(c){d(this).wrapAll(b? +a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()}});d.expr.filters.hidden=function(a){return 0>=a.offsetWidth&&0>=a.offsetHeight||!w.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||d.css(a,"display"))};d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)};var uc=/%20/g,Nb=/\[\]$/,Cb=/\r?\n/g,vc=/^(?:submit|button|image|reset|file)$/i,wc=/^(?:input|select|textarea|keygen)/i;d.param= +function(a,b){var c,f=[],g=function(a,b){b=d.isFunction(b)?b():null==b?"":b;f[f.length]=encodeURIComponent(a)+"\x3d"+encodeURIComponent(b)};void 0===b&&(b=d.ajaxSettings&&d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){g(this.name,this.value)});else for(c in a)ea(c,a[c],b,g);return f.join("\x26").replace(uc,"+")};d.fn.extend({serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=d.prop(this, +"elements");return a?d.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!d(this).is(":disabled")&&wc.test(this.nodeName)&&!vc.test(a)&&(this.checked||!Ua.test(a))}).map(function(a,b){a=d(this).val();return null==a?null:d.isArray(a)?d.map(a,function(a){return{name:b.name,value:a.replace(Cb,"\r\n")}}):{name:b.name,value:a.replace(Cb,"\r\n")}}).get()}});d.ajaxSettings.xhr=void 0!==g.ActiveXObject?function(){var a;if(!(a=!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&& +La()))a:{try{a=new g.ActiveXObject("Microsoft.XMLHTTP");break a}catch(b){}a=void 0}return a}:La;var xc=0,Ra={},Sa=d.ajaxSettings.xhr();g.attachEvent&&g.attachEvent("onunload",function(){for(var a in Ra)Ra[a](void 0,!0)});w.cors=!!Sa&&"withCredentials"in Sa;(Sa=w.ajax=!!Sa)&&d.ajaxTransport(function(a){if(!a.crossDomain||w.cors){var b;return{send:function(c,f){var e,g=a.xhr(),k=++xc;g.open(a.type,a.url,a.async,a.username,a.password);if(a.xhrFields)for(e in a.xhrFields)g[e]=a.xhrFields[e];a.mimeType&& +g.overrideMimeType&&g.overrideMimeType(a.mimeType);a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&g.setRequestHeader(e,c[e]+"");g.send(a.hasContent&&a.data||null);b=function(c,e){var h,l,m;if(b&&(e||4===g.readyState))if(delete Ra[k],b=void 0,g.onreadystatechange=d.noop,e)4!==g.readyState&&g.abort();else{m={};h=g.status;"string"===typeof g.responseText&&(m.text=g.responseText);try{l=g.statusText}catch(Mb){l=""}h||!a.isLocal||a.crossDomain?1223=== +h&&(h=204):h=m.text?200:404}m&&f(h,l,m,g.getAllResponseHeaders())};a.async?4===g.readyState?setTimeout(b):g.onreadystatechange=Ra[k]=b:b()},abort:function(){b&&b(void 0,!0)}}}});d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){d.globalEval(a);return a}}});d.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1);a.crossDomain&&(a.type="GET", +a.global=!1)});d.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=z.head||d("head")[0]||z.documentElement;return{send:function(d,e){b=z.createElement("script");b.async=!0;a.scriptCharset&&(b.charset=a.scriptCharset);b.src=a.url;b.onload=b.onreadystatechange=function(a,d){if(d||!b.readyState||/loaded|complete/.test(b.readyState))b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,d||e(200,"success")};c.insertBefore(b,c.firstChild)},abort:function(){if(b)b.onload(void 0, +!0)}}}});var Db=[],eb=/(=)\?(?=&|$)|\?\?/;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Db.pop()||d.expando+"_"+cb++;this[a]=!0;return a}});d.ajaxPrefilter("json jsonp",function(a,b,c){var e,f,h,m=!1!==a.jsonp&&(eb.test(a.url)?"url":"string"===typeof a.data&&!(a.contentType||"").indexOf("application/x-www-form-urlencoded")&&eb.test(a.data)&&"data");if(m||"jsonp"===a.dataTypes[0])return e=a.jsonpCallback=d.isFunction(a.jsonpCallback)?a.jsonpCallback():a.jsonpCallback,m?a[m]=a[m].replace(eb, +"$1"+e):!1!==a.jsonp&&(a.url+=(db.test(a.url)?"\x26":"?")+a.jsonp+"\x3d"+e),a.converters["script json"]=function(){h||d.error(e+" was not called");return h[0]},a.dataTypes[0]="json",f=g[e],g[e]=function(){h=arguments},c.always(function(){g[e]=f;a[e]&&(a.jsonpCallback=b.jsonpCallback,Db.push(e));h&&d.isFunction(f)&&f(h[0]);h=f=void 0}),"script"});d.parseHTML=function(a,b,c){if(!a||"string"!==typeof a)return null;"boolean"===typeof b&&(c=b,b=!1);b=b||z;var e=mb.exec(a);c=!c&&[];if(e)return[b.createElement(e[1])]; +e=d.buildFragment([a],b,c);c&&c.length&&d(c).remove();return d.merge([],e.childNodes)};var Eb=d.fn.load;d.fn.load=function(a,b,c){if("string"!==typeof a&&Eb)return Eb.apply(this,arguments);var e,f,g,h=this,m=a.indexOf(" ");0<=m&&(e=d.trim(a.slice(m,a.length)),a=a.slice(0,m));d.isFunction(b)?(c=b,b=void 0):b&&"object"===typeof b&&(g="POST");0this.$items.length-1||0>c))return this.sliding?this.$element.one("slid",function(){h.to(c)}):f==c?this.pause().cycle():this.slide(c>f?"next":"prev",g(this.$items[c]))},pause:function(c){c||(this.paused=!0);this.$element.find(".next, .prev").length&&g.support.transition.end&&(this.$element.trigger(g.support.transition.end), +this.cycle(!0));clearInterval(this.interval);this.interval=null;return this},next:function(){if(!this.sliding)return this.slide("next")},prev:function(){if(!this.sliding)return this.slide("prev")},slide:function(c,f){var h=this.$element.find(".item.active"),m=f||h[c]();f=this.interval;var n="next"==c?"left":"right",p="next"==c?"first":"last",r=this;this.sliding=!0;f&&this.pause();m=m.length?m:this.$element.find(".item")[p]();p=g.Event("slide",{relatedTarget:m[0],direction:n});if(!m.hasClass("active")){this.$indicators.length&& +(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var c=g(r.$indicators.children()[r.getActiveIndex()]);c&&c.addClass("active")}));if(g.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(p);if(p.isDefaultPrevented())return;m.addClass(c);m[0].offsetWidth;h.addClass(n);m.addClass(n);this.$element.one(g.support.transition.end,function(){m.removeClass([c,n].join(" ")).addClass("active");h.removeClass(["active",n].join(" "));r.sliding=!1; +setTimeout(function(){r.$element.trigger("slid")},0)})}else{this.$element.trigger(p);if(p.isDefaultPrevented())return;h.removeClass("active");m.addClass("active");this.sliding=!1;this.$element.trigger("slid")}f&&this.cycle();return this}}};var x=g.fn.carousel;g.fn.carousel=function(c){return this.each(function(){var f=g(this),h=f.data("carousel"),m=g.extend({},g.fn.carousel.defaults,"object"==typeof c&&c),n="string"==typeof c?c:m.slide;h||f.data("carousel",h=new p(this,m));if("number"==typeof c)h.to(c); +else if(n)h[n]();else m.interval&&h.pause().cycle()})};g.fn.carousel.defaults={interval:5E3,pause:"hover"};g.fn.carousel.Constructor=p;g.fn.carousel.noConflict=function(){g.fn.carousel=x;return this};g(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(c){var f=g(this),h,m=g(f.attr("data-target")||(h=f.attr("href"))&&h.replace(/.*(?=#[^\s]+$)/,""));h=g.extend({},m.data(),f.data());var n;m.carousel(h);(n=f.attr("data-slide-to"))&&m.data("carousel").pause().to(n).cycle(); +c.preventDefault()})}(window.jQuery); +!function(g){var p=function(c,f){this.$element=g(c);this.options=g.extend({},g.fn.collapse.defaults,f);this.options.parent&&(this.$parent=g(this.options.parent));this.options.toggle&&this.toggle()};p.prototype={constructor:p,dimension:function(){return this.$element.hasClass("width")?"width":"height"},show:function(){var c,f,h,m;if(!this.transitioning&&!this.$element.hasClass("in")){c=this.dimension();f=g.camelCase(["scroll",c].join("-"));if((h=this.$parent&&this.$parent.find("\x3e .accordion-group \x3e .in"))&&h.length){if((m= +h.data("collapse"))&&m.transitioning)return;h.collapse("hide");m||h.data("collapse",null)}this.$element[c](0);this.transition("addClass",g.Event("show"),"shown");g.support.transition&&this.$element[c](this.$element[0][f])}},hide:function(){var c;!this.transitioning&&this.$element.hasClass("in")&&(c=this.dimension(),this.reset(this.$element[c]()),this.transition("removeClass",g.Event("hide"),"hidden"),this.$element[c](0))},reset:function(c){var f=this.dimension();this.$element.removeClass("collapse")[f](c|| +"auto")[0].offsetWidth;this.$element[null!==c?"addClass":"removeClass"]("collapse");return this},transition:function(c,f,h){var m=this,n=function(){"show"==f.type&&m.reset();m.transitioning=0;m.$element.trigger(h)};this.$element.trigger(f);f.isDefaultPrevented()||(this.transitioning=1,this.$element[c]("in"),g.support.transition&&this.$element.hasClass("collapse")?this.$element.one(g.support.transition.end,n):n())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var x=g.fn.collapse; +g.fn.collapse=function(c){return this.each(function(){var f=g(this),h=f.data("collapse"),m=g.extend({},g.fn.collapse.defaults,f.data(),"object"==typeof c&&c);h||f.data("collapse",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.collapse.defaults={toggle:!0};g.fn.collapse.Constructor=p;g.fn.collapse.noConflict=function(){g.fn.collapse=x;return this};g(document).on("click.collapse.data-api","[data-toggle\x3dcollapse]",function(c){var f=g(this),h;c=f.attr("data-target")||c.preventDefault()||(h= +f.attr("href"))&&h.replace(/.*(?=#[^\s]+$)/,"");h=g(c).data("collapse")?"toggle":f.data();f[g(c).hasClass("in")?"addClass":"removeClass"]("collapsed");g(c).collapse(h)})}(window.jQuery); +!function(g){function p(){g(".dropdown-backdrop").remove();g("[data-toggle\x3ddropdown]").each(function(){x(g(this)).removeClass("open")})}function x(c){var f=c.attr("data-target");f||(f=(f=c.attr("href"))&&/#/.test(f)&&f.replace(/.*(?=#[^\s]*$)/,""));(f=f&&g(f))&&f.length||(f=c.parent());return f}var c=function(c){var f=g(c).on("click.dropdown.data-api",this.toggle);g("html").on("click.dropdown.data-api",function(){f.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(c){c= +g(this);var f,h;if(!c.is(".disabled, :disabled")){f=x(c);h=f.hasClass("open");p();if(!h){if("ontouchstart"in document.documentElement)g('\x3cdiv class\x3d"dropdown-backdrop"/\x3e').insertBefore(g(this)).on("click",p);f.toggleClass("open")}c.focus();return!1}},keydown:function(c){var f,h,p;if(/(38|40|27)/.test(c.keyCode)&&(f=g(this),c.preventDefault(),c.stopPropagation(),!f.is(".disabled, :disabled"))){h=x(f);p=h.hasClass("open");if(!p||p&&27==c.keyCode)return 27==c.which&&h.find("[data-toggle\x3ddropdown]").focus(), +f.click();f=g("[role\x3dmenu] li:not(.divider):visible a",h);f.length&&(h=f.index(f.filter(":focus")),38==c.keyCode&&0c.left&&(f=-2*c.left,c.left=0,g.offset(c),p=g[0].offsetWidth),this.replaceArrow(f-m+p,p,"left")):this.replaceArrow(r-n,r,"top");x&&g.offset(c)},replaceArrow:function(c,f,g){this.arrow().css(g,c?50*(1-c/f)+"%":"")},setContent:function(){var c=this.tip(),f=this.getTitle();c.find(".tooltip-inner")[this.options.html?"html":"text"](f);c.removeClass("fade in top bottom left right")},hide:function(){function c(){var c= +setTimeout(function(){f.off(g.support.transition.end).detach()},500);f.one(g.support.transition.end,function(){clearTimeout(c);f.detach()})}var f=this.tip(),h=g.Event("hide");this.$element.trigger(h);if(!h.isDefaultPrevented())return f.removeClass("in"),g.support.transition&&this.$tip.hasClass("fade")?c():f.detach(),this.$element.trigger("hidden"),this},fixTitle:function(){var c=this.$element;(c.attr("title")||"string"!=typeof c.attr("data-original-title"))&&c.attr("data-original-title",c.attr("title")|| +"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var c=this.$element[0];return g.extend({},"function"==typeof c.getBoundingClientRect?c.getBoundingClientRect():{width:c.offsetWidth,height:c.offsetHeight},this.$element.offset())},getTitle:function(){var c=this.$element,f=this.options;return c.attr("data-original-title")||("function"==typeof f.title?f.title.call(c[0]):f.title)},tip:function(){return this.$tip=this.$tip||g(this.options.template)},arrow:function(){return this.$arrow= +this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.options=this.$element=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(c){c=c?g(c.currentTarget)[this.type](this._options).data(this.type):this;c.tip().hasClass("in")?c.hide():c.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var x=g.fn.tooltip; +g.fn.tooltip=function(c){return this.each(function(){var f=g(this),h=f.data("tooltip"),m="object"==typeof c&&c;h||f.data("tooltip",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.tooltip.Constructor=p;g.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'\x3cdiv class\x3d"tooltip"\x3e\x3cdiv class\x3d"tooltip-arrow"\x3e\x3c/div\x3e\x3cdiv class\x3d"tooltip-inner"\x3e\x3c/div\x3e\x3c/div\x3e',trigger:"hover focus",title:"",delay:0,html:!1,container:!1};g.fn.tooltip.noConflict= +function(){g.fn.tooltip=x;return this}}(window.jQuery); +!function(g){var p=function(c,f){this.init("popover",c,f)};p.prototype=g.extend({},g.fn.tooltip.Constructor.prototype,{constructor:p,setContent:function(){var c=this.tip(),f=this.getTitle(),g=this.getContent();c.find(".popover-title")[this.options.html?"html":"text"](f);c.find(".popover-content")[this.options.html?"html":"text"](g);c.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var c=this.$element,f=this.options; +return("function"==typeof f.content?f.content.call(c[0]):f.content)||c.attr("data-content")},tip:function(){this.$tip||(this.$tip=g(this.options.template));return this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var x=g.fn.popover;g.fn.popover=function(c){return this.each(function(){var f=g(this),h=f.data("popover"),m="object"==typeof c&&c;h||f.data("popover",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.popover.Constructor=p;g.fn.popover.defaults= +g.extend({},g.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'\x3cdiv class\x3d"popover"\x3e\x3cdiv class\x3d"arrow"\x3e\x3c/div\x3e\x3ch3 class\x3d"popover-title"\x3e\x3c/h3\x3e\x3cdiv class\x3d"popover-content"\x3e\x3c/div\x3e\x3c/div\x3e'});g.fn.popover.noConflict=function(){g.fn.popover=x;return this}}(window.jQuery); +!function(g){function p(c,f){var h=g.proxy(this.process,this),m=g(c).is("body")?g(window):g(c),n;this.options=g.extend({},g.fn.scrollspy.defaults,f);this.$scrollElement=m.on("scroll.scroll-spy.data-api",h);this.selector=(this.options.target||(n=g(c).attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li \x3e a";this.$body=g("body");this.refresh();this.process()}p.prototype={constructor:p,refresh:function(){var c=this;this.offsets=g([]);this.targets=g([]);this.$body.find(this.selector).map(function(){var f= +g(this),f=f.data("target")||f.attr("href"),h=/^#\w/.test(f)&&g(f);return h&&h.length&&[[h.position().top+(!g.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),f]]||null}).sort(function(c,g){return c[0]-g[0]}).each(function(){c.offsets.push(this[0]);c.targets.push(this[1])})},process:function(){var c=this.$scrollElement.scrollTop()+this.options.offset,f=(this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight)-this.$scrollElement.height(),g=this.offsets,m=this.targets,n=this.activeTarget, +p;if(c>=f)return n!=(p=m.last()[0])&&this.activate(p);for(p=g.length;p--;)n!=m[p]&&c>=g[p]&&(!g[p+1]||c<=g[p+1])&&this.activate(m[p])},activate:function(c){this.activeTarget=c;g(this.selector).parent(".active").removeClass("active");c=g(this.selector+'[data-target\x3d"'+c+'"],'+this.selector+'[href\x3d"'+c+'"]').parent("li").addClass("active");c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active"));c.trigger("activate")}};var x=g.fn.scrollspy;g.fn.scrollspy=function(c){return this.each(function(){var f= +g(this),h=f.data("scrollspy"),m="object"==typeof c&&c;h||f.data("scrollspy",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.scrollspy.Constructor=p;g.fn.scrollspy.defaults={offset:10};g.fn.scrollspy.noConflict=function(){g.fn.scrollspy=x;return this};g(window).on("load",function(){g('[data-spy\x3d"scroll"]').each(function(){var c=g(this);c.scrollspy(c.data())})})}(window.jQuery); +!function(g){var p=function(c){this.element=g(c)};p.prototype={constructor:p,show:function(){var c=this.element,f=c.closest("ul:not(.dropdown-menu)"),h=c.attr("data-target"),m,n;h||(h=(h=c.attr("href"))&&h.replace(/.*(?=#[^\s]*$)/,""));c.parent("li").hasClass("active")||(m=f.find(".active:last a")[0],n=g.Event("show",{relatedTarget:m}),c.trigger(n),n.isDefaultPrevented()||(h=g(h),this.activate(c.parent("li"),f),this.activate(h,h.parent(),function(){c.trigger({type:"shown",relatedTarget:m})})))},activate:function(c, +f,h){function m(){n.removeClass("active").find("\x3e .dropdown-menu \x3e .active").removeClass("active");c.addClass("active");p?(c[0].offsetWidth,c.addClass("in")):c.removeClass("fade");c.parent(".dropdown-menu")&&c.closest("li.dropdown").addClass("active");h&&h()}var n=f.find("\x3e .active"),p=h&&g.support.transition&&n.hasClass("fade");p?n.one(g.support.transition.end,m):m();n.removeClass("in")}};var x=g.fn.tab;g.fn.tab=function(c){return this.each(function(){var f=g(this),h=f.data("tab");h||f.data("tab", +h=new p(this));if("string"==typeof c)h[c]()})};g.fn.tab.Constructor=p;g.fn.tab.noConflict=function(){g.fn.tab=x;return this};g(document).on("click.tab.data-api",'[data-toggle\x3d"tab"], [data-toggle\x3d"pill"]',function(c){c.preventDefault();g(this).tab("show")})}(window.jQuery); +!function(g){var p=function(c,f){this.$element=g(c);this.options=g.extend({},g.fn.typeahead.defaults,f);this.matcher=this.options.matcher||this.matcher;this.sorter=this.options.sorter||this.sorter;this.highlighter=this.options.highlighter||this.highlighter;this.updater=this.options.updater||this.updater;this.source=this.options.source;this.$menu=g(this.options.menu);this.shown=!1;this.listen()};p.prototype={constructor:p,select:function(){var c=this.$menu.find(".active").attr("data-value");this.$element.val(this.updater(c)).change(); +return this.hide()},updater:function(c){return c},show:function(){var c=g.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});this.$menu.insertAfter(this.$element).css({top:c.top+c.height,left:c.left}).show();this.shown=!0;return this},hide:function(){this.$menu.hide();this.shown=!1;return this},lookup:function(c){this.query=this.$element.val();return!this.query||this.query.length=c-n?"bottom":null!=p&&f<=p?"top":!1;this.affixed!==c&&(this.affixed=c,this.unpin="bottom"==c?h.top-f:null,this.$element.removeClass("affix affix-top affix-bottom").addClass("affix"+(c?"-"+c:"")))}};var x=g.fn.affix;g.fn.affix=function(c){return this.each(function(){var f=g(this),h=f.data("affix"),m="object"==typeof c&&c;h||f.data("affix", +h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.affix.Constructor=p;g.fn.affix.defaults={offset:0};g.fn.affix.noConflict=function(){g.fn.affix=x;return this};g(window).on("load",function(){g('[data-spy\x3d"affix"]').each(function(){var c=g(this),f=c.data();f.offset=f.offset||{};f.offsetBottom&&(f.offset.bottom=f.offsetBottom);f.offsetTop&&(f.offset.top=f.offsetTop);c.affix(f)})})}(window.jQuery);var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; +(function(){function g(c){function f(c){var f=c.charCodeAt(0);if(92!==f)return f;var g=c.charAt(1);return(f=H[g])?f:"0"<=g&&"7">=g?parseInt(c.substring(1),8):"u"===g||"x"===g?parseInt(c.substring(2),16):c.charCodeAt(1)}function g(c){if(32>c)return(16>c?"\\x0":"\\x")+c.toString(16);c=String.fromCharCode(c);if("\\"===c||"-"===c||"["===c||"]"===c)c="\\"+c;return c}function h(c){var h=c.substring(1,c.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g);c= +[];for(var m=[],n="^"===h[0],p=n?1:0,v=h.length;pr||122r||90r||122v[0]&&(v[1]+1>v[0]&&m.push("-"),m.push(g(v[1])));m.push("]");return m.join("")}function m(c){for(var f=c.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),g=f.length,m=[],v=0,A=0;v/, +q])):g.push(["com",/^#[^\n\r]*/,q,"#"]));f.cStyleComments&&(h.push(["com",/^\/\/[^\n\r]*/,q]),h.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));f.regexLiterals&&h.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(m=f.types)&& +h.push(["typ",m]);f=(""+f.keywords).replace(/^ | $/g,"");f.length&&h.push(["kwd",RegExp("^(?:"+f.replace(/[\s,]+/g,"|")+")\\b"),q]);g.push(["pln",/^\s+/,q," \r\n\t "]);h.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return c(g,h)}function h(c,f){function g(c){switch(c.nodeType){case 1:if(m.test(c.className))break; +if("BR"===c.nodeName)h(c),c.parentNode&&c.parentNode.removeChild(c);else for(c=c.firstChild;c;c=c.nextSibling)g(c);break;case 3:case 4:if(A){var f=c.nodeValue,r=f.match(p);if(r){var v=f.substring(0,r.index);c.nodeValue=v;(f=f.substring(r.index+r[0].length))&&c.parentNode.insertBefore(n.createTextNode(f),c.nextSibling);h(c);v||c.parentNode.removeChild(c)}}}}function h(c){function f(c,g){g=g?c.cloneNode(!1):c;var h=c.parentNode;if(h){h=f(h,1);c=c.nextSibling;h.appendChild(g);for(var m=c;m;m=c)c=m.nextSibling, +h.appendChild(m)}return g}for(;!c.nextSibling;)if(c=c.parentNode,!c)return;c=f(c.nextSibling,0);for(var g;(g=c.parentNode)&&1===g.nodeType;)c=g;x.push(c)}var m=/(?:^|\s)nocode(?:\s|$)/,p=/\r\n?|\n/,n=c.ownerDocument,r;c.currentStyle?r=c.currentStyle.whiteSpace:window.getComputedStyle&&(r=n.defaultView.getComputedStyle(c,q).getPropertyValue("white-space"));var A=r&&"pre"===r.substring(0,3);for(r=n.createElement("LI");c.firstChild;)r.appendChild(c.firstChild);for(var x=[r],E=0;E=G&&(h+=2);g>=C&&(c+=2)}}catch(Z){"console"in window&&console.log(Z&&Z.stack?Z.stack:Z)}}var r=["break,continue,do,else,for,if,return,while"],E=[[r,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], +"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],fa=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],aa=[E,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], +V=[aa,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],ha=[r,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], +Aa=[r,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],r=[r,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],N=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,Ta=/\S/,Ia=f({keywords:[fa,V,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ +ha,Aa,r],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),ia={};m(Ia,["default-code"]);m(c([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), +"default-markup htm html mxml xhtml xml xsl".split(" "));m(c([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", +/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);m(c([],[["atv",/^[\S\s]+/]]),["uq.val"]);m(f({keywords:fa,hashComments:!0,cStyleComments:!0,types:N}),"c cc cpp cxx cyc m".split(" "));m(f({keywords:"null,true,false"}),["json"]);m(f({keywords:V,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:N}),["cs"]);m(f({keywords:aa,cStyleComments:!0}),["java"]);m(f({keywords:r,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);m(f({keywords:ha,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), +["cv","py"]);m(f({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);m(f({keywords:Aa,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);m(f({keywords:E,cStyleComments:!0,regexLiterals:!0}),["js"]);m(f({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", +hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);m(c([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(c,f,g){var m=document.createElement("PRE");m.innerHTML=c;g&&h(m,g);W({g:f,i:g,h:m});return m.innerHTML};window.prettyPrint=function(c){function f(){for(var g=window.PR_SHOULD_USE_CONTINUATION?x.now()+250:Infinity;A\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()};this.hasAnchorJSLink=function(c){var f=c.firstChild&&-1<(" "+c.firstChild.className+" ").indexOf(" anchorjs-link ");c=c.lastChild&&-1<(" "+c.lastChild.className+" ").indexOf(" anchorjs-link ");return f||c||!1}}}); \ No newline at end of file diff --git a/en/licenses.html b/en/licenses.html new file mode 100644 index 0000000..05a2f91 --- /dev/null +++ b/en/licenses.html @@ -0,0 +1,281 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Licenses + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    Typically the licenses listed for the project are that of the project itself, and not of dependencies.

    +

    Project Licenses

    +

    The Apache Software License, Version 2.0

    +
    +
    +                                 Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "[]"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright [yyyy] [name of copyright owner]
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
    +
    +
    +
    + + + + diff --git a/en/mailing-lists.html b/en/mailing-lists.html new file mode 100644 index 0000000..b1d9537 --- /dev/null +++ b/en/mailing-lists.html @@ -0,0 +1,100 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Mailing Lists + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Mailing Lists

    +

    These are the mailing lists that have been established for this project. For each list, there is a subscribe, unsubscribe, and an archive link.

    + + + + + + + + + + + + + + + + + + + + + + + + +
    NameSubscribeUnsubscribePostArchive
    mybatis-devSubscribeUnsubscribePostgroups.google.com
    mybatis-userSubscribeUnsubscribePostgroups.google.com
    mybatis-commitsSubscribeUnsubscribePostgroups.google.com
    +
    +
    +
    +
    + + + + diff --git a/en/modules.html b/en/modules.html new file mode 100644 index 0000000..ed38cda --- /dev/null +++ b/en/modules.html @@ -0,0 +1,90 @@ + + + + + + + + + + mybatis-spring-native – Project Modules + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Modules

    +

    This project has declared the following modules:

    + + + + + + + + + + + + + + + +
    NameDescription
    mybatis-spring-native-coreMyBatis integration with Spring Native feature for core modules
    mybatis-spring-native-extensionsMyBatis integration with Spring Native feature for extension modules(scripting, cache, and more)
    mybatis-spring-native-samplesMyBatis integration with Spring Native feature
    mybatis-spring-native-docsDocuments for MyBatis integration with Spring Native feature
    +
    +
    +
    +
    + + + + diff --git a/en/parent-updates-report.html b/en/parent-updates-report.html new file mode 100644 index 0000000..54ec3b4 --- /dev/null +++ b/en/parent-updates-report.html @@ -0,0 +1,137 @@ + + + + + + + + + + mybatis-spring-native – Parent Updates Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's parent artifacts

    +

    Parent artifact

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    org.mybatismybatis-parent42pom
    StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    +

    Parent Update

    +

    +

    org.mybatis:mybatis-parent

    + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis
    Artifact Idmybatis-parent
    Current Version42
    Scope
    Classifier
    Typepom
    +
    +
    +
    +
    + + + + diff --git a/en/plugin-management.html b/en/plugin-management.html new file mode 100644 index 0000000..4d719a5 --- /dev/null +++ b/en/plugin-management.html @@ -0,0 +1,235 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Plugin Management + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Plugin Management

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersion
    biz.aQute.bndbnd-maven-plugin7.0.0
    com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
    com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
    com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
    com.github.spotbugsspotbugs-maven-plugin4.8.3.0
    com.mycilalicense-maven-plugin4.3
    io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
    net.revelc.codeimpsort-maven-plugin1.9.0
    net.revelc.code.formatterformatter-maven-plugin2.23.0
    org.apache.maven.pluginsmaven-antrun-plugin3.1.0
    org.apache.maven.pluginsmaven-assembly-plugin3.6.0
    org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
    org.apache.maven.pluginsmaven-clean-plugin3.3.2
    org.apache.maven.pluginsmaven-compiler-plugin3.12.1
    org.apache.maven.pluginsmaven-dependency-plugin3.6.1
    org.apache.maven.pluginsmaven-deploy-plugin3.1.1
    org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
    org.apache.maven.pluginsmaven-gpg-plugin3.1.0
    org.apache.maven.pluginsmaven-install-plugin3.1.1
    org.apache.maven.pluginsmaven-jar-plugin3.3.0
    org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
    org.apache.maven.pluginsmaven-jxr-plugin3.3.2
    org.apache.maven.pluginsmaven-pdf-plugin1.6.1
    org.apache.maven.pluginsmaven-pmd-plugin3.21.2
    org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
    org.apache.maven.pluginsmaven-release-plugin3.0.1
    org.apache.maven.pluginsmaven-resources-plugin3.3.1
    org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
    org.apache.maven.pluginsmaven-shade-plugin3.5.1
    org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
    org.apache.maven.pluginsmaven-source-plugin3.3.0
    org.apache.maven.pluginsmaven-surefire-plugin3.2.5
    org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
    org.codehaus.mojoclirr-maven-plugin2.8
    org.codehaus.mojotaglist-maven-plugin3.0.0
    org.codehaus.mojoversions-maven-plugin2.16.2
    org.gaulmodernizer-maven-plugin2.7.0
    org.jacocojacoco-maven-plugin0.8.11
    org.openrewrite.mavenrewrite-maven-plugin5.21.0
    +
    +
    +
    +
    + + + + diff --git a/en/plugin-updates-aggregate-report.html b/en/plugin-updates-aggregate-report.html new file mode 100644 index 0000000..da3a410 --- /dev/null +++ b/en/plugin-updates-aggregate-report.html @@ -0,0 +1,1619 @@ + + + + + + + + + + mybatis-spring-native – Plugin Updates Aggregate Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's various plugins.

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    # of plugins using the latest version available39
    # of plugins where the next version available is smaller than an incremental version update1
    # of plugins where the next version available is an incremental version update0
    # of plugins where the next version available is a minor version update1
    # of plugins where the next version available is a major version update1
    # of plugins where a dependencies section containes a dependency with an updated version0
    +

    Plugin Management

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    biz.aQute.bndbnd-maven-plugin7.0.0
    com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
    com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
    com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
    com.github.spotbugsspotbugs-maven-plugin4.8.3.04.8.3.1
    com.mycilalicense-maven-plugin4.3
    io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
    net.revelc.codeimpsort-maven-plugin1.9.0
    net.revelc.code.formatterformatter-maven-plugin2.23.0
    org.apache.maven.pluginsmaven-antrun-plugin3.1.0
    org.apache.maven.pluginsmaven-assembly-plugin3.6.0
    org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
    org.apache.maven.pluginsmaven-clean-plugin3.3.2
    org.apache.maven.pluginsmaven-compiler-plugin3.12.1
    org.apache.maven.pluginsmaven-dependency-plugin3.6.1
    org.apache.maven.pluginsmaven-deploy-plugin3.1.1
    org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
    org.apache.maven.pluginsmaven-gpg-plugin3.1.0
    org.apache.maven.pluginsmaven-install-plugin3.1.1
    org.apache.maven.pluginsmaven-jar-plugin3.3.0
    org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
    org.apache.maven.pluginsmaven-jxr-plugin3.3.2
    org.apache.maven.pluginsmaven-pdf-plugin1.6.1
    org.apache.maven.pluginsmaven-pmd-plugin3.21.2
    org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
    org.apache.maven.pluginsmaven-release-plugin3.0.1
    org.apache.maven.pluginsmaven-resources-plugin3.3.1
    org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
    org.apache.maven.pluginsmaven-shade-plugin3.5.1
    org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
    org.apache.maven.pluginsmaven-source-plugin3.3.0
    org.apache.maven.pluginsmaven-surefire-plugin3.2.5
    org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
    org.codehaus.mojoclirr-maven-plugin2.8
    org.codehaus.mojotaglist-maven-plugin3.0.0
    org.codehaus.mojoversions-maven-plugin2.16.2
    org.gaulmodernizer-maven-plugin2.7.0
    org.graalvm.buildtoolsnative-maven-plugin0.10.0
    org.jacocojacoco-maven-plugin0.8.11
    org.openrewrite.mavenrewrite-maven-plugin5.21.05.22.0
    StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Plugins

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.springframework.bootspring-boot-maven-plugin2.7.183.3.0-M1
    org.springframework.experimentalspring-aot-maven-plugin0.12.2
    StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Plugin Updates

    +

    +

    Plugin biz.aQute.bnd:bnd-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idbiz.aQute.bnd
    Artifact Idbnd-maven-plugin
    Current Version7.0.0
    +

    Dependencies of biz.aQute.bnd:bnd-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    biz.aQute.bndbiz.aQute.bndlib7.0.0jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency biz.aQute.bnd:biz.aQute.bndlib

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idbiz.aQute.bnd
    Artifact Idbiz.aQute.bndlib
    Current Version7.0.0
    Classifier
    Typejar
    +

    Plugin com.github.ekryd.sortpom:sortpom-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.ekryd.sortpom
    Artifact Idsortpom-maven-plugin
    Current Version3.3.0
    +

    Plugin com.github.hazendaz.maven:coveralls-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.hazendaz.maven
    Artifact Idcoveralls-maven-plugin
    Current Version4.5.0-M3
    +

    Plugin com.github.hazendaz.maven:whitespace-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.hazendaz.maven
    Artifact Idwhitespace-maven-plugin
    Current Version1.3.1
    +

    Plugin com.github.spotbugs:spotbugs-maven-plugin

    + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idcom.github.spotbugs
    Artifact Idspotbugs-maven-plugin
    Current Version4.8.3.0
    Newer versions4.8.3.1 Latest Subincremental
    +

    Plugin com.mycila:license-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.mycila
    Artifact Idlicense-maven-plugin
    Current Version4.3
    +

    Dependencies of com.mycila:license-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    com.mycilalicense-maven-plugin-git4.3jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency com.mycila:license-maven-plugin-git

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.mycila
    Artifact Idlicense-maven-plugin-git
    Current Version4.3
    Classifier
    Typejar
    +

    Plugin io.github.git-commit-id:git-commit-id-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.github.git-commit-id
    Artifact Idgit-commit-id-maven-plugin
    Current Version7.0.0
    +

    Plugin net.revelc.code:impsort-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.revelc.code
    Artifact Idimpsort-maven-plugin
    Current Version1.9.0
    +

    Plugin net.revelc.code.formatter:formatter-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.revelc.code.formatter
    Artifact Idformatter-maven-plugin
    Current Version2.23.0
    +

    Dependencies of net.revelc.code.formatter:formatter-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    com.github.hazendazbuild-tools1.3.1jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency com.github.hazendaz:build-tools

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.hazendaz
    Artifact Idbuild-tools
    Current Version1.3.1
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-antrun-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-antrun-plugin
    Current Version3.1.0
    +

    Plugin org.apache.maven.plugins:maven-assembly-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-assembly-plugin
    Current Version3.6.0
    +

    Dependencies of org.apache.maven.plugins:maven-assembly-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.mybatisbase-bundle-descriptor11jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.mybatis:base-bundle-descriptor

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis
    Artifact Idbase-bundle-descriptor
    Current Version11
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-checkstyle-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-checkstyle-plugin
    Current Version3.3.1
    +

    Plugin org.apache.maven.plugins:maven-clean-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-clean-plugin
    Current Version3.3.2
    +

    Plugin org.apache.maven.plugins:maven-compiler-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-compiler-plugin
    Current Version3.12.1
    +

    Plugin org.apache.maven.plugins:maven-dependency-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-dependency-plugin
    Current Version3.6.1
    +

    Plugin org.apache.maven.plugins:maven-deploy-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-deploy-plugin
    Current Version3.1.1
    +

    Plugin org.apache.maven.plugins:maven-enforcer-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-enforcer-plugin
    Current Version3.4.1
    +

    Dependencies of org.apache.maven.plugins:maven-enforcer-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.codehaus.mojoextra-enforcer-rules1.7.0jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.codehaus.mojo:extra-enforcer-rules

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idextra-enforcer-rules
    Current Version1.7.0
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-gpg-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-gpg-plugin
    Current Version3.1.0
    +

    Plugin org.apache.maven.plugins:maven-install-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-install-plugin
    Current Version3.1.1
    +

    Plugin org.apache.maven.plugins:maven-jar-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-jar-plugin
    Current Version3.3.0
    +

    Plugin org.apache.maven.plugins:maven-javadoc-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-javadoc-plugin
    Current Version3.6.3
    +

    Plugin org.apache.maven.plugins:maven-jxr-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-jxr-plugin
    Current Version3.3.2
    +

    Plugin org.apache.maven.plugins:maven-pdf-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-pdf-plugin
    Current Version1.6.1
    +

    Plugin org.apache.maven.plugins:maven-pmd-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-pmd-plugin
    Current Version3.21.2
    +

    Plugin org.apache.maven.plugins:maven-project-info-reports-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-project-info-reports-plugin
    Current Version3.5.0
    +

    Plugin org.apache.maven.plugins:maven-release-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-release-plugin
    Current Version3.0.1
    +

    Plugin org.apache.maven.plugins:maven-resources-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-resources-plugin
    Current Version3.3.1
    +

    Plugin org.apache.maven.plugins:maven-scm-publish-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-scm-publish-plugin
    Current Version3.2.1
    +

    Plugin org.apache.maven.plugins:maven-shade-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-shade-plugin
    Current Version3.5.1
    +

    Plugin org.apache.maven.plugins:maven-site-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-site-plugin
    Current Version4.0.0-M13
    +

    Dependencies of org.apache.maven.plugins:maven-site-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.apache.maven.skinsmaven-fluido-skin2.0.0-M8jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.apache.maven.skins:maven-fluido-skin

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.skins
    Artifact Idmaven-fluido-skin
    Current Version2.0.0-M8
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-source-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-source-plugin
    Current Version3.3.0
    +

    Plugin org.apache.maven.plugins:maven-surefire-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-surefire-plugin
    Current Version3.2.5
    +

    Plugin org.apache.maven.plugins:maven-surefire-report-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-surefire-report-plugin
    Current Version3.2.5
    +

    Plugin org.codehaus.mojo:clirr-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idclirr-maven-plugin
    Current Version2.8
    +

    Dependencies of org.codehaus.mojo:clirr-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.apache.bcelbcel6.8.1jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.apache.bcel:bcel

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.bcel
    Artifact Idbcel
    Current Version6.8.1
    Classifier
    Typejar
    +

    Plugin org.codehaus.mojo:taglist-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idtaglist-maven-plugin
    Current Version3.0.0
    +

    Plugin org.codehaus.mojo:versions-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idversions-maven-plugin
    Current Version2.16.2
    +

    Plugin org.gaul:modernizer-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.gaul
    Artifact Idmodernizer-maven-plugin
    Current Version2.7.0
    +

    Dependencies of org.gaul:modernizer-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.ow2.asmasm9.6jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.ow2.asm:asm

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ow2.asm
    Artifact Idasm
    Current Version9.6
    Classifier
    Typejar
    +

    Plugin org.graalvm.buildtools:native-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.graalvm.buildtools
    Artifact Idnative-maven-plugin
    Current Version0.10.0
    +

    Plugin org.jacoco:jacoco-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.jacoco
    Artifact Idjacoco-maven-plugin
    Current Version0.8.11
    +

    Plugin org.openrewrite.maven:rewrite-maven-plugin

    + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.openrewrite.maven
    Artifact Idrewrite-maven-plugin
    Current Version5.21.0
    Newer versions5.22.0 Latest Minor
    +

    Plugin org.springframework.boot:spring-boot-maven-plugin

    + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Group Idorg.springframework.boot
    Artifact Idspring-boot-maven-plugin
    Current Version2.7.18
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    +

    Plugin org.springframework.experimental:spring-aot-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.springframework.experimental
    Artifact Idspring-aot-maven-plugin
    Current Version0.12.2
    +
    +
    +
    +
    + + + + diff --git a/en/plugin-updates-report.html b/en/plugin-updates-report.html new file mode 100644 index 0000000..7917794 --- /dev/null +++ b/en/plugin-updates-report.html @@ -0,0 +1,1525 @@ + + + + + + + + + + mybatis-spring-native-docs – Plugin Updates Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's various plugins.

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    # of plugins using the latest version available37
    # of plugins where the next version available is smaller than an incremental version update1
    # of plugins where the next version available is an incremental version update0
    # of plugins where the next version available is a minor version update1
    # of plugins where the next version available is a major version update0
    # of plugins where a dependencies section containes a dependency with an updated version0
    +

    Plugin Management

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    biz.aQute.bndbnd-maven-plugin7.0.0
    com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
    com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
    com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
    com.github.spotbugsspotbugs-maven-plugin4.8.3.04.8.3.1
    com.mycilalicense-maven-plugin4.3
    io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
    net.revelc.codeimpsort-maven-plugin1.9.0
    net.revelc.code.formatterformatter-maven-plugin2.23.0
    org.apache.maven.pluginsmaven-antrun-plugin3.1.0
    org.apache.maven.pluginsmaven-assembly-plugin3.6.0
    org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
    org.apache.maven.pluginsmaven-clean-plugin3.3.2
    org.apache.maven.pluginsmaven-compiler-plugin3.12.1
    org.apache.maven.pluginsmaven-dependency-plugin3.6.1
    org.apache.maven.pluginsmaven-deploy-plugin3.1.1
    org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
    org.apache.maven.pluginsmaven-gpg-plugin3.1.0
    org.apache.maven.pluginsmaven-install-plugin3.1.1
    org.apache.maven.pluginsmaven-jar-plugin3.3.0
    org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
    org.apache.maven.pluginsmaven-jxr-plugin3.3.2
    org.apache.maven.pluginsmaven-pdf-plugin1.6.1
    org.apache.maven.pluginsmaven-pmd-plugin3.21.2
    org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
    org.apache.maven.pluginsmaven-release-plugin3.0.1
    org.apache.maven.pluginsmaven-resources-plugin3.3.1
    org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
    org.apache.maven.pluginsmaven-shade-plugin3.5.1
    org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
    org.apache.maven.pluginsmaven-source-plugin3.3.0
    org.apache.maven.pluginsmaven-surefire-plugin3.2.5
    org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
    org.codehaus.mojoclirr-maven-plugin2.8
    org.codehaus.mojotaglist-maven-plugin3.0.0
    org.codehaus.mojoversions-maven-plugin2.16.2
    org.gaulmodernizer-maven-plugin2.7.0
    org.jacocojacoco-maven-plugin0.8.11
    org.openrewrite.mavenrewrite-maven-plugin5.21.05.22.0
    StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Plugins

    +

    This project does not declare any plugins in a build/plugins section.

    +

    Plugin Updates

    +

    +

    Plugin biz.aQute.bnd:bnd-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idbiz.aQute.bnd
    Artifact Idbnd-maven-plugin
    Current Version7.0.0
    +

    Dependencies of biz.aQute.bnd:bnd-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    biz.aQute.bndbiz.aQute.bndlib7.0.0jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency biz.aQute.bnd:biz.aQute.bndlib

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idbiz.aQute.bnd
    Artifact Idbiz.aQute.bndlib
    Current Version7.0.0
    Classifier
    Typejar
    +

    Plugin com.github.ekryd.sortpom:sortpom-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.ekryd.sortpom
    Artifact Idsortpom-maven-plugin
    Current Version3.3.0
    +

    Plugin com.github.hazendaz.maven:coveralls-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.hazendaz.maven
    Artifact Idcoveralls-maven-plugin
    Current Version4.5.0-M3
    +

    Plugin com.github.hazendaz.maven:whitespace-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.hazendaz.maven
    Artifact Idwhitespace-maven-plugin
    Current Version1.3.1
    +

    Plugin com.github.spotbugs:spotbugs-maven-plugin

    + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Group Idcom.github.spotbugs
    Artifact Idspotbugs-maven-plugin
    Current Version4.8.3.0
    Newer versions4.8.3.1 Latest Subincremental
    +

    Plugin com.mycila:license-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.mycila
    Artifact Idlicense-maven-plugin
    Current Version4.3
    +

    Dependencies of com.mycila:license-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    com.mycilalicense-maven-plugin-git4.3jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency com.mycila:license-maven-plugin-git

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.mycila
    Artifact Idlicense-maven-plugin-git
    Current Version4.3
    Classifier
    Typejar
    +

    Plugin io.github.git-commit-id:git-commit-id-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idio.github.git-commit-id
    Artifact Idgit-commit-id-maven-plugin
    Current Version7.0.0
    +

    Plugin net.revelc.code:impsort-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.revelc.code
    Artifact Idimpsort-maven-plugin
    Current Version1.9.0
    +

    Plugin net.revelc.code.formatter:formatter-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idnet.revelc.code.formatter
    Artifact Idformatter-maven-plugin
    Current Version2.23.0
    +

    Dependencies of net.revelc.code.formatter:formatter-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    com.github.hazendazbuild-tools1.3.1jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency com.github.hazendaz:build-tools

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idcom.github.hazendaz
    Artifact Idbuild-tools
    Current Version1.3.1
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-antrun-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-antrun-plugin
    Current Version3.1.0
    +

    Plugin org.apache.maven.plugins:maven-assembly-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-assembly-plugin
    Current Version3.6.0
    +

    Dependencies of org.apache.maven.plugins:maven-assembly-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.mybatisbase-bundle-descriptor11jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.mybatis:base-bundle-descriptor

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.mybatis
    Artifact Idbase-bundle-descriptor
    Current Version11
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-checkstyle-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-checkstyle-plugin
    Current Version3.3.1
    +

    Plugin org.apache.maven.plugins:maven-clean-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-clean-plugin
    Current Version3.3.2
    +

    Plugin org.apache.maven.plugins:maven-compiler-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-compiler-plugin
    Current Version3.12.1
    +

    Plugin org.apache.maven.plugins:maven-dependency-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-dependency-plugin
    Current Version3.6.1
    +

    Plugin org.apache.maven.plugins:maven-deploy-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-deploy-plugin
    Current Version3.1.1
    +

    Plugin org.apache.maven.plugins:maven-enforcer-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-enforcer-plugin
    Current Version3.4.1
    +

    Dependencies of org.apache.maven.plugins:maven-enforcer-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.codehaus.mojoextra-enforcer-rules1.7.0jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.codehaus.mojo:extra-enforcer-rules

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idextra-enforcer-rules
    Current Version1.7.0
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-gpg-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-gpg-plugin
    Current Version3.1.0
    +

    Plugin org.apache.maven.plugins:maven-install-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-install-plugin
    Current Version3.1.1
    +

    Plugin org.apache.maven.plugins:maven-jar-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-jar-plugin
    Current Version3.3.0
    +

    Plugin org.apache.maven.plugins:maven-javadoc-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-javadoc-plugin
    Current Version3.6.3
    +

    Plugin org.apache.maven.plugins:maven-jxr-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-jxr-plugin
    Current Version3.3.2
    +

    Plugin org.apache.maven.plugins:maven-pdf-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-pdf-plugin
    Current Version1.6.1
    +

    Plugin org.apache.maven.plugins:maven-pmd-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-pmd-plugin
    Current Version3.21.2
    +

    Plugin org.apache.maven.plugins:maven-project-info-reports-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-project-info-reports-plugin
    Current Version3.5.0
    +

    Plugin org.apache.maven.plugins:maven-release-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-release-plugin
    Current Version3.0.1
    +

    Plugin org.apache.maven.plugins:maven-resources-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-resources-plugin
    Current Version3.3.1
    +

    Plugin org.apache.maven.plugins:maven-scm-publish-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-scm-publish-plugin
    Current Version3.2.1
    +

    Plugin org.apache.maven.plugins:maven-shade-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-shade-plugin
    Current Version3.5.1
    +

    Plugin org.apache.maven.plugins:maven-site-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-site-plugin
    Current Version4.0.0-M13
    +

    Dependencies of org.apache.maven.plugins:maven-site-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.apache.maven.skinsmaven-fluido-skin2.0.0-M8jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.apache.maven.skins:maven-fluido-skin

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.skins
    Artifact Idmaven-fluido-skin
    Current Version2.0.0-M8
    Classifier
    Typejar
    +

    Plugin org.apache.maven.plugins:maven-source-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-source-plugin
    Current Version3.3.0
    +

    Plugin org.apache.maven.plugins:maven-surefire-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-surefire-plugin
    Current Version3.2.5
    +

    Plugin org.apache.maven.plugins:maven-surefire-report-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.maven.plugins
    Artifact Idmaven-surefire-report-plugin
    Current Version3.2.5
    +

    Plugin org.codehaus.mojo:clirr-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idclirr-maven-plugin
    Current Version2.8
    +

    Dependencies of org.codehaus.mojo:clirr-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.apache.bcelbcel6.8.1jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.apache.bcel:bcel

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.apache.bcel
    Artifact Idbcel
    Current Version6.8.1
    Classifier
    Typejar
    +

    Plugin org.codehaus.mojo:taglist-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idtaglist-maven-plugin
    Current Version3.0.0
    +

    Plugin org.codehaus.mojo:versions-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.codehaus.mojo
    Artifact Idversions-maven-plugin
    Current Version2.16.2
    +

    Plugin org.gaul:modernizer-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.gaul
    Artifact Idmodernizer-maven-plugin
    Current Version2.7.0
    +

    Dependencies of org.gaul:modernizer-maven-plugin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    org.ow2.asmasm9.6jar
    StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
    +

    Dependency org.ow2.asm:asm

    + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.ow2.asm
    Artifact Idasm
    Current Version9.6
    Classifier
    Typejar
    +

    Plugin org.jacoco:jacoco-maven-plugin

    + + + + + + + + + + + + +
    Status No newer versions available.
    Group Idorg.jacoco
    Artifact Idjacoco-maven-plugin
    Current Version0.8.11
    +

    Plugin org.openrewrite.maven:rewrite-maven-plugin

    + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Group Idorg.openrewrite.maven
    Artifact Idrewrite-maven-plugin
    Current Version5.21.0
    Newer versions5.22.0 Latest Minor
    +
    +
    +
    +
    + + + + diff --git a/en/plugins.html b/en/plugins.html new file mode 100644 index 0000000..d07c58e --- /dev/null +++ b/en/plugins.html @@ -0,0 +1,193 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Plugins + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Build Plugins

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersion
    biz.aQute.bndbnd-maven-plugin7.0.0
    com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
    com.mycilalicense-maven-plugin4.3
    io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
    org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
    org.apache.maven.pluginsmaven-clean-plugin3.3.2
    org.apache.maven.pluginsmaven-compiler-plugin3.12.1
    org.apache.maven.pluginsmaven-deploy-plugin3.1.1
    org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
    org.apache.maven.pluginsmaven-install-plugin3.1.1
    org.apache.maven.pluginsmaven-jar-plugin3.3.0
    org.apache.maven.pluginsmaven-resources-plugin3.3.1
    org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
    org.apache.maven.pluginsmaven-surefire-plugin3.2.5
    org.gaulmodernizer-maven-plugin2.7.0
    org.jacocojacoco-maven-plugin0.8.11
    +

    Project Report Plugins

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    GroupIdArtifactIdVersion
    com.github.spotbugsspotbugs-maven-plugin4.8.3.0
    org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
    org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
    org.apache.maven.pluginsmaven-jxr-plugin3.3.2
    org.apache.maven.pluginsmaven-pmd-plugin3.21.2
    org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
    org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
    org.codehaus.mojoclirr-maven-plugin2.8
    org.codehaus.mojotaglist-maven-plugin3.0.0
    org.codehaus.mojoversions-maven-plugin2.16.2
    org.jacocojacoco-maven-plugin0.8.11
    +
    +
    +
    +
    + + + + diff --git a/en/pmd.html b/en/pmd.html new file mode 100644 index 0000000..f383874 --- /dev/null +++ b/en/pmd.html @@ -0,0 +1,76 @@ + + + + + + + + + + mybatis-spring-native-docs – PMD Results + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    PMD Results

    +

    The following document contains the results of PMD 6.55.0.

    +

    PMD found no problems in your source code.

    +
    +
    +
    +
    + + + + diff --git a/en/project-info.html b/en/project-info.html new file mode 100644 index 0000000..f953035 --- /dev/null +++ b/en/project-info.html @@ -0,0 +1,119 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Information + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Information

    +

    This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by Maven on behalf of the project.

    +

    Overview

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    DocumentDescription
    CI ManagementThis document lists the continuous integration management system of this project for building and testing code on a frequent, regular basis.
    Dependency InformationThis document describes how to include this project as a dependency using various dependency management tools.
    Dependency ManagementThis document lists the dependencies that are defined through dependencyManagement.
    Distribution ManagementThis document provides informations on the distribution management of this project.
    AboutDocuments for MyBatis integration with Spring Native feature
    Issue ManagementThis document provides information on the issue management system used in this project.
    LicensesThis document lists the project license(s).
    Mailing ListsThis document provides subscription and archive information for this project's mailing lists.
    Plugin ManagementThis document lists the plugins that are defined through pluginManagement.
    PluginsThis document lists the build plugins and the report plugins used by this project.
    Source Code ManagementThis document lists ways to access the online source repository.
    SummaryThis document lists other related information of this project
    TeamThis document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another.
    +
    +
    +
    +
    + + + + diff --git a/en/project-reports.html b/en/project-reports.html new file mode 100644 index 0000000..f5472ae --- /dev/null +++ b/en/project-reports.html @@ -0,0 +1,104 @@ + + + + + + + + + + mybatis-spring-native-docs – Generated Reports + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Generated Reports

    +

    This document provides an overview of the various reports that are automatically generated by Maven . Each report is briefly described below.

    +

    Overview

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    DocumentDescription
    SurefireReport on the test results of the project.
    CheckstyleReport on coding style conventions.
    CPDDuplicate code detection.
    PMDVerification of coding rules.
    ClirrReport on binary and source API differences between releases
    Dependency Updates ReportProvides details of the dependencies which have updated versions available.
    Plugin Updates ReportProvides details of the plugins used by this project which have newer versions available.
    Property Updates ReportProvides details of properties which control versions of dependencies and/or plugins, and indicates any newer versions which are available.
    +
    +
    +
    +
    + + + + diff --git a/en/property-updates-aggregate-report.html b/en/property-updates-aggregate-report.html new file mode 100644 index 0000000..50e7bda --- /dev/null +++ b/en/property-updates-aggregate-report.html @@ -0,0 +1,2203 @@ + + + + + + + + + + mybatis-spring-native – Property Updates Aggregate Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's various properties associated with artifacts.

    + + + + + + + + + + + + + + + + + + + + + +
    # of properties using the latest version available51
    # of properties where the next version available is smaller than an incremental version update1
    # of properties where the next version available is an incremental version update0
    # of properties where the next version available is a minor version update1
    # of properties where the next version available is a major version update3
    +

    Summary of properties associated with artifact versions

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    ${antrun.plugin}3.1.0
    ${asm.version}9.6
    ${assembly.plugin}3.6.0
    ${base-bundle.version}11
    ${bnd.plugin}7.0.0
    ${bnd.version}7.0.0
    ${build-tools.version}1.3.1
    ${checkstyle.plugin}3.3.1
    ${checkstyle.version}10.13.0
    ${clean.plugin}3.3.2
    ${clirr.plugin}2.8
    ${compiler.plugin}3.12.1
    ${coveralls.plugin}4.5.0-M3
    ${dependency.plugin}3.6.1
    ${deploy.plugin}3.1.1
    ${enforcer.plugin}3.4.1
    ${extra-enforcer-rules.version}1.7.0
    ${fluido.version}2.0.0-M8
    ${formatter.plugin}2.23.0
    ${git-commit.plugin}7.0.0
    ${gpg.plugin}3.1.0
    ${impsort.plugin}1.9.0
    ${install.plugin}3.1.1
    ${jacoco.plugin}0.8.11
    ${jar.plugin}3.3.0
    ${javadoc.plugin}3.6.3
    ${jxr.plugin}3.3.2
    ${license.plugin}4.3
    ${license.version}4.3
    ${modernizer.plugin}2.7.0
    ${mybatis-dynamic-sql.version}1.5.0
    ${mybatis-freemarker.version}1.2.4
    ${mybatis-spring-boot.version}2.3.23.0.3
    ${mybatis-spring.version}2.1.23.0.3
    ${mybatis-thymeleaf.version}1.0.4
    ${mybatis-velocity.version}2.1.2
    ${mybatis.version}3.5.15
    ${native-buildtools.version}0.10.0
    ${pdf.plugin}1.6.1
    ${pmd.plugin}3.21.2
    ${project-info.plugin}3.5.0
    ${release.plugin}3.0.1
    ${resources.plugin}3.3.1
    ${rewrite.plugin}5.21.05.22.0
    ${scm-publish.plugin}3.2.1
    ${shade.plugin}3.5.1
    ${site.plugin}4.0.0-M13
    ${sortpom.plugin}3.3.0
    ${source.plugin}3.3.0
    ${spotbugs.plugin}4.8.3.04.8.3.1
    ${spring-boot.version}2.7.183.3.0-M1
    ${spring-native.version}0.12.2
    ${surefire.plugin}3.2.5
    ${taglist.plugin}3.0.0
    ${versions.plugin}2.16.2
    ${whitespace.plugin}1.3.1
    StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    +

    Properties associated with artifact versions

    +

    +

    ${antrun.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${antrun.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-antrun-plugin
    Current Version3.1.0
    Allowed version range3.1.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${asm.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${asm.version}
    Associated artifactsorg.ow2.asm:asm
    Current Version9.6
    Allowed version range9.6
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${assembly.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${assembly.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-assembly-plugin
    Current Version3.6.0
    Allowed version range3.6.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${base-bundle.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${base-bundle.version}
    Associated artifactsorg.mybatis:base-bundle-descriptor
    Current Version11
    Allowed version range11
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${bnd.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${bnd.plugin}
    Associated artifactsbiz.aQute.bnd:bnd-maven-plugin
    Current Version7.0.0
    Allowed version range7.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${bnd.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${bnd.version}
    Associated artifactsbiz.aQute.bnd:biz.aQute.bndlib
    Current Version7.0.0
    Allowed version range7.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${build-tools.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${build-tools.version}
    Associated artifactscom.github.hazendaz:build-tools
    Current Version1.3.1
    Allowed version range1.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${checkstyle.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${checkstyle.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-checkstyle-plugin
    Current Version3.3.1
    Allowed version range3.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${checkstyle.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${checkstyle.version}
    Associated artifactscom.puppycrawl.tools:checkstyle
    Current Version10.13.0
    Allowed version range10.13.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${clean.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${clean.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-clean-plugin
    Current Version3.3.2
    Allowed version range3.3.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${clirr.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${clirr.plugin}
    Associated artifactsorg.codehaus.mojo:clirr-maven-plugin
    Current Version2.8
    Allowed version range2.8
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${compiler.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${compiler.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-compiler-plugin
    Current Version3.12.1
    Allowed version range3.12.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${coveralls.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${coveralls.plugin}
    Associated artifactscom.github.hazendaz.maven:coveralls-maven-plugin
    Current Version4.5.0-M3
    Allowed version range4.5.0-M3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${dependency.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${dependency.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-dependency-plugin
    Current Version3.6.1
    Allowed version range3.6.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${deploy.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${deploy.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-deploy-plugin
    Current Version3.1.1
    Allowed version range3.1.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${enforcer.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${enforcer.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-enforcer-plugin
    Current Version3.4.1
    Allowed version range3.4.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${extra-enforcer-rules.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${extra-enforcer-rules.version}
    Associated artifactsorg.codehaus.mojo:extra-enforcer-rules
    Current Version1.7.0
    Allowed version range1.7.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${fluido.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${fluido.version}
    Associated artifactsorg.apache.maven.skins:maven-fluido-skin
    Current Version2.0.0-M8
    Allowed version range2.0.0-M8
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${formatter.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${formatter.plugin}
    Associated artifactsnet.revelc.code.formatter:formatter-maven-plugin
    Current Version2.23.0
    Allowed version range2.23.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${git-commit.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${git-commit.plugin}
    Associated artifactsio.github.git-commit-id:git-commit-id-maven-plugin
    Current Version7.0.0
    Allowed version range7.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${gpg.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${gpg.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-gpg-plugin
    Current Version3.1.0
    Allowed version range3.1.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${impsort.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${impsort.plugin}
    Associated artifactsnet.revelc.code:impsort-maven-plugin
    Current Version1.9.0
    Allowed version range1.9.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${install.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${install.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-install-plugin
    Current Version3.1.1
    Allowed version range3.1.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${jacoco.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${jacoco.plugin}
    Associated artifactsorg.jacoco:jacoco-maven-plugin
    Current Version0.8.11
    Allowed version range0.8.11
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${jar.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${jar.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-jar-plugin
    Current Version3.3.0
    Allowed version range3.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${javadoc.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${javadoc.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-javadoc-plugin
    Current Version3.6.3
    Allowed version range3.6.3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${jxr.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${jxr.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-jxr-plugin
    Current Version3.3.2
    Allowed version range3.3.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${license.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${license.plugin}
    Associated artifactscom.mycila:license-maven-plugin
    Current Version4.3
    Allowed version range4.3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${license.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${license.version}
    Associated artifactscom.mycila:license-maven-plugin-git
    Current Version4.3
    Allowed version range4.3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${modernizer.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${modernizer.plugin}
    Associated artifactsorg.gaul:modernizer-maven-plugin
    Current Version2.7.0
    Allowed version range2.7.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-dynamic-sql.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-dynamic-sql.version}
    Associated artifactsorg.mybatis.dynamic-sql:mybatis-dynamic-sql
    Current Version1.5.0
    Allowed version range1.5.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-freemarker.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-freemarker.version}
    Associated artifactsorg.mybatis.scripting:mybatis-freemarker
    Current Version1.2.4
    Allowed version range1.2.4
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-spring-boot.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Property${mybatis-spring-boot.version}
    Associated artifactsorg.mybatis.spring.boot:mybatis-spring-boot-autoconfigure
    org.mybatis.spring.boot:mybatis-spring-boot-starter
    Current Version2.3.2
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    Allowed version range2.3.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-spring.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Property${mybatis-spring.version}
    Associated artifactsorg.mybatis:mybatis-spring
    Current Version2.1.2
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    Allowed version range2.1.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-thymeleaf.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-thymeleaf.version}
    Associated artifactsorg.mybatis.scripting:mybatis-thymeleaf
    Current Version1.0.4
    Allowed version range1.0.4
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-velocity.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-velocity.version}
    Associated artifactsorg.mybatis.scripting:mybatis-velocity
    Current Version2.1.2
    Allowed version range2.1.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis.version}
    Associated artifactsorg.mybatis:mybatis
    Current Version3.5.15
    Allowed version range3.5.15
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${native-buildtools.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${native-buildtools.version}
    Associated artifactsorg.graalvm.buildtools:native-maven-plugin
    Current Version0.10.0
    Allowed version range0.10.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${pdf.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${pdf.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-pdf-plugin
    Current Version1.6.1
    Allowed version range1.6.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${pmd.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${pmd.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-pmd-plugin
    Current Version3.21.2
    Allowed version range3.21.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${project-info.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${project-info.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-project-info-reports-plugin
    Current Version3.5.0
    Allowed version range3.5.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${release.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${release.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-release-plugin
    Current Version3.0.1
    Allowed version range3.0.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${resources.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${resources.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-resources-plugin
    Current Version3.3.1
    Allowed version range3.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${rewrite.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Property${rewrite.plugin}
    Associated artifactsorg.openrewrite.maven:rewrite-maven-plugin
    Current Version5.21.0
    Newer versions5.22.0 Latest Minor
    Allowed version range5.21.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${scm-publish.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${scm-publish.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-scm-publish-plugin
    Current Version3.2.1
    Allowed version range3.2.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${shade.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${shade.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-shade-plugin
    Current Version3.5.1
    Allowed version range3.5.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${site.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${site.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-site-plugin
    Current Version4.0.0-M13
    Allowed version range4.0.0-M13
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${sortpom.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${sortpom.plugin}
    Associated artifactscom.github.ekryd.sortpom:sortpom-maven-plugin
    Current Version3.3.0
    Allowed version range3.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${source.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${source.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-source-plugin
    Current Version3.3.0
    Allowed version range3.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${spotbugs.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Property${spotbugs.plugin}
    Associated artifactscom.github.spotbugs:spotbugs-maven-plugin
    Current Version4.8.3.0
    Newer versions4.8.3.1 Latest Subincremental
    Allowed version range4.8.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${spring-boot.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Property${spring-boot.version}
    Associated artifactsorg.springframework.boot:spring-boot-starter-parent
    Current Version2.7.18
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    Allowed version range2.7.18
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${spring-native.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${spring-native.version}
    Associated artifactsorg.springframework.experimental:spring-aot
    org.springframework.experimental:spring-native
    Current Version0.12.2
    Allowed version range0.12.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${surefire.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${surefire.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-surefire-plugin
    org.apache.maven.plugins:maven-surefire-report-plugin
    Current Version3.2.5
    Allowed version range3.2.5
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${taglist.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${taglist.plugin}
    Associated artifactsorg.codehaus.mojo:taglist-maven-plugin
    Current Version3.0.0
    Allowed version range3.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${versions.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${versions.plugin}
    Associated artifactsorg.codehaus.mojo:versions-maven-plugin
    Current Version2.16.2
    Allowed version range2.16.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${whitespace.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${whitespace.plugin}
    Associated artifactscom.github.hazendaz.maven:whitespace-maven-plugin
    Current Version1.3.1
    Allowed version range1.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +
    +
    +
    +
    + + + + diff --git a/en/property-updates-report.html b/en/property-updates-report.html new file mode 100644 index 0000000..552fb87 --- /dev/null +++ b/en/property-updates-report.html @@ -0,0 +1,2167 @@ + + + + + + + + + + mybatis-spring-native-docs – Property Updates Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This report summarizes newer versions that may be available for your project's various properties associated with artifacts.

    + + + + + + + + + + + + + + + + + + + + + +
    # of properties using the latest version available50
    # of properties where the next version available is smaller than an incremental version update1
    # of properties where the next version available is an incremental version update0
    # of properties where the next version available is a minor version update1
    # of properties where the next version available is a major version update3
    +

    Summary of properties associated with artifact versions

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    ${antrun.plugin}3.1.0
    ${asm.version}9.6
    ${assembly.plugin}3.6.0
    ${base-bundle.version}11
    ${bnd.plugin}7.0.0
    ${bnd.version}7.0.0
    ${build-tools.version}1.3.1
    ${checkstyle.plugin}3.3.1
    ${checkstyle.version}10.13.0
    ${clean.plugin}3.3.2
    ${clirr.plugin}2.8
    ${compiler.plugin}3.12.1
    ${coveralls.plugin}4.5.0-M3
    ${dependency.plugin}3.6.1
    ${deploy.plugin}3.1.1
    ${enforcer.plugin}3.4.1
    ${extra-enforcer-rules.version}1.7.0
    ${fluido.version}2.0.0-M8
    ${formatter.plugin}2.23.0
    ${git-commit.plugin}7.0.0
    ${gpg.plugin}3.1.0
    ${impsort.plugin}1.9.0
    ${install.plugin}3.1.1
    ${jacoco.plugin}0.8.11
    ${jar.plugin}3.3.0
    ${javadoc.plugin}3.6.3
    ${jxr.plugin}3.3.2
    ${license.plugin}4.3
    ${license.version}4.3
    ${modernizer.plugin}2.7.0
    ${mybatis-dynamic-sql.version}1.5.0
    ${mybatis-freemarker.version}1.2.4
    ${mybatis-spring-boot.version}2.3.23.0.3
    ${mybatis-spring.version}2.1.23.0.3
    ${mybatis-thymeleaf.version}1.0.4
    ${mybatis-velocity.version}2.1.2
    ${mybatis.version}3.5.15
    ${pdf.plugin}1.6.1
    ${pmd.plugin}3.21.2
    ${project-info.plugin}3.5.0
    ${release.plugin}3.0.1
    ${resources.plugin}3.3.1
    ${rewrite.plugin}5.21.05.22.0
    ${scm-publish.plugin}3.2.1
    ${shade.plugin}3.5.1
    ${site.plugin}4.0.0-M13
    ${sortpom.plugin}3.3.0
    ${source.plugin}3.3.0
    ${spotbugs.plugin}4.8.3.04.8.3.1
    ${spring-boot.version}2.7.183.3.0-M1
    ${spring-native.version}0.12.2
    ${surefire.plugin}3.2.5
    ${taglist.plugin}3.0.0
    ${versions.plugin}2.16.2
    ${whitespace.plugin}1.3.1
    StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
    +

    Properties associated with artifact versions

    +

    +

    ${antrun.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${antrun.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-antrun-plugin
    Current Version3.1.0
    Allowed version range3.1.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${asm.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${asm.version}
    Associated artifactsorg.ow2.asm:asm
    Current Version9.6
    Allowed version range9.6
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${assembly.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${assembly.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-assembly-plugin
    Current Version3.6.0
    Allowed version range3.6.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${base-bundle.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${base-bundle.version}
    Associated artifactsorg.mybatis:base-bundle-descriptor
    Current Version11
    Allowed version range11
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${bnd.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${bnd.plugin}
    Associated artifactsbiz.aQute.bnd:bnd-maven-plugin
    Current Version7.0.0
    Allowed version range7.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${bnd.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${bnd.version}
    Associated artifactsbiz.aQute.bnd:biz.aQute.bndlib
    Current Version7.0.0
    Allowed version range7.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${build-tools.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${build-tools.version}
    Associated artifactscom.github.hazendaz:build-tools
    Current Version1.3.1
    Allowed version range1.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${checkstyle.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${checkstyle.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-checkstyle-plugin
    Current Version3.3.1
    Allowed version range3.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${checkstyle.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${checkstyle.version}
    Associated artifactscom.puppycrawl.tools:checkstyle
    Current Version10.13.0
    Allowed version range10.13.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${clean.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${clean.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-clean-plugin
    Current Version3.3.2
    Allowed version range3.3.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${clirr.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${clirr.plugin}
    Associated artifactsorg.codehaus.mojo:clirr-maven-plugin
    Current Version2.8
    Allowed version range2.8
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${compiler.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${compiler.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-compiler-plugin
    Current Version3.12.1
    Allowed version range3.12.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${coveralls.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${coveralls.plugin}
    Associated artifactscom.github.hazendaz.maven:coveralls-maven-plugin
    Current Version4.5.0-M3
    Allowed version range4.5.0-M3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${dependency.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${dependency.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-dependency-plugin
    Current Version3.6.1
    Allowed version range3.6.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${deploy.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${deploy.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-deploy-plugin
    Current Version3.1.1
    Allowed version range3.1.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${enforcer.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${enforcer.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-enforcer-plugin
    Current Version3.4.1
    Allowed version range3.4.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${extra-enforcer-rules.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${extra-enforcer-rules.version}
    Associated artifactsorg.codehaus.mojo:extra-enforcer-rules
    Current Version1.7.0
    Allowed version range1.7.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${fluido.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${fluido.version}
    Associated artifactsorg.apache.maven.skins:maven-fluido-skin
    Current Version2.0.0-M8
    Allowed version range2.0.0-M8
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${formatter.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${formatter.plugin}
    Associated artifactsnet.revelc.code.formatter:formatter-maven-plugin
    Current Version2.23.0
    Allowed version range2.23.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${git-commit.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${git-commit.plugin}
    Associated artifactsio.github.git-commit-id:git-commit-id-maven-plugin
    Current Version7.0.0
    Allowed version range7.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${gpg.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${gpg.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-gpg-plugin
    Current Version3.1.0
    Allowed version range3.1.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${impsort.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${impsort.plugin}
    Associated artifactsnet.revelc.code:impsort-maven-plugin
    Current Version1.9.0
    Allowed version range1.9.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${install.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${install.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-install-plugin
    Current Version3.1.1
    Allowed version range3.1.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${jacoco.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${jacoco.plugin}
    Associated artifactsorg.jacoco:jacoco-maven-plugin
    Current Version0.8.11
    Allowed version range0.8.11
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${jar.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${jar.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-jar-plugin
    Current Version3.3.0
    Allowed version range3.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${javadoc.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${javadoc.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-javadoc-plugin
    Current Version3.6.3
    Allowed version range3.6.3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${jxr.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${jxr.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-jxr-plugin
    Current Version3.3.2
    Allowed version range3.3.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${license.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${license.plugin}
    Associated artifactscom.mycila:license-maven-plugin
    Current Version4.3
    Allowed version range4.3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${license.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${license.version}
    Associated artifactscom.mycila:license-maven-plugin-git
    Current Version4.3
    Allowed version range4.3
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${modernizer.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${modernizer.plugin}
    Associated artifactsorg.gaul:modernizer-maven-plugin
    Current Version2.7.0
    Allowed version range2.7.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-dynamic-sql.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-dynamic-sql.version}
    Associated artifactsorg.mybatis.dynamic-sql:mybatis-dynamic-sql
    Current Version1.5.0
    Allowed version range1.5.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-freemarker.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-freemarker.version}
    Associated artifactsorg.mybatis.scripting:mybatis-freemarker
    Current Version1.2.4
    Allowed version range1.2.4
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-spring-boot.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Property${mybatis-spring-boot.version}
    Associated artifactsorg.mybatis.spring.boot:mybatis-spring-boot-autoconfigure
    org.mybatis.spring.boot:mybatis-spring-boot-starter
    Current Version2.3.2
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    Allowed version range2.3.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-spring.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Property${mybatis-spring.version}
    Associated artifactsorg.mybatis:mybatis-spring
    Current Version2.1.2
    Newer versions3.0.0
    3.0.1
    3.0.2
    3.0.3 Latest Major
    Allowed version range2.1.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-thymeleaf.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-thymeleaf.version}
    Associated artifactsorg.mybatis.scripting:mybatis-thymeleaf
    Current Version1.0.4
    Allowed version range1.0.4
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis-velocity.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis-velocity.version}
    Associated artifactsorg.mybatis.scripting:mybatis-velocity
    Current Version2.1.2
    Allowed version range2.1.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${mybatis.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${mybatis.version}
    Associated artifactsorg.mybatis:mybatis
    Current Version3.5.15
    Allowed version range3.5.15
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${pdf.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${pdf.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-pdf-plugin
    Current Version1.6.1
    Allowed version range1.6.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${pmd.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${pmd.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-pmd-plugin
    Current Version3.21.2
    Allowed version range3.21.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${project-info.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${project-info.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-project-info-reports-plugin
    Current Version3.5.0
    Allowed version range3.5.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${release.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${release.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-release-plugin
    Current Version3.0.1
    Allowed version range3.0.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${resources.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${resources.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-resources-plugin
    Current Version3.3.1
    Allowed version range3.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${rewrite.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer minor version available. Minor updates are sometimes passive.
    Property${rewrite.plugin}
    Associated artifactsorg.openrewrite.maven:rewrite-maven-plugin
    Current Version5.21.0
    Newer versions5.22.0 Latest Minor
    Allowed version range5.21.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${scm-publish.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${scm-publish.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-scm-publish-plugin
    Current Version3.2.1
    Allowed version range3.2.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${shade.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${shade.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-shade-plugin
    Current Version3.5.1
    Allowed version range3.5.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${site.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${site.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-site-plugin
    Current Version4.0.0-M13
    Allowed version range4.0.0-M13
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${sortpom.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${sortpom.plugin}
    Associated artifactscom.github.ekryd.sortpom:sortpom-maven-plugin
    Current Version3.3.0
    Allowed version range3.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${source.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${source.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-source-plugin
    Current Version3.3.0
    Allowed version range3.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${spotbugs.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer version available.
    Property${spotbugs.plugin}
    Associated artifactscom.github.spotbugs:spotbugs-maven-plugin
    Current Version4.8.3.0
    Newer versions4.8.3.1 Latest Subincremental
    Allowed version range4.8.3.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${spring-boot.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status There is at least one newer major version available. Major updates are rarely passive.
    Property${spring-boot.version}
    Associated artifactsorg.springframework.boot:spring-boot-starter-parent
    Current Version2.7.18
    Newer versions3.0.0-M1
    3.0.0-M2
    3.0.0-M3
    3.0.0-M4
    3.0.0-M5
    3.0.0-RC1
    3.0.0-RC2
    3.0.0
    3.0.1
    3.0.2
    3.0.3
    3.0.4
    3.0.5
    3.0.6
    3.0.7
    3.0.8
    3.0.9
    3.0.10
    3.0.11
    3.0.12
    3.0.13
    3.1.0-M1
    3.1.0-M2
    3.1.0-RC1
    3.1.0-RC2
    3.1.0
    3.1.1
    3.1.2
    3.1.3
    3.1.4
    3.1.5
    3.1.6
    3.1.7
    3.1.8
    3.2.0-M1
    3.2.0-M2
    3.2.0-M3
    3.2.0-RC1
    3.2.0-RC2
    3.2.0
    3.2.1
    3.2.2
    3.3.0-M1 Latest Major
    Allowed version range2.7.18
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${spring-native.version}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${spring-native.version}
    Associated artifactsorg.springframework.experimental:spring-aot
    org.springframework.experimental:spring-native
    Current Version0.12.2
    Allowed version range0.12.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${surefire.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${surefire.plugin}
    Associated artifactsorg.apache.maven.plugins:maven-surefire-plugin
    org.apache.maven.plugins:maven-surefire-report-plugin
    Current Version3.2.5
    Allowed version range3.2.5
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${taglist.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${taglist.plugin}
    Associated artifactsorg.codehaus.mojo:taglist-maven-plugin
    Current Version3.0.0
    Allowed version range3.0.0
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${versions.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${versions.plugin}
    Associated artifactsorg.codehaus.mojo:versions-maven-plugin
    Current Version2.16.2
    Allowed version range2.16.2
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +

    ${whitespace.plugin}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Status No newer versions available.
    Property${whitespace.plugin}
    Associated artifactscom.github.hazendaz.maven:whitespace-maven-plugin
    Current Version1.3.1
    Allowed version range1.3.1
    Infer associations from projectYes
    Only use release versionsNo
    Include projects from reactorYes
    Always use reactor projects (even if older or -SNAPSHOT)Yes
    +
    +
    +
    +
    + + + + diff --git a/en/scm.html b/en/scm.html new file mode 100644 index 0000000..861f6e0 --- /dev/null +++ b/en/scm.html @@ -0,0 +1,89 @@ + + + + + + + + + + mybatis-spring-native-docs – Source Code Management + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Overview

    +

    This project uses Git to manage its source code. Instructions on Git use can be found at https://git-scm.com/documentation.

    +

    Web Browser Access

    +

    The following is a link to a browsable version of the source repository:

    +
    +

    Anonymous Access

    +

    The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

    +
    +
    $ git clone ssh://git@github.com/mybatis/spring-native.git
    +

    Developer Access

    +

    Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

    +
    +
    $ git clone ssh://git@github.com/mybatis/spring-native.git
    +

    Access from Behind a Firewall

    +

    Refer to the documentation of the SCM used for more information about access behind a firewall.

    +
    +
    +
    +
    + + + + diff --git a/en/spotbugs.html b/en/spotbugs.html new file mode 100644 index 0000000..fcc33ff --- /dev/null +++ b/en/spotbugs.html @@ -0,0 +1,111 @@ + + + + + + + + + + mybatis-spring-native-extensions – SpotBugs Bug Detector Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    SpotBugs Bug Detector Report

    +

    The following document contains the results of SpotBugs

    +

    SpotBugs Version is 4.8.3

    +

    Threshold is high

    +

    Effort is max

    +

    Summary

    + + + + + + + + + + +
    ClassesBugsErrorsMissing Classes
    0000
    +

    Files

    + + + +
    ClassBugs
    +
    +
    +
    +
    + + + + diff --git a/en/summary.html b/en/summary.html new file mode 100644 index 0000000..02bdaea --- /dev/null +++ b/en/summary.html @@ -0,0 +1,119 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Summary + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Summary

    +

    Project Information

    + + + + + + + + + + + + +
    FieldValue
    Namemybatis-spring-native-docs
    DescriptionDocuments for MyBatis integration with Spring Native feature
    Homepagehttps://www.mybatis.org/spring-native/mybatis-spring-native-docs/
    +

    Project Organization

    + + + + + + + + + +
    FieldValue
    NameMyBatis.org
    URLhttps://www.mybatis.org/
    +

    Build Information

    + + + + + + + + + + + + + + + + + + +
    FieldValue
    GroupIdorg.mybatis.spring.native
    ArtifactIdmybatis-spring-native-docs
    Version0.1.0-SNAPSHOT
    Typejar
    Java Version11
    +
    +
    +
    +
    + + + + diff --git a/en/surefire-report.html b/en/surefire-report.html new file mode 100644 index 0000000..5250495 --- /dev/null +++ b/en/surefire-report.html @@ -0,0 +1,107 @@ + + + + + + + + + + mybatis-spring-native-docs – Surefire Report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Surefire Report

    +

    Summary


    + + + + + + + + + + + + + + +
    TestsErrorsFailuresSkippedSuccess RateTime
    00000%0 s

    +

    Note: failures are anticipated and checked for with assertions while errors are unanticipated.


    +
    +
    +
    +
    + + + + diff --git a/en/taglist.html b/en/taglist.html new file mode 100644 index 0000000..8d8fbed --- /dev/null +++ b/en/taglist.html @@ -0,0 +1,108 @@ + + + + + + + + + + mybatis-spring-native-extensions – Tag List report + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Tag List Report

    +

    The following document contains the listing of user tags found in the code. Below is the summary of the occurrences per tag.

    + +Tag Class +Total number of occurrences +Tag strings used by tag class + +Deprecated Work +0 +@deprecated + +FIXME Work +0 +fixme, @fixme + +Todo Work +0 +todo, @todo +

    Each tag is detailed below:

    +
    +
    +
    +
    + + + + diff --git a/en/team.html b/en/team.html new file mode 100644 index 0000000..983ee4b --- /dev/null +++ b/en/team.html @@ -0,0 +1,216 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Team + + + + + + +
    +
    + + + +
    +
    +
    + + +
    +
    +
    +

    Project Team

    +

    A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.

    +

    The project team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.

    +

    Members

    +

    The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ImageIdNameEmailRolesTime Zone
    cbeginClinton Beginclinton.begin@gmail.comOwner, Founder, Committer-
    agustafsonAndrew Gustafsongus4000@gmail.comCommitter-
    brandon.goodinBrandon Goodinbrandon.goodin@gmail.comCommitter-
    christianpoitrasChristian Poitraschristian.poitras@ircm.qc.caCommitter-5
    emacarronEduardo Macarroneduardo.macarron@gmail.comCommitter-
    mnesarcoFrank Martinezmnesarco@gmail.comCommitter-
    hpresnallHunter Presnallhpresnall@gmail.comCommitter-
    harawataIwao Aveharawata@gmail.comCommitter-
    jeffgbutlerJeff Butlerjeffgbutler@gmail.comCommitter-
    hazendazJeremy Landisjeremylandis@hotmail.comCommitter-5
    nospam@kaigrabfelder.deKai Grabfeldernospam@kaigrabfelder.deCommitter-
    lmeadorsLarry Meadorslarry.meadors@gmail.comCommitter-
    marcosperanzaMarco Speranzamarco.speranza79@gmail.comCommitter+1
    nmavesNathan Mavesnathan.maves@gmail.comCommitter-
    pboonphongPutthiphong Boonphongputthiphong.boonphong@gmail.comCommitter-
    simonetripodiSimone Tripodisimone.tripodi@gmail.comCommitter+1
    h3adacheTim Chenchengt@gmail.comCommitter-
    +

    Contributors

    +

    The following additional people have contributed to this project through the way of suggestions, patches or documentation.

    + + + + + + + + +
    ImageNameEmail
    Kazuki Shimizukazuki43zoo@gmail.com
    +
    +
    +
    +
    + + + + diff --git a/en/xref-test/allclasses-frame.html b/en/xref-test/allclasses-frame.html new file mode 100644 index 0000000..810c6d5 --- /dev/null +++ b/en/xref-test/allclasses-frame.html @@ -0,0 +1,72 @@ + + + + + + + All Classes + + + +

    All Classes

    +
    + +
    + + diff --git a/en/xref-test/index.html b/en/xref-test/index.html new file mode 100644 index 0000000..acf9fc6 --- /dev/null +++ b/en/xref-test/index.html @@ -0,0 +1,75 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html b/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html new file mode 100644 index 0000000..f134940 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html @@ -0,0 +1,147 @@ + + + +MyBatisMapperFactoryBeanPostProcessorTest xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import org.assertj.core.api.Assertions;
    +19  import org.junit.jupiter.api.Test;
    +20  import org.mybatis.spring.mapper.MapperFactoryBean;
    +21  import org.mybatis.spring.nativex.mapper.SampleMapper;
    +22  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
    +23  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
    +24  import org.springframework.beans.factory.support.RootBeanDefinition;
    +25  
    +26  /**
    +27   * Test cases for {@link MyBatisMapperFactoryBeanPostProcessor}.
    +28   *
    +29   * @author Kazuki Shimizu
    +30   */
    +31  class MyBatisMapperFactoryBeanPostProcessorTest {
    +32  
    +33    @Test
    +34    void resolveMapperInterfaceType() {
    +35      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
    +36          .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class)
    +37          .getBeanDefinition();
    +38      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +39      postProcess(beanDefinition);
    +40      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
    +41      Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean.class);
    +42      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1);
    +43      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class);
    +44    }
    +45  
    +46    @Test
    +47    void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithOneGeneric() {
    +48      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
    +49          .rootBeanDefinition(MapperFactoryBean2.class).addPropertyValue("mapperInterface", SampleMapper.class)
    +50          .getBeanDefinition();
    +51      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +52      postProcess(beanDefinition);
    +53      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
    +54      Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean2.class);
    +55      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1);
    +56      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class);
    +57    }
    +58  
    +59    @Test
    +60    void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithoutGeneric() {
    +61      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
    +62          .rootBeanDefinition(SampleMapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class)
    +63          .getBeanDefinition();
    +64      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
    +65      postProcess(beanDefinition);
    +66      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
    +67    }
    +68  
    +69    // TODO Now this case is limitation using MapperFactoryBean's subclass
    +70    @Test
    +71    void failResolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithMultiGenerics() {
    +72      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
    +73          .rootBeanDefinition(MapperFactoryBean3.class).addPropertyValue("mapperInterface", SampleMapper.class)
    +74          .getBeanDefinition();
    +75      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +76      Assertions.assertThatIllegalArgumentException().isThrownBy(() -> postProcess(beanDefinition)).withMessage(
    +77          "Mismatched number of generics specified for private static class org.mybatis.spring.nativex.MyBatisMapperFactoryBeanPostProcessorTest$MapperFactoryBean3<T,Z>");
    +78    }
    +79  
    +80    @Test
    +81    void skipResolveMapperInterfaceTypeWhenNotPresentMapperInterface() {
    +82      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
    +83          .rootBeanDefinition(MapperFactoryBean.class).getBeanDefinition();
    +84      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +85      postProcess(beanDefinition);
    +86      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +87      Assertions.assertThat(beanDefinition.getTargetType()).isNull();
    +88    }
    +89  
    +90    @Test
    +91    void skipResolveMapperInterfaceTypeWhenFailGetMapperInterface() {
    +92      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
    +93          .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", "invalid value")
    +94          .getBeanDefinition();
    +95      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +96      postProcess(beanDefinition);
    +97      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
    +98      Assertions.assertThat(beanDefinition.getTargetType()).isNull();
    +99    }
    +100 
    +101   @Test
    +102   void skipResolveMapperInterfaceTypeWhenNotPresentBeanClass() {
    +103     RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition((Class<?>) null)
    +104         .getBeanDefinition();
    +105     postProcess(beanDefinition);
    +106     Assertions.assertThat(beanDefinition.getTargetType()).isNull();
    +107   }
    +108 
    +109   @Test
    +110   void skipResolveMapperInterfaceTypeWhenBeanClassNotMapperBeanFactory() {
    +111     RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition(String.class)
    +112         .getBeanDefinition();
    +113     postProcess(beanDefinition);
    +114     Assertions.assertThat(beanDefinition.getTargetType()).isNull();
    +115   }
    +116 
    +117   private void postProcess(RootBeanDefinition beanDefinition) {
    +118     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
    +119     MyBatisMapperFactoryBeanPostProcessor processor = new MyBatisMapperFactoryBeanPostProcessor();
    +120     processor.setBeanFactory(beanFactory);
    +121     processor.postProcessBeanDefinition("testBean", beanDefinition);
    +122   }
    +123 
    +124   private static class MapperFactoryBean2<T> extends MapperFactoryBean<T> {
    +125   }
    +126 
    +127   @SuppressWarnings("unused")
    +128   private static class MapperFactoryBean3<T, Z> extends MapperFactoryBean<T> {
    +129   }
    +130 
    +131   private static class SampleMapperFactoryBean extends MapperFactoryBean<SampleMapper> {
    +132   }
    +133 
    +134 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html b/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html new file mode 100644 index 0000000..08b1405 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html @@ -0,0 +1,287 @@ + + + +MyBatisMapperNativeConfigurationProcessorTest xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
    +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
    +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
    +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
    +30  
    +31  import java.util.ArrayList;
    +32  import java.util.List;
    +33  import java.util.Map;
    +34  import java.util.Set;
    +35  import java.util.stream.Collectors;
    +36  
    +37  import org.assertj.core.api.Assertions;
    +38  import org.junit.jupiter.api.Test;
    +39  import org.mybatis.spring.mapper.MapperFactoryBean;
    +40  import org.mybatis.spring.nativex.mapper.Sample2Mapper;
    +41  import org.mybatis.spring.nativex.mapper.Sample3Mapper;
    +42  import org.mybatis.spring.nativex.mapper.SampleMapper;
    +43  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry;
    +44  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
    +45  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry;
    +46  import org.springframework.beans.factory.config.RuntimeBeanNameReference;
    +47  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
    +48  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
    +49  import org.springframework.nativex.domain.proxies.JdkProxyDescriptor;
    +50  import org.springframework.nativex.domain.proxies.ProxiesDescriptor;
    +51  import org.springframework.nativex.hint.TypeAccess;
    +52  
    +53  /**
    +54   * Test cases for {@link MyBatisMapperNativeConfigurationProcessor}.
    +55   *
    +56   * @author Kazuki Shimizu
    +57   */
    +58  class MyBatisMapperNativeConfigurationProcessorTest {
    +59  
    +60    private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
    +61        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
    +62        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
    +63  
    +64    @Test
    +65    @SuppressWarnings("java:S5961")
    +66    void registerMapperInterfaceAndRelationships() {
    +67      DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
    +68      beanFactory.registerBeanDefinition("sampleMapper",
    +69          BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
    +70              .addPropertyValue("mapperInterface", SampleMapper.class)
    +71              .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
    +72              .getBeanDefinition());
    +73      NativeConfigurationRegistry registry = process(beanFactory);
    +74      // reflection hint
    +75      {
    +76        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
    +77            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
    +78        Assertions.assertThat(entries).hasSize(13);
    +79        // mapper interface
    +80        Assertions.assertThat(entries.get(SampleMapper.class))
    +81            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +82        // mapper method argument and return type
    +83        Assertions.assertThat(entries.get(SampleMapper.Sample.class))
    +84            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +85        Assertions.assertThat(entries.get(SampleMapper.SampleParam.class))
    +86            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +87        Assertions.assertThat(entries.get(SampleMapper.Sample2.class))
    +88            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +89        Assertions.assertThat(entries.get(SampleMapper.Sample2Param.class))
    +90            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +91        // sql provider
    +92        Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass1.class))
    +93            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +94        Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass2.class))
    +95            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +96        Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass1.class))
    +97            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +98        Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass2.class))
    +99            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +100       Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass1.class))
    +101           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +102       Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass2.class))
    +103           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +104       Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass1.class))
    +105           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +106       Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass2.class))
    +107           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +108     }
    +109     // proxy hint
    +110     {
    +111       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
    +112       Assertions.assertThat(entries).hasSize(1);
    +113       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
    +114       entries.forEach(x -> x.contribute(proxiesDescriptor));
    +115       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
    +116       Assertions.assertThat(jdkProxyDescriptors).hasSize(1);
    +117       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
    +118         Assertions.assertThat(x.isClassProxy()).isFalse();
    +119         Assertions.assertThat(x.getTypes()).containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.SampleMapper");
    +120       });
    +121     }
    +122     // resource hint
    +123     {
    +124       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
    +125       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/SampleMapper.xml");
    +126     }
    +127   }
    +128 
    +129   @Test
    +130   void registerMultiMapperInterface() {
    +131     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
    +132     beanFactory.registerBeanDefinition("sample2Mapper",
    +133         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
    +134             .addPropertyValue("mapperInterface", Sample2Mapper.class)
    +135             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
    +136             .getBeanDefinition());
    +137     beanFactory.registerBeanDefinition("sample3Mapper",
    +138         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
    +139             .addPropertyValue("mapperInterface", Sample3Mapper.class)
    +140             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
    +141             .getBeanDefinition());
    +142     NativeConfigurationRegistry registry = process(beanFactory);
    +143     // reflection hint
    +144     {
    +145       Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
    +146           .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
    +147       Assertions.assertThat(entries).hasSize(2);
    +148       // mapper interface
    +149       Assertions.assertThat(entries.get(Sample2Mapper.class))
    +150           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +151       Assertions.assertThat(entries.get(Sample3Mapper.class))
    +152           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +153     }
    +154     // proxy hint
    +155     {
    +156       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
    +157       Assertions.assertThat(entries).hasSize(2);
    +158       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
    +159       entries.forEach(x -> x.contribute(proxiesDescriptor));
    +160       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
    +161       Assertions.assertThat(jdkProxyDescriptors).hasSize(2);
    +162       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
    +163         Assertions.assertThat(x.isClassProxy()).isFalse();
    +164         Assertions.assertThat(x.getTypes())
    +165             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper");
    +166       });
    +167       Assertions.assertThat(jdkProxyDescriptors.get(1)).satisfies(x -> {
    +168         Assertions.assertThat(x.isClassProxy()).isFalse();
    +169         Assertions.assertThat(x.getTypes())
    +170             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample3Mapper");
    +171       });
    +172     }
    +173     // resource hint
    +174     {
    +175       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
    +176       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml",
    +177           "org/mybatis/spring/nativex/mapper/Sample3Mapper.xml");
    +178     }
    +179   }
    +180 
    +181   @Test
    +182   void registerMapperInterfaceWithMapperFactoryBeanSubclass() {
    +183     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
    +184     beanFactory.registerBeanDefinition("sample2Mapper",
    +185         BeanDefinitionBuilder.rootBeanDefinition(MyMapperFactoryBean.class)
    +186             .addPropertyValue("mapperInterface", Sample2Mapper.class)
    +187             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
    +188             .getBeanDefinition());
    +189     NativeConfigurationRegistry registry = process(beanFactory);
    +190     // reflection hint
    +191     {
    +192       Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
    +193           .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
    +194       Assertions.assertThat(entries).hasSize(1);
    +195       // mapper interface
    +196       Assertions.assertThat(entries.get(Sample2Mapper.class))
    +197           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
    +198     }
    +199     // proxy hint
    +200     {
    +201       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
    +202       Assertions.assertThat(entries).hasSize(1);
    +203       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
    +204       entries.forEach(x -> x.contribute(proxiesDescriptor));
    +205       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
    +206       Assertions.assertThat(jdkProxyDescriptors).hasSize(1);
    +207       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
    +208         Assertions.assertThat(x.isClassProxy()).isFalse();
    +209         Assertions.assertThat(x.getTypes())
    +210             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper");
    +211       });
    +212     }
    +213     // resource hint
    +214     {
    +215       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
    +216       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml");
    +217     }
    +218   }
    +219 
    +220   @Test
    +221   void skipRegisterWhenMapperInterfaceNotPresent() {
    +222     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
    +223     beanFactory.registerBeanDefinition("sample2Mapper",
    +224         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
    +225             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
    +226             .getBeanDefinition());
    +227     NativeConfigurationRegistry registry = process(beanFactory);
    +228     // reflection hint
    +229     {
    +230       Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty();
    +231     }
    +232     // proxy hint
    +233     {
    +234       Assertions.assertThat(registry.proxy().getEntries()).isEmpty();
    +235     }
    +236     // resource hint
    +237     {
    +238       Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty();
    +239     }
    +240   }
    +241 
    +242   @Test
    +243   void skipRegisterWhenMapperInterfaceIsNull() {
    +244     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
    +245     beanFactory.registerBeanDefinition("sample2Mapper",
    +246         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", null)
    +247             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
    +248             .getBeanDefinition());
    +249     NativeConfigurationRegistry registry = process(beanFactory);
    +250     // reflection hint
    +251     {
    +252       Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty();
    +253     }
    +254     // proxy hint
    +255     {
    +256       Assertions.assertThat(registry.proxy().getEntries()).isEmpty();
    +257     }
    +258     // resource hint
    +259     {
    +260       Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty();
    +261     }
    +262   }
    +263 
    +264   private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) {
    +265     NativeConfigurationRegistry registry = new NativeConfigurationRegistry();
    +266     new MyBatisMapperNativeConfigurationProcessor().process(beanFactory, registry);
    +267     return registry;
    +268   }
    +269 
    +270   private static class MyMapperFactoryBean<T> extends MapperFactoryBean<T> {
    +271 
    +272   }
    +273 
    +274 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html b/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html new file mode 100644 index 0000000..fcb11b3 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html @@ -0,0 +1,372 @@ + + + +MyBatisMapperTypeUtilsTest xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import java.lang.reflect.Method;
    +19  import java.util.Arrays;
    +20  import java.util.Collection;
    +21  import java.util.HashMap;
    +22  import java.util.List;
    +23  import java.util.Map;
    +24  import java.util.Optional;
    +25  import java.util.Set;
    +26  import java.util.concurrent.ConcurrentMap;
    +27  import java.util.stream.Collectors;
    +28  
    +29  import org.assertj.core.api.Assertions;
    +30  import org.junit.jupiter.api.Test;
    +31  import org.springframework.util.ReflectionUtils;
    +32  
    +33  class MyBatisMapperTypeUtilsTest {
    +34  
    +35    @Test
    +36    void resolveReturnClassWithFinalValueClass() {
    +37      Class<?> mapper = TestMapper1.class;
    +38      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findString"));
    +39      Assertions.assertThat(type).isEqualTo(String.class);
    +40    }
    +41  
    +42    @Test
    +43    void resolveReturnClassWithAbstractValueClass() {
    +44      Class<?> mapper = TestMapper1.class;
    +45      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findNumber"));
    +46      Assertions.assertThat(type).isEqualTo(Number.class);
    +47    }
    +48  
    +49    @Test
    +50    void resolveReturnClassWithTopLayerInterface() {
    +51      Class<?> mapper = TestMapper1.class;
    +52      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +53          ReflectionUtils.findMethod(mapper, "findCharSequence"));
    +54      Assertions.assertThat(type).isEqualTo(CharSequence.class);
    +55    }
    +56  
    +57    @Test
    +58    void resolveReturnClassWithPrimitive() {
    +59      Class<?> mapper = TestMapper1.class;
    +60      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findInt"));
    +61      Assertions.assertThat(type).isEqualTo(int.class);
    +62    }
    +63  
    +64    @Test
    +65    void resolveReturnClassWithPrimitiveWrapper() {
    +66      Class<?> mapper = TestMapper1.class;
    +67      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findLong"));
    +68      Assertions.assertThat(type).isEqualTo(Long.class);
    +69    }
    +70  
    +71    @Test
    +72    void resolveReturnClassWithPrimitiveVoid() {
    +73      Class<?> mapper = TestMapper1.class;
    +74      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "insert"));
    +75      Assertions.assertThat(type).isEqualTo(void.class);
    +76    }
    +77  
    +78    @Test
    +79    void resolveReturnClassWithClassVoid() {
    +80      Class<?> mapper = TestMapper1.class;
    +81      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +82          ReflectionUtils.findMethod(mapper, "insertWithClassVoid"));
    +83      Assertions.assertThat(type).isEqualTo(Void.class);
    +84    }
    +85  
    +86    @Test
    +87    void resolveReturnClassWithSimpleBean() {
    +88      Class<?> mapper = TestMapper1.class;
    +89      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +90          ReflectionUtils.findMethod(mapper, "findSimpleBean"));
    +91      Assertions.assertThat(type).isEqualTo(MyBean.class);
    +92    }
    +93  
    +94    @Test
    +95    void resolveReturnClassWithSimpleBeanInCollection() {
    +96      Class<?> mapper = TestMapper1.class;
    +97      {
    +98        Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +99            ReflectionUtils.findMethod(mapper, "findSimpleBeanList"));
    +100       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +101     }
    +102     {
    +103       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +104           ReflectionUtils.findMethod(mapper, "findSimpleBeanCollection"));
    +105       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +106     }
    +107     {
    +108       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +109           ReflectionUtils.findMethod(mapper, "findSimpleBeanIterable"));
    +110       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +111     }
    +112     {
    +113       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +114           ReflectionUtils.findMethod(mapper, "findSimpleBeanArray"));
    +115       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +116     }
    +117     {
    +118       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +119           ReflectionUtils.findMethod(mapper, "findSimpleBeanMap"));
    +120       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +121     }
    +122     {
    +123       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +124           ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap"));
    +125       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +126     }
    +127   }
    +128 
    +129   @Test
    +130   void resolveReturnClassWithSimpleBeanInMap() {
    +131     Class<?> mapper = TestMapper1.class;
    +132     {
    +133       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +134           ReflectionUtils.findMethod(mapper, "findSimpleBeanMap"));
    +135       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +136     }
    +137     {
    +138       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +139           ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap"));
    +140       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +141     }
    +142   }
    +143 
    +144   @Test
    +145   void resolveReturnClassWithOptional() {
    +146     Class<?> mapper = TestMapper1.class;
    +147     {
    +148       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +149           ReflectionUtils.findMethod(mapper, "findStringWithOptional"));
    +150       Assertions.assertThat(type).isEqualTo(String.class);
    +151     }
    +152     {
    +153       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +154           ReflectionUtils.findMethod(mapper, "findSimpleBeanWithOptional"));
    +155       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +156     }
    +157   }
    +158 
    +159   @Test
    +160   void resolveReturnClassWithWildcard() {
    +161     Class<?> mapper = TestMapper1.class;
    +162     {
    +163       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +164           ReflectionUtils.findMethod(mapper, "findSimpleWildcardList"));
    +165       Assertions.assertThat(type).isEqualTo(List.class);
    +166     }
    +167     {
    +168       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +169           ReflectionUtils.findMethod(mapper, "findSimpleGenericsWildcardList"));
    +170       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +171     }
    +172   }
    +173 
    +174   @Test
    +175   void resolveReturnClassWithGenericsMapper() {
    +176     Class<?> mapper = TestMapper2.class;
    +177     {
    +178       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +179           Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper))
    +180               .collect(Collectors.toMap(Method::getName, x -> x)).get("findOne"));
    +181       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +182     }
    +183     {
    +184       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
    +185           Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper))
    +186               .collect(Collectors.toMap(Method::getName, x -> x)).get("findAll"));
    +187       Assertions.assertThat(type).isEqualTo(MyBean.class);
    +188     }
    +189   }
    +190 
    +191   @Test
    +192   void resolveParameterClassesSingleBean() {
    +193     Class<?> mapper = TestMapper3.class;
    +194     Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +195         ReflectionUtils.findMethod(mapper, "insertWithBean", MyBean.class));
    +196     Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +197   }
    +198 
    +199   @Test
    +200   void resolveParameterClassesMultiBean() {
    +201     Class<?> mapper = TestMapper3.class;
    +202     Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +203         ReflectionUtils.findMethod(mapper, "insertWithMultiBean", MyBeanKey.class, MyBean.class));
    +204     Assertions.assertThat(types).containsExactlyInAnyOrder(MyBeanKey.class, MyBean.class);
    +205   }
    +206 
    +207   @Test
    +208   void resolveParameterClassesWithBeanInMap() {
    +209     Class<?> mapper = TestMapper3.class;
    +210     {
    +211       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +212           ReflectionUtils.findMethod(mapper, "insertWithMap", Map.class));
    +213       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +214     }
    +215     {
    +216       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +217           ReflectionUtils.findMethod(mapper, "insertWithFixKeyMap", MyFixKeyMap.class));
    +218       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +219     }
    +220     {
    +221       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +222           ReflectionUtils.findMethod(mapper, "insertWithFixValueMap", MyFixValueMap.class));
    +223       Assertions.assertThat(types).containsExactlyInAnyOrder(Integer.class);
    +224     }
    +225   }
    +226 
    +227   @Test
    +228   void resolveParameterClassesWithBeanInCollection() {
    +229     Class<?> mapper = TestMapper3.class;
    +230     {
    +231       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +232           ReflectionUtils.findMethod(mapper, "insertWithBeanInList", List.class));
    +233       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +234     }
    +235     {
    +236       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +237           ReflectionUtils.findMethod(mapper, "insertWithBeanInCollection", Collection.class));
    +238       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +239     }
    +240     {
    +241       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +242           ReflectionUtils.findMethod(mapper, "insertWithBeanInIterable", Iterable.class));
    +243       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +244     }
    +245     {
    +246       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +247           ReflectionUtils.findMethod(mapper, "insertWithBeanInArray", MyBean[].class));
    +248       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +249     }
    +250   }
    +251 
    +252   @Test
    +253   void resolveParameterClassesWithWildcard() {
    +254     Class<?> mapper = TestMapper3.class;
    +255     {
    +256       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +257           ReflectionUtils.findMethod(mapper, "insertWithWildcardInList", List.class));
    +258       Assertions.assertThat(types).containsExactlyInAnyOrder(Object.class);
    +259     }
    +260     {
    +261       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
    +262           ReflectionUtils.findMethod(mapper, "insertWithGenericsWildcardInList", List.class));
    +263       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
    +264     }
    +265   }
    +266 
    +267   @SuppressWarnings("unused")
    +268   interface TestMapper1 {
    +269 
    +270     String findString();
    +271 
    +272     CharSequence findCharSequence();
    +273 
    +274     Number findNumber();
    +275 
    +276     Long findLong();
    +277 
    +278     int findInt();
    +279 
    +280     void insert();
    +281 
    +282     Void insertWithClassVoid();
    +283 
    +284     MyBean findSimpleBean();
    +285 
    +286     List<MyBean> findSimpleBeanList();
    +287 
    +288     Collection<MyBean> findSimpleBeanCollection();
    +289 
    +290     Iterable<MyBean> findSimpleBeanIterable();
    +291 
    +292     Map<String, MyBean> findSimpleBeanMap();
    +293 
    +294     ConcurrentMap<String, MyBean> findSimpleBeanConcurrentMap();
    +295 
    +296     MyBean[] findSimpleBeanArray();
    +297 
    +298     Optional<String> findStringWithOptional();
    +299 
    +300     Optional<MyBean> findSimpleBeanWithOptional();
    +301 
    +302     List<?> findSimpleWildcardList();
    +303 
    +304     <T extends MyBean> List<T> findSimpleGenericsWildcardList();
    +305 
    +306   }
    +307 
    +308   interface TestMapper2 extends BaseMapper<MyBean, MyBeanKey> {
    +309   }
    +310 
    +311   @SuppressWarnings("unused")
    +312   interface TestMapper3 {
    +313     void insertWithBean(MyBean bean);
    +314 
    +315     void insertWithBeanInList(List<MyBean> beans);
    +316 
    +317     void insertWithBeanInCollection(Collection<MyBean> beans);
    +318 
    +319     void insertWithBeanInIterable(Iterable<MyBean> beans);
    +320 
    +321     void insertWithBeanInArray(MyBean[] beans);
    +322 
    +323     void insertWithMultiBean(MyBeanKey key, MyBean bean);
    +324 
    +325     void insertWithMap(Map<String, MyBean> beans);
    +326 
    +327     void insertWithFixKeyMap(MyFixKeyMap<MyBean> beans);
    +328 
    +329     void insertWithFixValueMap(MyFixValueMap<Integer> beans);
    +330 
    +331     void insertWithWildcardInList(List<?> beans);
    +332 
    +333     <T extends MyBean> void insertWithGenericsWildcardInList(List<T> beans);
    +334   }
    +335 
    +336   @SuppressWarnings("unused")
    +337   interface BaseMapper<T, K> {
    +338     T findOne(K key);
    +339 
    +340     Collection<T> findAll();
    +341   }
    +342 
    +343   static class MyBean {
    +344 
    +345   }
    +346 
    +347   static class MyBeanKey {
    +348 
    +349   }
    +350 
    +351   static class MyFixKeyMap<T> extends HashMap<String, T> {
    +352 
    +353   }
    +354 
    +355   static class MyFixValueMap<K> extends HashMap<K, MyBean> {
    +356 
    +357   }
    +358 
    +359 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html b/en/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html new file mode 100644 index 0000000..6ea0395 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html @@ -0,0 +1,353 @@ + + + +MyBatisResourcesScanTest xref + + + +
    +1   /*
    +2    *    Copyright 2022-2023 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import java.io.File;
    +19  import java.net.MalformedURLException;
    +20  import java.net.URL;
    +21  import java.net.URLClassLoader;
    +22  import java.util.Objects;
    +23  import java.util.Set;
    +24  import java.util.stream.Collectors;
    +25  import java.util.stream.Stream;
    +26  
    +27  import org.assertj.core.api.Assertions;
    +28  import org.junit.jupiter.api.Test;
    +29  import org.mybatis.spring.nativex.component.AbstractTypeHandler;
    +30  import org.mybatis.spring.nativex.component.BarService;
    +31  import org.mybatis.spring.nativex.component.BarTypeHandler;
    +32  import org.mybatis.spring.nativex.component.FooTypeHandler;
    +33  import org.mybatis.spring.nativex.component.TypeHandlers;
    +34  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
    +35  import org.mybatis.spring.nativex.entity.City;
    +36  import org.mybatis.spring.nativex.entity.Country;
    +37  import org.mybatis.spring.nativex.marker.StandardEntity;
    +38  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    +39  import org.springframework.context.annotation.Configuration;
    +40  import org.springframework.nativex.hint.TypeAccess;
    +41  import org.springframework.util.ClassUtils;
    +42  
    +43  class MyBatisResourcesScanTest {
    +44  
    +45    @Test
    +46    void scanTypeAliases() {
    +47      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +48      context.registerBean(ConfigurationForScanTypeAliases.class);
    +49      context.refresh();
    +50      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +51      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class);
    +52      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
    +53      Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
    +54      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class);
    +55      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
    +56      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
    +57    }
    +58  
    +59    @Test
    +60    void scanTypeAliasesWithSupperType() {
    +61      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +62      context.registerBean(ConfigurationForScanTypeAliasesWithSupperType.class);
    +63      context.refresh();
    +64      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +65      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(Country.class);
    +66      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class);
    +67    }
    +68  
    +69    @Test
    +70    void scanTypeAliasesWithMultiPackage() {
    +71      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +72      context.registerBean(ConfigurationForScanTypeAliasesWithMultiPackage.class);
    +73      context.refresh();
    +74      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +75      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class,
    +76          BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class);
    +77      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
    +78      Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
    +79      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class,
    +80          BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class);
    +81      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
    +82      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
    +83    }
    +84  
    +85    @Test
    +86    void scanTypeHandler() {
    +87      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +88      context.registerBean(ConfigurationForScanTypeHandler.class);
    +89      context.refresh();
    +90      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +91      Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
    +92      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
    +93      Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
    +94          BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
    +95      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
    +96          BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
    +97      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
    +98      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
    +99    }
    +100 
    +101   @Test
    +102   void scanTypeHandlerWithMultiPackage() {
    +103     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +104     context.registerBean(ConfigurationForScanTypeHandlerWithMultiPackage.class);
    +105     context.refresh();
    +106     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +107     Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
    +108         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
    +109     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
    +110         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
    +111   }
    +112 
    +113   @Test
    +114   void scanMapperLocations() {
    +115     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +116     context.registerBean(ConfigurationForScanMapperLocations.class);
    +117     context.refresh();
    +118     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +119     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
    +120     Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
    +121         "mapper/sub1/FooMapper.xml");
    +122     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
    +123     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
    +124     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
    +125         "mapper/sub1/FooMapper.xml");
    +126     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
    +127   }
    +128 
    +129   @Test
    +130   void scanMapperLocationsWithMultiPattern() {
    +131     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +132     context.registerBean(ConfigurationForScanMapperLocationsWithMultiPattern.class);
    +133     context.refresh();
    +134     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +135     Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
    +136         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
    +137     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
    +138         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
    +139   }
    +140 
    +141   @Test
    +142   void scanReflectionType() {
    +143     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +144     context.registerBean(ConfigurationForScanReflectionType.class);
    +145     context.refresh();
    +146     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +147     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
    +148     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
    +149     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
    +150     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class);
    +151     Assertions.assertThat(holder.getResourceLocations()).isEmpty();
    +152     Assertions.assertThat(holder.getReflectionTypeAccesses()).containsExactlyInAnyOrder(TypeAccess.DECLARED_CLASSES);
    +153   }
    +154 
    +155   @Test
    +156   void scanReflectionTypeWithSupperType() {
    +157     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +158     context.registerBean(ConfigurationForScanReflectionTypeWithSuperType.class);
    +159     context.refresh();
    +160     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +161     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class);
    +162   }
    +163 
    +164   @Test
    +165   void scanReflectionTypeWithMultiPackage() {
    +166     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +167     context.registerBean(ConfigurationForScanReflectionTypeWithMultiPackage.class);
    +168     context.refresh();
    +169     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +170     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class,
    +171         BarService.class, BarTypeHandler.class, FooTypeHandler.class, TypeHandlers.class);
    +172   }
    +173 
    +174   @Test
    +175   void scanResourceLocations() {
    +176     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +177     context.registerBean(ConfigurationForScanResourceLocations.class);
    +178     context.refresh();
    +179     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +180     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
    +181     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
    +182     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
    +183     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
    +184     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
    +185         "mapper/sub1/FooMapper.xml");
    +186     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
    +187   }
    +188 
    +189   @Test
    +190   void scanResourceLocationsWithGradleBuildOutput() throws Exception {
    +191     String currentDir = Objects.requireNonNull(getClass().getResource("")).getPath();
    +192     String projectDir = currentDir.substring(0, currentDir.indexOf("/target/test-classes"));
    +193     SimulateGradleBuildResourcesURLClassLoader classLoader = new SimulateGradleBuildResourcesURLClassLoader(
    +194         projectDir + "/src/test/gradle_resources/", getClass().getClassLoader());
    +195     ClassUtils.overrideThreadContextClassLoader(classLoader);
    +196     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +197     context.registerBean(ConfigurationForScanResourceLocationsWithGradleOutputResources.class);
    +198     context.refresh();
    +199     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +200     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
    +201     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
    +202     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
    +203     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
    +204     Assertions.assertThat(holder.getResourceLocations())
    +205         .containsExactlyInAnyOrder("mapper/gradle_output/GradleOutputMapper.xml");
    +206     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
    +207   }
    +208 
    +209   @Test
    +210   void scanResourceLocationsWithMultiPattern() {
    +211     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +212     context.registerBean(ConfigurationForScanResourceLocationsWithMultiPattern.class);
    +213     context.refresh();
    +214     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
    +215     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
    +216         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
    +217   }
    +218 
    +219   @Test
    +220   void scanRepeat() {
    +221     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +222     context.registerBean(ConfigurationForRepeat.class);
    +223     context.refresh();
    +224     Set<MyBatisScannedResourcesHolder> list = Stream
    +225         .of(context.getBeanNamesForType(MyBatisScannedResourcesHolder.class))
    +226         .map(x -> context.getBean(x, MyBatisScannedResourcesHolder.class)).collect(Collectors.toSet());
    +227     Set<Class<?>> typeAliasesClasses = list.stream().flatMap(x -> x.getTypeAliasesClasses().stream())
    +228         .collect(Collectors.toSet());
    +229     Set<Class<?>> typeHandlerClasses = list.stream().flatMap(x -> x.getTypeHandlerClasses().stream())
    +230         .collect(Collectors.toSet());
    +231     Set<Class<?>> reflectionClasses = list.stream().flatMap(x -> x.getReflectionClasses().stream())
    +232         .collect(Collectors.toSet());
    +233     Set<String> mapperLocations = list.stream().flatMap(x -> x.getMapperLocations().stream())
    +234         .collect(Collectors.toSet());
    +235     Set<String> resourceLocations = list.stream().flatMap(x -> x.getResourceLocations().stream())
    +236         .collect(Collectors.toSet());
    +237     Assertions.assertThat(typeAliasesClasses).containsExactlyInAnyOrder(Country.class, City.class);
    +238     Assertions.assertThat(typeHandlerClasses).containsExactlyInAnyOrder(FooTypeHandler.class, BarTypeHandler.class,
    +239         TypeHandlers.InnerTypeHandler.class);
    +240     Assertions.assertThat(reflectionClasses).containsExactlyInAnyOrder(Country.class, City.class, FooTypeHandler.class,
    +241         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
    +242     Assertions.assertThat(mapperLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml",
    +243         "mapper/sub1/BarMapper.xml");
    +244     Assertions.assertThat(resourceLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml",
    +245         "mapper/sub2/AnyMapper.xml", "mapper/sub1/BarMapper.xml");
    +246   }
    +247 
    +248   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
    +249   @Configuration
    +250   static class ConfigurationForScanTypeAliases {
    +251   }
    +252 
    +253   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAliasesSupperType = StandardEntity.class)
    +254   @Configuration
    +255   static class ConfigurationForScanTypeAliasesWithSupperType {
    +256   }
    +257 
    +258   @MyBatisResourcesScan(typeAliasesPackages = { "org.mybatis.spring.nativex.entity",
    +259       "org.mybatis.spring.nativex.component" })
    +260   @Configuration
    +261   static class ConfigurationForScanTypeAliasesWithMultiPackage {
    +262   }
    +263 
    +264   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
    +265   @Configuration
    +266   static class ConfigurationForScanTypeHandler {
    +267   }
    +268 
    +269   @MyBatisResourcesScan(typeHandlerPackages = { "org.mybatis.spring.nativex.component",
    +270       "org.mybatis.spring.nativex.component2" })
    +271   @Configuration
    +272   static class ConfigurationForScanTypeHandlerWithMultiPackage {
    +273   }
    +274 
    +275   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
    +276   @Configuration
    +277   static class ConfigurationForScanMapperLocations {
    +278   }
    +279 
    +280   @MyBatisResourcesScan(mapperLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" })
    +281   @Configuration
    +282   static class ConfigurationForScanMapperLocationsWithMultiPattern {
    +283   }
    +284 
    +285   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", typeAccesses = TypeAccess.DECLARED_CLASSES)
    +286   @Configuration
    +287   static class ConfigurationForScanReflectionType {
    +288   }
    +289 
    +290   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", reflectionTypeSupperType = StandardEntity.class, typeAccesses = TypeAccess.DECLARED_CLASSES)
    +291   @Configuration
    +292   static class ConfigurationForScanReflectionTypeWithSuperType {
    +293   }
    +294 
    +295   @MyBatisResourcesScan(reflectionTypePackages = { "org.mybatis.spring.nativex.entity",
    +296       "org.mybatis.spring.nativex.component" })
    +297   @Configuration
    +298   static class ConfigurationForScanReflectionTypeWithMultiPackage {
    +299   }
    +300 
    +301   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub1/*.*")
    +302   @Configuration
    +303   static class ConfigurationForScanResourceLocations {
    +304   }
    +305 
    +306   @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/gradle_output/*.*" })
    +307   @Configuration
    +308   static class ConfigurationForScanResourceLocationsWithGradleOutputResources {
    +309   }
    +310 
    +311   @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" })
    +312   @Configuration
    +313   static class ConfigurationForScanResourceLocationsWithMultiPattern {
    +314   }
    +315 
    +316   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
    +317   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
    +318   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
    +319   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2")
    +320   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*")
    +321   @Configuration
    +322   static class ConfigurationForRepeat {
    +323 
    +324   }
    +325 
    +326   private static class SimulateGradleBuildResourcesURLClassLoader extends URLClassLoader {
    +327 
    +328     public SimulateGradleBuildResourcesURLClassLoader(String path, ClassLoader classLoader)
    +329         throws MalformedURLException {
    +330       super(new URL[] { new File(path).toURI().toURL() }, classLoader);
    +331     }
    +332 
    +333     @Override
    +334     public void addURL(URL url) {
    +335       super.addURL(url);
    +336     }
    +337 
    +338   }
    +339 
    +340 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html b/en/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html new file mode 100644 index 0000000..afdf921 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html @@ -0,0 +1,158 @@ + + + +MyBatisScannedResourcesNativeConfigurationProcessorTest xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.*;
    +19  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
    +20  
    +21  import java.util.Map;
    +22  import java.util.Set;
    +23  import java.util.stream.Collectors;
    +24  
    +25  import org.assertj.core.api.Assertions;
    +26  import org.junit.jupiter.api.Test;
    +27  import org.mybatis.spring.nativex.component.BarTypeHandler;
    +28  import org.mybatis.spring.nativex.component.FooTypeHandler;
    +29  import org.mybatis.spring.nativex.component.TypeHandlers;
    +30  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
    +31  import org.mybatis.spring.nativex.entity.City;
    +32  import org.mybatis.spring.nativex.entity.Country;
    +33  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry;
    +34  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
    +35  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
    +36  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    +37  import org.springframework.context.annotation.Configuration;
    +38  import org.springframework.nativex.hint.TypeAccess;
    +39  
    +40  class MyBatisScannedResourcesNativeConfigurationProcessorTest {
    +41  
    +42    private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
    +43        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
    +44        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
    +45  
    +46    @Test
    +47    void empty() {
    +48      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +49      context.refresh();
    +50      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
    +51      // reflection hint
    +52      {
    +53        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
    +54            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
    +55        Assertions.assertThat(entries).isEmpty();
    +56      }
    +57      // resource hint
    +58      {
    +59        Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
    +60        Assertions.assertThat(resources).isEmpty();
    +61      }
    +62    }
    +63  
    +64    @Test
    +65    void one() {
    +66      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +67      context.registerBean(ConfigurationForOne.class);
    +68      context.refresh();
    +69      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
    +70      // reflection hint
    +71      {
    +72        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
    +73            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
    +74        Assertions.assertThat(entries).hasSize(2);
    +75        Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
    +76            .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
    +77        Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
    +78            .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
    +79      }
    +80      // resource hint
    +81      {
    +82        Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
    +83        Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
    +84            "mapper/sub1/FooMapper.xml");
    +85      }
    +86    }
    +87  
    +88    @Test
    +89    void multi() {
    +90      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    +91      context.registerBean(ConfigurationForMulti.class);
    +92      context.refresh();
    +93      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
    +94      // reflection hint
    +95      {
    +96        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
    +97            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
    +98        Assertions.assertThat(entries).hasSize(6);
    +99        Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
    +100           .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
    +101       Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
    +102           .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
    +103       Assertions.assertThat(entries.get(FooTypeHandler.class))
    +104           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
    +105       Assertions.assertThat(entries.get(BarTypeHandler.class))
    +106           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
    +107       Assertions.assertThat(entries.get(AnyTypeHandler.class))
    +108           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
    +109       Assertions.assertThat(entries.get(TypeHandlers.InnerTypeHandler.class))
    +110           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
    +111     }
    +112     // resource hint
    +113     {
    +114       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
    +115       Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
    +116           "mapper/sub1/FooMapper.xml", "mapper/sub2/AnyMapper.xml");
    +117     }
    +118 
    +119   }
    +120 
    +121   private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) {
    +122     NativeConfigurationRegistry registry = new NativeConfigurationRegistry();
    +123     new MyBatisScannedResourcesNativeConfigurationProcessor().process(beanFactory, registry);
    +124     return registry;
    +125   }
    +126 
    +127   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", mapperLocationPatterns = "mapper/sub1/*.*", typeAccesses = {
    +128       TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS })
    +129   @Configuration
    +130   static class ConfigurationForOne {
    +131 
    +132   }
    +133 
    +134   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAccesses = {
    +135       TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS })
    +136   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
    +137   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
    +138   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2")
    +139   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*")
    +140   @Configuration
    +141   static class ConfigurationForMulti {
    +142 
    +143   }
    +144 
    +145 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html b/en/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html new file mode 100644 index 0000000..514b14f --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html @@ -0,0 +1,181 @@ + + + +MyBatisSpringNativeAutoConfigurationTest xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.autoconfigure;
    +17  
    +18  import java.util.stream.Collectors;
    +19  
    +20  import org.apache.ibatis.session.SqlSessionFactory;
    +21  import org.assertj.core.api.Assertions;
    +22  import org.junit.jupiter.api.AfterEach;
    +23  import org.junit.jupiter.api.BeforeEach;
    +24  import org.junit.jupiter.api.Test;
    +25  import org.mybatis.spring.nativex.MyBatisResourcesScan;
    +26  import org.mybatis.spring.nativex.component.AbstractTypeHandler;
    +27  import org.mybatis.spring.nativex.component.BarService;
    +28  import org.mybatis.spring.nativex.component.BarTypeHandler;
    +29  import org.mybatis.spring.nativex.component.FooTypeHandler;
    +30  import org.mybatis.spring.nativex.component.TypeHandlers;
    +31  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
    +32  import org.mybatis.spring.nativex.entity.City;
    +33  import org.mybatis.spring.nativex.entity.Country;
    +34  import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
    +35  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    +36  import org.springframework.context.annotation.Configuration;
    +37  
    +38  class MyBatisSpringNativeAutoConfigurationTest {
    +39  
    +40    private AnnotationConfigApplicationContext context;
    +41  
    +42    @BeforeEach
    +43    void init() {
    +44      this.context = new AnnotationConfigApplicationContext();
    +45    }
    +46  
    +47    @AfterEach
    +48    void closeContext() {
    +49      if (this.context != null) {
    +50        this.context.close();
    +51      }
    +52    }
    +53  
    +54    @Test
    +55    void empty() {
    +56      this.context.register(EmptyConfiguration.class);
    +57      this.context.refresh();
    +58      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
    +59      Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(80);
    +60      Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(40);
    +61      Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty();
    +62    }
    +63  
    +64    @Test
    +65    void single() {
    +66      this.context.register(SingleConfiguration.class);
    +67      this.context.refresh();
    +68      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
    +69      {
    +70        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82);
    +71        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city"))
    +72            .isEqualTo(City.class);
    +73        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country"))
    +74            .isEqualTo(Country.class);
    +75      }
    +76      {
    +77        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43);
    +78        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +79            .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +80        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +81            .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +82        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +83            .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +84        Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder(
    +85            "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select");
    +86      }
    +87    }
    +88  
    +89    @Test
    +90    void singleWithoutMapperLocation() {
    +91      this.context.register(SingleConfigurationWithoutMapperLocation.class);
    +92      this.context.refresh();
    +93      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
    +94      Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82);
    +95      Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43);
    +96      Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty();
    +97    }
    +98  
    +99    @Test
    +100   void multi() {
    +101     this.context.register(MultiConfiguration.class);
    +102     this.context.refresh();
    +103     SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
    +104     {
    +105       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(87);
    +106       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city"))
    +107           .isEqualTo(City.class);
    +108       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country"))
    +109           .isEqualTo(Country.class);
    +110       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("abstracttypehandler"))
    +111           .isEqualTo(AbstractTypeHandler.class);
    +112       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("barservice"))
    +113           .isEqualTo(BarService.class);
    +114       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("bartypehandler"))
    +115           .isEqualTo(BarTypeHandler.class);
    +116       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("footypehandler"))
    +117           .isEqualTo(FooTypeHandler.class);
    +118       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("typehandlers"))
    +119           .isEqualTo(TypeHandlers.class);
    +120     }
    +121     {
    +122       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(44);
    +123       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +124           .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +125       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +126           .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +127       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +128           .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +129       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
    +130           .filter(AnyTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
    +131       Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder(
    +132           "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select");
    +133     }
    +134   }
    +135 
    +136   @EnableAutoConfiguration
    +137   @Configuration
    +138   static class EmptyConfiguration {
    +139 
    +140   }
    +141 
    +142   @EnableAutoConfiguration
    +143   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component", mapperLocationPatterns = "mapper/**/*.xml")
    +144   @Configuration
    +145   static class SingleConfiguration {
    +146 
    +147   }
    +148 
    +149   @EnableAutoConfiguration
    +150   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component")
    +151   @Configuration
    +152   static class SingleConfigurationWithoutMapperLocation {
    +153 
    +154   }
    +155 
    +156   @EnableAutoConfiguration
    +157   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
    +158   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.component")
    +159   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
    +160   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component2")
    +161   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.xml")
    +162   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub2/*.xml")
    +163   @Configuration
    +164   static class MultiConfiguration {
    +165 
    +166   }
    +167 
    +168 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html new file mode 100644 index 0000000..eec6575 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + +

    org.mybatis.spring.nativex.autoconfigure

    + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..7a501f5 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.autoconfigure

    +
    + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html b/en/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html new file mode 100644 index 0000000..bb34d19 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html @@ -0,0 +1,34 @@ + + + +AbstractTypeHandler xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  import org.apache.ibatis.type.BaseTypeHandler;
    +19  
    +20  public abstract class AbstractTypeHandler<T> extends BaseTypeHandler<T> {
    +21  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/BarService.html b/en/xref-test/org/mybatis/spring/nativex/component/BarService.html new file mode 100644 index 0000000..1a057d2 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/BarService.html @@ -0,0 +1,32 @@ + + + +BarService xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  public class BarService {
    +19  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html b/en/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html new file mode 100644 index 0000000..4739d37 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html @@ -0,0 +1,59 @@ + + + +BarTypeHandler xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  import java.sql.CallableStatement;
    +19  import java.sql.PreparedStatement;
    +20  import java.sql.ResultSet;
    +21  
    +22  import org.apache.ibatis.type.BaseTypeHandler;
    +23  import org.apache.ibatis.type.JdbcType;
    +24  
    +25  public class BarTypeHandler extends BaseTypeHandler<Integer> {
    +26  
    +27    @Override
    +28    public void setNonNullParameter(PreparedStatement ps, int i, Integer parameter, JdbcType jdbcType) {
    +29    }
    +30  
    +31    @Override
    +32    public Integer getNullableResult(ResultSet rs, String columnName) {
    +33      return null;
    +34    }
    +35  
    +36    @Override
    +37    public Integer getNullableResult(ResultSet rs, int columnIndex) {
    +38      return null;
    +39    }
    +40  
    +41    @Override
    +42    public Integer getNullableResult(CallableStatement cs, int columnIndex) {
    +43      return null;
    +44    }
    +45  
    +46  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html b/en/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html new file mode 100644 index 0000000..f4cb5f4 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html @@ -0,0 +1,59 @@ + + + +FooTypeHandler xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  import java.sql.CallableStatement;
    +19  import java.sql.PreparedStatement;
    +20  import java.sql.ResultSet;
    +21  
    +22  import org.apache.ibatis.type.BaseTypeHandler;
    +23  import org.apache.ibatis.type.JdbcType;
    +24  
    +25  public class FooTypeHandler extends BaseTypeHandler<String> {
    +26  
    +27    @Override
    +28    public void setNonNullParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) {
    +29    }
    +30  
    +31    @Override
    +32    public String getNullableResult(ResultSet rs, String columnName) {
    +33      return null;
    +34    }
    +35  
    +36    @Override
    +37    public String getNullableResult(ResultSet rs, int columnIndex) {
    +38      return null;
    +39    }
    +40  
    +41    @Override
    +42    public String getNullableResult(CallableStatement cs, int columnIndex) {
    +43      return null;
    +44    }
    +45  
    +46  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html b/en/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html new file mode 100644 index 0000000..9fed1f2 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html @@ -0,0 +1,33 @@ + + + +MyAnnotation xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  @SuppressWarnings("unused")
    +19  public @interface MyAnnotation {
    +20  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html b/en/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html new file mode 100644 index 0000000..8b115f1 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html @@ -0,0 +1,35 @@ + + + +MyTypeHandlerInterface xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  import org.apache.ibatis.type.TypeHandler;
    +19  
    +20  @SuppressWarnings("unused")
    +21  public interface MyTypeHandlerInterface<T> extends TypeHandler<T> {
    +22  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html b/en/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html new file mode 100644 index 0000000..86cb014 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html @@ -0,0 +1,70 @@ + + + +TypeHandlers xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component;
    +17  
    +18  import java.sql.CallableStatement;
    +19  import java.sql.PreparedStatement;
    +20  import java.sql.ResultSet;
    +21  
    +22  import org.apache.ibatis.type.JdbcType;
    +23  import org.apache.ibatis.type.TypeHandler;
    +24  
    +25  public class TypeHandlers {
    +26  
    +27    @SuppressWarnings("unused")
    +28    BarTypeHandler anonymous = new BarTypeHandler() {
    +29      @Override
    +30      public String toString() {
    +31        return super.toString();
    +32      }
    +33    };
    +34  
    +35    public static class InnerTypeHandler implements TypeHandler<String> {
    +36  
    +37      @Override
    +38      public void setParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) {
    +39  
    +40      }
    +41  
    +42      @Override
    +43      public String getResult(ResultSet rs, String columnName) {
    +44        return null;
    +45      }
    +46  
    +47      @Override
    +48      public String getResult(ResultSet rs, int columnIndex) {
    +49        return null;
    +50      }
    +51  
    +52      @Override
    +53      public String getResult(CallableStatement cs, int columnIndex) {
    +54        return null;
    +55      }
    +56    }
    +57  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/component/package-frame.html new file mode 100644 index 0000000..d02d118 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/package-frame.html @@ -0,0 +1,42 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component + + + +

    org.mybatis.spring.nativex.component

    + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/component/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/component/package-summary.html new file mode 100644 index 0000000..ab467b5 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component/package-summary.html @@ -0,0 +1,142 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.component

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html b/en/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html new file mode 100644 index 0000000..d4f50f6 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html @@ -0,0 +1,60 @@ + + + +AnyTypeHandler xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.component2;
    +17  
    +18  import java.math.BigDecimal;
    +19  import java.sql.CallableStatement;
    +20  import java.sql.PreparedStatement;
    +21  import java.sql.ResultSet;
    +22  
    +23  import org.apache.ibatis.type.BaseTypeHandler;
    +24  import org.apache.ibatis.type.JdbcType;
    +25  
    +26  public class AnyTypeHandler extends BaseTypeHandler<BigDecimal> {
    +27  
    +28    @Override
    +29    public void setNonNullParameter(PreparedStatement ps, int i, BigDecimal parameter, JdbcType jdbcType) {
    +30    }
    +31  
    +32    @Override
    +33    public BigDecimal getNullableResult(ResultSet rs, String columnName) {
    +34      return null;
    +35    }
    +36  
    +37    @Override
    +38    public BigDecimal getNullableResult(ResultSet rs, int columnIndex) {
    +39      return null;
    +40    }
    +41  
    +42    @Override
    +43    public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) {
    +44      return null;
    +45    }
    +46  
    +47  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/component2/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/component2/package-frame.html new file mode 100644 index 0000000..beecf34 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component2/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component2 + + + +

    org.mybatis.spring.nativex.component2

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/component2/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/component2/package-summary.html new file mode 100644 index 0000000..de4f155 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/component2/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component2 + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.component2

    +
    +
    +
      +
    • + + + + + + + + + + + + +
      Class Summary 
      Class
      + AnyTypeHandler +
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/entity/City.html b/en/xref-test/org/mybatis/spring/nativex/entity/City.html new file mode 100644 index 0000000..230ade7 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/entity/City.html @@ -0,0 +1,39 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.entity;
    +17  
    +18  public class City {
    +19    @SuppressWarnings("unused")
    +20    City anonymous = new City() {
    +21      @Override
    +22      public String toString() {
    +23        return super.toString();
    +24      }
    +25    };
    +26  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/entity/Country.html b/en/xref-test/org/mybatis/spring/nativex/entity/Country.html new file mode 100644 index 0000000..0903063 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/entity/Country.html @@ -0,0 +1,34 @@ + + + +Country xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.entity;
    +17  
    +18  import org.mybatis.spring.nativex.marker.StandardEntity;
    +19  
    +20  public class Country extends StandardEntity {
    +21  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html b/en/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html new file mode 100644 index 0000000..58e6619 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html @@ -0,0 +1,33 @@ + + + +EntityMarkerAnnotation xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.entity;
    +17  
    +18  @SuppressWarnings("unused")
    +19  public @interface EntityMarkerAnnotation {
    +20  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html b/en/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html new file mode 100644 index 0000000..ea4d598 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html @@ -0,0 +1,38 @@ + + + +EntityMarkerInterface xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.entity;
    +17  
    +18  @SuppressWarnings("unused")
    +19  public interface EntityMarkerInterface {
    +20  
    +21    class MemberEntity {
    +22  
    +23    }
    +24  
    +25  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/entity/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/entity/package-frame.html new file mode 100644 index 0000000..7fd8b29 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/entity/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.entity + + + +

    org.mybatis.spring.nativex.entity

    + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/entity/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/entity/package-summary.html new file mode 100644 index 0000000..68ad0dd --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/entity/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.entity + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.entity

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html b/en/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html new file mode 100644 index 0000000..14f1f67 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html @@ -0,0 +1,32 @@ + + + +Sample2Mapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.mapper;
    +17  
    +18  public class Sample2Mapper {
    +19  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html b/en/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html new file mode 100644 index 0000000..7d4fa50 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html @@ -0,0 +1,32 @@ + + + +Sample3Mapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.mapper;
    +17  
    +18  public class Sample3Mapper {
    +19  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html b/en/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html new file mode 100644 index 0000000..4aed177 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html @@ -0,0 +1,120 @@ + + + +SampleMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.mapper;
    +17  
    +18  import java.math.BigDecimal;
    +19  import java.util.Collection;
    +20  import java.util.Collections;
    +21  import java.util.Date;
    +22  
    +23  import org.apache.ibatis.annotations.InsertProvider;
    +24  import org.apache.ibatis.annotations.SelectProvider;
    +25  
    +26  public interface SampleMapper {
    +27  
    +28    Sample find(SampleParam param);
    +29  
    +30    default Collection<Sample2> find(Collection<Sample2Param> params) {
    +31      return Collections.emptyList();
    +32    }
    +33  
    +34    @SelectProvider(SelectProviderClass1.class)
    +35    String select1();
    +36  
    +37    @SelectProvider(type = SelectProviderClass2.class)
    +38    BigDecimal select2();
    +39  
    +40    @InsertProvider(InsertProviderClass1.class)
    +41    void insert1();
    +42  
    +43    @InsertProvider(type = InsertProviderClass2.class)
    +44    boolean insert2();
    +45  
    +46    @InsertProvider(UpdateProviderClass1.class)
    +47    Long update1();
    +48  
    +49    @InsertProvider(type = UpdateProviderClass2.class)
    +50    Date update2();
    +51  
    +52    @InsertProvider(DeleteProviderClass1.class)
    +53    Short delete1();
    +54  
    +55    @InsertProvider(type = DeleteProviderClass2.class)
    +56    Object delete2();
    +57  
    +58    int count();
    +59  
    +60    class SampleParam {
    +61  
    +62    }
    +63  
    +64    class Sample {
    +65  
    +66    }
    +67  
    +68    class Sample2Param {
    +69  
    +70    }
    +71  
    +72    class Sample2 {
    +73  
    +74    }
    +75  
    +76    class SelectProviderClass1 {
    +77  
    +78    }
    +79  
    +80    class SelectProviderClass2 {
    +81  
    +82    }
    +83  
    +84    class InsertProviderClass1 {
    +85  
    +86    }
    +87  
    +88    class InsertProviderClass2 {
    +89  
    +90    }
    +91  
    +92    class UpdateProviderClass1 {
    +93  
    +94    }
    +95  
    +96    class UpdateProviderClass2 {
    +97  
    +98    }
    +99  
    +100   class DeleteProviderClass1 {
    +101 
    +102   }
    +103 
    +104   class DeleteProviderClass2 {
    +105 
    +106   }
    +107 }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html new file mode 100644 index 0000000..f1c7dee --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html @@ -0,0 +1,63 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.mapper + + + +

    org.mybatis.spring.nativex.mapper

    + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html new file mode 100644 index 0000000..326e6ee --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html @@ -0,0 +1,177 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.mapper + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.mapper

    +
    + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html b/en/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html new file mode 100644 index 0000000..795a45d --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html @@ -0,0 +1,32 @@ + + + +StandardEntity xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.marker;
    +17  
    +18  public class StandardEntity {
    +19  }
    +
    +
    + + + diff --git a/en/xref-test/org/mybatis/spring/nativex/marker/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/marker/package-frame.html new file mode 100644 index 0000000..b64ede8 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/marker/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.marker + + + +

    org.mybatis.spring.nativex.marker

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/marker/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/marker/package-summary.html new file mode 100644 index 0000000..150f7ab --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/marker/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.marker + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.marker

    +
    +
    +
      +
    • + + + + + + + + + + + + +
      Class Summary 
      Class
      + StandardEntity +
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/package-frame.html b/en/xref-test/org/mybatis/spring/nativex/package-frame.html new file mode 100644 index 0000000..356fd92 --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/package-frame.html @@ -0,0 +1,78 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + +

    org.mybatis.spring.nativex

    + + + \ No newline at end of file diff --git a/en/xref-test/org/mybatis/spring/nativex/package-summary.html b/en/xref-test/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..28db8bc --- /dev/null +++ b/en/xref-test/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,202 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex

    +
    + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/overview-frame.html b/en/xref-test/overview-frame.html new file mode 100644 index 0000000..bfbae57 --- /dev/null +++ b/en/xref-test/overview-frame.html @@ -0,0 +1,42 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + +

    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference

    + + +

     

    + + + diff --git a/en/xref-test/overview-summary.html b/en/xref-test/overview-summary.html new file mode 100644 index 0000000..de9e10c --- /dev/null +++ b/en/xref-test/overview-summary.html @@ -0,0 +1,122 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference

    +
    + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref-test/stylesheet.css b/en/xref-test/stylesheet.css new file mode 100644 index 0000000..9e10f29 --- /dev/null +++ b/en/xref-test/stylesheet.css @@ -0,0 +1,626 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} + +/* JXR style sheet */ +a.jxr_linenumber:link { + color: #00f; +} + +a.jxr_linenumber:visited { + color: #00a; +} + +a.jxr_linenumber:active, a.jxr_linenumber:hover { + color: #f30 !important; +} + +em.comment { + color: #390; +} + +.string { + color: #009; +} + +#overview { + padding: 2px; + font-size: 90%; + font-family: Helvetica, Arial, sans-serif; +} + +hr { + color: #000; +} + +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} + diff --git a/en/xref/allclasses-frame.html b/en/xref/allclasses-frame.html new file mode 100644 index 0000000..6c06988 --- /dev/null +++ b/en/xref/allclasses-frame.html @@ -0,0 +1,17 @@ + + + + + + + All Classes + + + +

    All Classes

    +
    +
      +
    +
    + + diff --git a/en/xref/index.html b/en/xref/index.html new file mode 100644 index 0000000..2896d04 --- /dev/null +++ b/en/xref/index.html @@ -0,0 +1,75 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html b/en/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..cd7b010 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,121 @@ + + + +MyBatisCoreNativeConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  
    +27  import org.apache.ibatis.cache.decorators.FifoCache;
    +28  import org.apache.ibatis.cache.decorators.LruCache;
    +29  import org.apache.ibatis.cache.decorators.SoftCache;
    +30  import org.apache.ibatis.cache.decorators.WeakCache;
    +31  import org.apache.ibatis.cache.impl.PerpetualCache;
    +32  import org.apache.ibatis.javassist.util.proxy.ProxyFactory;
    +33  import org.apache.ibatis.javassist.util.proxy.RuntimeSupport;
    +34  import org.apache.ibatis.logging.Log;
    +35  import org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl;
    +36  import org.apache.ibatis.logging.jdk14.Jdk14LoggingImpl;
    +37  import org.apache.ibatis.logging.log4j2.Log4j2Impl;
    +38  import org.apache.ibatis.logging.nologging.NoLoggingImpl;
    +39  import org.apache.ibatis.logging.slf4j.Slf4jImpl;
    +40  import org.apache.ibatis.logging.stdout.StdOutImpl;
    +41  import org.apache.ibatis.scripting.defaults.RawLanguageDriver;
    +42  import org.apache.ibatis.scripting.xmltags.XMLLanguageDriver;
    +43  import org.apache.ibatis.session.SqlSessionFactory;
    +44  import org.springframework.nativex.hint.InitializationHint;
    +45  import org.springframework.nativex.hint.InitializationTime;
    +46  import org.springframework.nativex.hint.NativeHint;
    +47  import org.springframework.nativex.hint.ResourceHint;
    +48  import org.springframework.nativex.hint.TypeHint;
    +49  import org.springframework.nativex.type.NativeConfiguration;
    +50  
    +51  /**
    +52   * Registers hints to make a MyBatis Core components work in a Spring Native context.
    +53   *
    +54   * @author Kazuki Shimizu
    +55   * @author Josh Long
    +56   *
    +57   * @see MyBatisMapperNativeConfigurationProcessor
    +58   */
    +59  // @formatter:off
    +60  @NativeHint(
    +61      trigger = SqlSessionFactory.class,
    +62      initialization = @InitializationHint(
    +63          initTime = InitializationTime.BUILD,
    +64          types = org.apache.ibatis.type.JdbcType.class
    +65      ),
    +66      options = "--initialize-at-build-time=org.apache.ibatis.type.JdbcType",
    +67      resources = @ResourceHint(
    +68          patterns = {
    +69              "org/apache/ibatis/builder/xml/.*.dtd",
    +70              "org/apache/ibatis/builder/xml/.*.xsd"
    +71          }
    +72      )
    +73  )
    +74  @TypeHint(
    +75      types = {
    +76          RawLanguageDriver.class,
    +77          XMLLanguageDriver.class,
    +78          RuntimeSupport.class,
    +79          ProxyFactory.class,
    +80          Slf4jImpl.class,
    +81          Log.class,
    +82          JakartaCommonsLoggingImpl.class,
    +83          Log4j2Impl.class,
    +84          Jdk14LoggingImpl.class,
    +85          StdOutImpl.class,
    +86          NoLoggingImpl.class,
    +87          SqlSessionFactory.class,
    +88          PerpetualCache.class,
    +89          FifoCache.class,
    +90          LruCache.class,
    +91          SoftCache.class,
    +92          WeakCache.class
    +93      },
    +94      typeNames = "org.apache.ibatis.logging.log4j.Log4jImpl",
    +95      access = {
    +96          PUBLIC_CONSTRUCTORS,
    +97          PUBLIC_CLASSES,
    +98          PUBLIC_FIELDS,
    +99          PUBLIC_METHODS,
    +100         DECLARED_CLASSES,
    +101         DECLARED_CONSTRUCTORS,
    +102         DECLARED_FIELDS,
    +103         DECLARED_METHODS
    +104     }
    +105 )
    +106 // @formatter:on
    +107 public class MyBatisCoreNativeConfiguration implements NativeConfiguration {
    +108 }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html b/en/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..7685eab --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,85 @@ + + + +MyBatisDynamicSqlNativeConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  
    +27  import org.mybatis.dynamic.sql.delete.render.DefaultDeleteStatementProvider;
    +28  import org.mybatis.dynamic.sql.insert.render.DefaultGeneralInsertStatementProvider;
    +29  import org.mybatis.dynamic.sql.insert.render.DefaultInsertStatementProvider;
    +30  import org.mybatis.dynamic.sql.insert.render.DefaultMultiRowInsertStatementProvider;
    +31  import org.mybatis.dynamic.sql.select.render.DefaultSelectStatementProvider;
    +32  import org.mybatis.dynamic.sql.update.render.DefaultUpdateStatementProvider;
    +33  import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
    +34  import org.mybatis.dynamic.sql.util.springbatch.SpringBatchProviderAdapter;
    +35  import org.springframework.nativex.hint.NativeHint;
    +36  import org.springframework.nativex.hint.TypeHint;
    +37  import org.springframework.nativex.type.NativeConfiguration;
    +38  
    +39  /**
    +40   * Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
    +41   *
    +42   * @author Kazuki Shimizu
    +43   */
    +44  // @formatter:off
    +45  @NativeHint(
    +46      trigger = SqlProviderAdapter.class
    +47  )
    +48  @TypeHint(
    +49      types = {
    +50          SqlProviderAdapter.class,
    +51          SpringBatchProviderAdapter.class,
    +52          DefaultDeleteStatementProvider.class,
    +53          DefaultGeneralInsertStatementProvider.class,
    +54          DefaultInsertStatementProvider.class,
    +55          DefaultMultiRowInsertStatementProvider.class,
    +56          DefaultSelectStatementProvider.class,
    +57          DefaultUpdateStatementProvider.class
    +58      },
    +59      access = {
    +60          PUBLIC_CONSTRUCTORS,
    +61          PUBLIC_CLASSES,
    +62          PUBLIC_FIELDS,
    +63          PUBLIC_METHODS,
    +64          DECLARED_CLASSES,
    +65          DECLARED_CONSTRUCTORS,
    +66          DECLARED_FIELDS,
    +67          DECLARED_METHODS
    +68      }
    +69  )
    +70  // @formatter:on
    +71  public class MyBatisDynamicSqlNativeConfiguration implements NativeConfiguration {
    +72  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html b/en/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..cfd2a55 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,83 @@ + + + +MyBatisFreeMarkerNativeConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  
    +27  import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver;
    +28  import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig;
    +29  import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider;
    +30  import org.springframework.nativex.hint.NativeHint;
    +31  import org.springframework.nativex.hint.ResourceHint;
    +32  import org.springframework.nativex.hint.TypeHint;
    +33  import org.springframework.nativex.type.NativeConfiguration;
    +34  
    +35  /**
    +36   * Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
    +37   *
    +38   * @author Kazuki Shimizu
    +39   */
    +40  // @formatter:off
    +41  @NativeHint(
    +42      trigger = FreeMarkerLanguageDriver.class,
    +43      resources = @ResourceHint(
    +44          patterns = {
    +45              "mybatis-freemarker.properties",
    +46              "freemarker/version.properties",
    +47              "freemarker/ext/beans/DefaultMemberAccessPolicy-rules"
    +48          }
    +49      )
    +50  )
    +51  @TypeHint(
    +52      types = {
    +53          FreeMarkerLanguageDriver.class,
    +54          FreeMarkerLanguageDriverConfig.class,
    +55          TemplateFilePathProvider.class
    +56      },
    +57      access = {
    +58          PUBLIC_CONSTRUCTORS,
    +59          PUBLIC_CLASSES,
    +60          PUBLIC_FIELDS,
    +61          PUBLIC_METHODS,
    +62          DECLARED_CLASSES,
    +63          DECLARED_CONSTRUCTORS,
    +64          DECLARED_FIELDS,
    +65          DECLARED_METHODS
    +66      }
    +67  )
    +68  // @formatter:on
    +69  public class MyBatisFreeMarkerNativeConfiguration implements NativeConfiguration {
    +70  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html b/en/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html new file mode 100644 index 0000000..81c5427 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html @@ -0,0 +1,91 @@ + + + +MyBatisMapperFactoryBeanPostProcessor xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import org.apache.commons.logging.Log;
    +19  import org.apache.commons.logging.LogFactory;
    +20  import org.mybatis.spring.mapper.MapperFactoryBean;
    +21  import org.springframework.beans.factory.BeanFactory;
    +22  import org.springframework.beans.factory.BeanFactoryAware;
    +23  import org.springframework.beans.factory.config.ConfigurableBeanFactory;
    +24  import org.springframework.beans.factory.support.RootBeanDefinition;
    +25  import org.springframework.context.annotation.BeanDefinitionPostProcessor;
    +26  import org.springframework.core.ResolvableType;
    +27  import org.springframework.util.ClassUtils;
    +28  
    +29  /**
    +30   * The {@code BeanDefinitionPostProcessor} for customizing a {@code MapperFactoryBean}.
    +31   *
    +32   * @author Stéphane Nicoll
    +33   * @author Kazuki Shimizu
    +34   */
    +35  class MyBatisMapperFactoryBeanPostProcessor implements BeanDefinitionPostProcessor, BeanFactoryAware {
    +36  
    +37    private static final Log LOG = LogFactory.getLog(MyBatisMapperFactoryBeanPostProcessor.class);
    +38  
    +39    private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean";
    +40  
    +41    private ConfigurableBeanFactory beanFactory;
    +42  
    +43    @Override
    +44    public void setBeanFactory(BeanFactory beanFactory) {
    +45      this.beanFactory = (ConfigurableBeanFactory) beanFactory;
    +46    }
    +47  
    +48    @Override
    +49    public void postProcessBeanDefinition(String beanName, RootBeanDefinition beanDefinition) {
    +50      if (ClassUtils.isPresent(MAPPER_FACTORY_BEAN, this.beanFactory.getBeanClassLoader())) {
    +51        resolveMapperFactoryBeanTypeIfNecessary(beanDefinition);
    +52      }
    +53    }
    +54  
    +55    private void resolveMapperFactoryBeanTypeIfNecessary(RootBeanDefinition beanDefinition) {
    +56      if (!beanDefinition.hasBeanClass() || !MapperFactoryBean.class.isAssignableFrom(beanDefinition.getBeanClass())) {
    +57        return;
    +58      }
    +59      if (beanDefinition.getResolvableType().hasUnresolvableGenerics()) {
    +60        Class<?> mapperInterface = getMapperInterface(beanDefinition);
    +61        if (mapperInterface != null) {
    +62          // Exposes a generic type information to context for prevent early initializing
    +63          beanDefinition
    +64              .setTargetType(ResolvableType.forClassWithGenerics(beanDefinition.getBeanClass(), mapperInterface));
    +65        }
    +66      }
    +67    }
    +68  
    +69    private Class<?> getMapperInterface(RootBeanDefinition beanDefinition) {
    +70      try {
    +71        return (Class<?>) beanDefinition.getPropertyValues().get("mapperInterface");
    +72      } catch (Exception e) {
    +73        LOG.debug("Fail getting mapper interface type.", e);
    +74        return null;
    +75      }
    +76    }
    +77  
    +78  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html b/en/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..69c152d --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,136 @@ + + + +MyBatisMapperNativeConfigurationProcessor xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
    +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
    +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
    +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
    +30  
    +31  import java.lang.annotation.Annotation;
    +32  import java.lang.reflect.Method;
    +33  import java.util.function.Function;
    +34  
    +35  import org.apache.ibatis.annotations.DeleteProvider;
    +36  import org.apache.ibatis.annotations.InsertProvider;
    +37  import org.apache.ibatis.annotations.SelectProvider;
    +38  import org.apache.ibatis.annotations.UpdateProvider;
    +39  import org.mybatis.spring.mapper.MapperFactoryBean;
    +40  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor;
    +41  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
    +42  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry;
    +43  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry;
    +44  import org.springframework.beans.PropertyValue;
    +45  import org.springframework.beans.factory.config.BeanDefinition;
    +46  import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
    +47  import org.springframework.nativex.hint.TypeAccess;
    +48  import org.springframework.util.ClassUtils;
    +49  import org.springframework.util.ReflectionUtils;
    +50  
    +51  /**
    +52   * Finds and registers reflection hints for all scanned mappers in the beanFactory.
    +53   *
    +54   * @author Kazuki Shimizu
    +55   * @author Josh Long
    +56   */
    +57  public class MyBatisMapperNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor {
    +58  
    +59    private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean";
    +60  
    +61    private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
    +62        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
    +63        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
    +64  
    +65    /**
    +66     * {@inheritDoc}
    +67     */
    +68    @Override
    +69    public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) {
    +70      if (!ClassUtils.isPresent(MAPPER_FACTORY_BEAN, beanFactory.getBeanClassLoader())) {
    +71        return;
    +72      }
    +73      String[] beanNames = beanFactory.getBeanNamesForType(MapperFactoryBean.class);
    +74      for (String beanName : beanNames) {
    +75        BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName.substring(1));
    +76        PropertyValue mapperInterface = beanDefinition.getPropertyValues().getPropertyValue("mapperInterface");
    +77        if (mapperInterface != null && mapperInterface.getValue() != null) {
    +78          Class<?> mapperInterfaceType = (Class<?>) mapperInterface.getValue();
    +79          if (mapperInterfaceType != null) {
    +80            registerReflectionTypeIfNecessary(mapperInterfaceType, registry);
    +81            registry.proxy().add(NativeProxyEntry.ofInterfaces(mapperInterfaceType));
    +82            registry.resources()
    +83                .add(NativeResourcesEntry.of(mapperInterfaceType.getName().replace('.', '/').concat(".xml")));
    +84            registerMapperRelationships(mapperInterfaceType, registry);
    +85          }
    +86        }
    +87      }
    +88    }
    +89  
    +90    private void registerMapperRelationships(Class<?> mapperInterfaceType, NativeConfigurationRegistry registry) {
    +91      Method[] methods = ReflectionUtils.getAllDeclaredMethods(mapperInterfaceType);
    +92      for (Method method : methods) {
    +93        if (method.getDeclaringClass() != Object.class) {
    +94          ReflectionUtils.makeAccessible(method);
    +95          registerSqlProviderTypes(method, registry, SelectProvider.class, SelectProvider::value, SelectProvider::type);
    +96          registerSqlProviderTypes(method, registry, InsertProvider.class, InsertProvider::value, InsertProvider::type);
    +97          registerSqlProviderTypes(method, registry, UpdateProvider.class, UpdateProvider::value, UpdateProvider::type);
    +98          registerSqlProviderTypes(method, registry, DeleteProvider.class, DeleteProvider::value, DeleteProvider::type);
    +99          Class<?> returnType = MyBatisMapperTypeUtils.resolveReturnClass(mapperInterfaceType, method);
    +100         registerReflectionTypeIfNecessary(returnType, registry);
    +101         MyBatisMapperTypeUtils.resolveParameterClasses(mapperInterfaceType, method)
    +102             .forEach(x -> registerReflectionTypeIfNecessary(x, registry));
    +103       }
    +104     }
    +105   }
    +106 
    +107   @SafeVarargs
    +108   private final <T extends Annotation> void registerSqlProviderTypes(Method method,
    +109       NativeConfigurationRegistry registry, Class<T> annotationType, Function<T, Class<?>>... providerTypeResolvers) {
    +110     for (T annotation : method.getAnnotationsByType(annotationType)) {
    +111       for (Function<T, Class<?>> providerTypeResolver : providerTypeResolvers) {
    +112         registerReflectionTypeIfNecessary(providerTypeResolver.apply(annotation), registry);
    +113       }
    +114     }
    +115   }
    +116 
    +117   private void registerReflectionTypeIfNecessary(Class<?> type, NativeConfigurationRegistry registry) {
    +118     if (!type.isPrimitive() && !type.getName().startsWith("java")) {
    +119       registry.reflection().forType(type).withAccess(TYPE_ACCESSES);
    +120     }
    +121   }
    +122 
    +123 }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html b/en/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html new file mode 100644 index 0000000..5c4011c --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html @@ -0,0 +1,79 @@ + + + +MyBatisMapperTypeUtils xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import java.lang.reflect.Method;
    +19  import java.lang.reflect.ParameterizedType;
    +20  import java.lang.reflect.Type;
    +21  import java.util.Map;
    +22  import java.util.Set;
    +23  import java.util.stream.Collectors;
    +24  import java.util.stream.Stream;
    +25  
    +26  import org.apache.ibatis.reflection.TypeParameterResolver;
    +27  
    +28  final class MyBatisMapperTypeUtils {
    +29  
    +30    private MyBatisMapperTypeUtils() {
    +31      // NOP
    +32    }
    +33  
    +34    static Class<?> resolveReturnClass(Class<?> mapperInterface, Method method) {
    +35      Type resolvedReturnType = TypeParameterResolver.resolveReturnType(method, mapperInterface);
    +36      return typeToClass(resolvedReturnType, method.getReturnType());
    +37    }
    +38  
    +39    static Set<Class<?>> resolveParameterClasses(Class<?> mapperInterface, Method method) {
    +40      return Stream.of(TypeParameterResolver.resolveParamTypes(method, mapperInterface))
    +41          .map(x -> typeToClass(x, x instanceof Class ? (Class<?>) x : Object.class)).collect(Collectors.toSet());
    +42    }
    +43  
    +44    private static Class<?> typeToClass(Type src, Class<?> fallback) {
    +45      Class<?> result = null;
    +46      if (src instanceof Class<?>) {
    +47        if (((Class<?>) src).isArray()) {
    +48          result = ((Class<?>) src).getComponentType();
    +49        } else {
    +50          result = (Class<?>) src;
    +51        }
    +52      } else if (src instanceof ParameterizedType) {
    +53        ParameterizedType parameterizedType = (ParameterizedType) src;
    +54        int index = (parameterizedType.getRawType() instanceof Class
    +55            && Map.class.isAssignableFrom((Class<?>) parameterizedType.getRawType())
    +56            && parameterizedType.getActualTypeArguments().length > 1) ? 1 : 0;
    +57        Type actualType = parameterizedType.getActualTypeArguments()[index];
    +58        result = typeToClass(actualType, fallback);
    +59      }
    +60      if (result == null) {
    +61        result = fallback;
    +62      }
    +63      return result;
    +64    }
    +65  
    +66  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html b/en/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html new file mode 100644 index 0000000..34b7642 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html @@ -0,0 +1,139 @@ + + + +MyBatisResourcesScan xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import java.lang.annotation.Repeatable;
    +19  import java.lang.annotation.Retention;
    +20  import java.lang.annotation.RetentionPolicy;
    +21  
    +22  import org.springframework.context.annotation.Import;
    +23  import org.springframework.nativex.hint.TypeAccess;
    +24  
    +25  /**
    +26   * The annotation that indicates scan rules of resources for running on native-image.
    +27   *
    +28   * @author Kazuki Shimizu
    +29   */
    +30  @Import(MyBatisScannedResourcesHolder.Registrar.class)
    +31  @Retention(RetentionPolicy.RUNTIME)
    +32  @Repeatable(MyBatisResourcesScan.List.class)
    +33  public @interface MyBatisResourcesScan {
    +34  
    +35    /**
    +36     * Return package names for scanning type aliases.
    +37     * <p>
    +38     * Default is none.
    +39     * </P>
    +40     *
    +41     * @return package names for scanning type aliases
    +42     */
    +43    String[] typeAliasesPackages() default {};
    +44  
    +45    /**
    +46     * Return the filter type(super class) for scanning type aliases.
    +47     * <p>
    +48     * Default is none.
    +49     * </P>
    +50     *
    +51     * @return the filter type for scanning type aliases
    +52     */
    +53    Class<?> typeAliasesSupperType() default void.class;
    +54  
    +55    /**
    +56     * Return package names for scanning type handler.
    +57     * <p>
    +58     * Default is none.
    +59     * </P>
    +60     *
    +61     * @return package names for scanning type handler
    +62     */
    +63    String[] typeHandlerPackages() default {};
    +64  
    +65    /**
    +66     * Return location patterns for scanning mapper xml file under classpath.
    +67     * <p>
    +68     * Default is none.
    +69     * </P>
    +70     *
    +71     * @return location patterns for scanning mapper xml file under classpath
    +72     */
    +73    String[] mapperLocationPatterns() default {};
    +74  
    +75    /**
    +76     * Return package names for scanning reflection hint type.
    +77     * <p>
    +78     * Default is none.
    +79     * </P>
    +80     *
    +81     * @return package names for scanning reflection hint type
    +82     */
    +83    String[] reflectionTypePackages() default {};
    +84  
    +85    /**
    +86     * Return the filter type(super class) for scanning reflection hint type.
    +87     * <p>
    +88     * Default is none.
    +89     * </P>
    +90     *
    +91     * @return the filter type for scanning reflection hint type
    +92     */
    +93    Class<?> reflectionTypeSupperType() default void.class;
    +94  
    +95    /**
    +96     * Return access scopes for applying scanned classes to reflection hint.
    +97     * <p>
    +98     * Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS,
    +99     * DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS,
    +100    * QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS.
    +101    * </P>
    +102    *
    +103    * @return access scopes for applying scanned classes to reflection hint
    +104    */
    +105   TypeAccess[] typeAccesses() default {};
    +106 
    +107   /**
    +108    * Return location patterns for adding resource hint file under classpath.
    +109    * <p>
    +110    * Default is none.
    +111    * </P>
    +112    *
    +113    * @return location patterns for adding resource hint file under classpath
    +114    */
    +115   String[] resourceLocationPatterns() default {};
    +116 
    +117   /**
    +118    * Repeatable annotation for {@link MyBatisResourcesScan}.
    +119    */
    +120   @Import(MyBatisScannedResourcesHolder.RepeatableRegistrar.class)
    +121   @Retention(RetentionPolicy.RUNTIME)
    +122   @interface List {
    +123     MyBatisResourcesScan[] value() default {};
    +124   }
    +125 
    +126 }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html b/en/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..cdf6352 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html @@ -0,0 +1,338 @@ + + + +MyBatisScannedResourcesHolder xref + + + +
    +1   /*
    +2    *    Copyright 2022-2023 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import java.io.IOException;
    +19  import java.io.UncheckedIOException;
    +20  import java.lang.reflect.Modifier;
    +21  import java.nio.file.Path;
    +22  import java.util.Collections;
    +23  import java.util.HashSet;
    +24  import java.util.Optional;
    +25  import java.util.Set;
    +26  import java.util.regex.Pattern;
    +27  import java.util.stream.Collectors;
    +28  import java.util.stream.Stream;
    +29  
    +30  import org.apache.commons.logging.Log;
    +31  import org.apache.commons.logging.LogFactory;
    +32  import org.apache.ibatis.type.TypeHandler;
    +33  import org.springframework.beans.factory.config.BeanDefinition;
    +34  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
    +35  import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
    +36  import org.springframework.beans.factory.support.BeanDefinitionRegistry;
    +37  import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
    +38  import org.springframework.core.annotation.AnnotationAttributes;
    +39  import org.springframework.core.io.ClassPathResource;
    +40  import org.springframework.core.io.Resource;
    +41  import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
    +42  import org.springframework.core.io.support.ResourcePatternResolver;
    +43  import org.springframework.core.type.AnnotationMetadata;
    +44  import org.springframework.core.type.ClassMetadata;
    +45  import org.springframework.core.type.classreading.CachingMetadataReaderFactory;
    +46  import org.springframework.core.type.classreading.MetadataReaderFactory;
    +47  import org.springframework.nativex.hint.TypeAccess;
    +48  import org.springframework.util.ClassUtils;
    +49  
    +50  /**
    +51   * The holder class that scanned resources using {@code @MyBatisResourcesScan}.
    +52   *
    +53   * @author Kazuki Shimizu
    +54   */
    +55  public class MyBatisScannedResourcesHolder {
    +56  
    +57    private Set<Class<?>> typeAliasesClasses;
    +58    private Set<Class<?>> typeHandlerClasses;
    +59    private Set<String> mapperLocations;
    +60    private Set<Class<?>> reflectionClasses;
    +61    private TypeAccess[] reflectionTypeAccesses;
    +62    private Set<String> resourceLocations;
    +63  
    +64    /**
    +65     * Return class list of scanned type aliases.
    +66     *
    +67     * @return class list of scanned type aliases
    +68     */
    +69    public Set<Class<?>> getTypeAliasesClasses() {
    +70      return typeAliasesClasses;
    +71    }
    +72  
    +73    /**
    +74     * Set class list of scanned type aliases.
    +75     *
    +76     * @param typeAliasClasses
    +77     *          class list of scanned type aliases
    +78     */
    +79    @SuppressWarnings("unused")
    +80    public void setTypeAliasesClasses(Set<Class<?>> typeAliasClasses) {
    +81      this.typeAliasesClasses = typeAliasClasses;
    +82    }
    +83  
    +84    /**
    +85     * Return class list of scanned type handler.
    +86     *
    +87     * @return class list of scanned type handler
    +88     */
    +89    public Set<Class<?>> getTypeHandlerClasses() {
    +90      return typeHandlerClasses;
    +91    }
    +92  
    +93    /**
    +94     * Set class list of scanned type handler.
    +95     *
    +96     * @param typeHandlerClasses
    +97     *          class list of scanned type handler
    +98     */
    +99    @SuppressWarnings("unused")
    +100   public void setTypeHandlerClasses(Set<Class<?>> typeHandlerClasses) {
    +101     this.typeHandlerClasses = typeHandlerClasses;
    +102   }
    +103 
    +104   /**
    +105    * Return location list of scanned mapper xml file.
    +106    *
    +107    * @return location list of scanned mapper xml file
    +108    */
    +109   public Set<String> getMapperLocations() {
    +110     return mapperLocations;
    +111   }
    +112 
    +113   /**
    +114    * Set location list of scanned mapper xml file.
    +115    *
    +116    * @param mapperLocations
    +117    *          location list of scanned mapper xml file
    +118    */
    +119   @SuppressWarnings("unused")
    +120   public void setMapperLocations(Set<String> mapperLocations) {
    +121     this.mapperLocations = mapperLocations;
    +122   }
    +123 
    +124   /**
    +125    * Set class list of scanned reflection hint type.
    +126    *
    +127    * @param reflectionClasses
    +128    *          class list of scanned reflection hint type
    +129    */
    +130   @SuppressWarnings("unused")
    +131   public void setReflectionClasses(Set<Class<?>> reflectionClasses) {
    +132     this.reflectionClasses = reflectionClasses;
    +133   }
    +134 
    +135   /**
    +136    * Return class list of scanned reflection hint type.
    +137    *
    +138    * @return class list of scanned reflection hint type
    +139    */
    +140   public Set<Class<?>> getReflectionClasses() {
    +141     return reflectionClasses;
    +142   }
    +143 
    +144   /**
    +145    * Set access scopes for applying reflection type that scanned.
    +146    *
    +147    * @param reflectionTypeAccesses
    +148    *          access scopes for applying reflection type that scanned
    +149    */
    +150   @SuppressWarnings("unused")
    +151   public void setReflectionTypeAccesses(TypeAccess[] reflectionTypeAccesses) {
    +152     this.reflectionTypeAccesses = reflectionTypeAccesses;
    +153   }
    +154 
    +155   /**
    +156    * Return access scopes for applying reflection type that scanned.
    +157    *
    +158    * @return access scopes for applying reflection type that scanned
    +159    */
    +160   public TypeAccess[] getReflectionTypeAccesses() {
    +161     return reflectionTypeAccesses;
    +162   }
    +163 
    +164   /**
    +165    * Set location list of adding resource hint file.
    +166    *
    +167    * @param resourceLocations
    +168    *          location list of adding resource hint file
    +169    */
    +170   @SuppressWarnings("unused")
    +171   public void setResourceLocations(Set<String> resourceLocations) {
    +172     this.resourceLocations = resourceLocations;
    +173   }
    +174 
    +175   /**
    +176    * Return location list of adding resource hint file.
    +177    *
    +178    * @return location list of adding resource hint file
    +179    */
    +180   public Set<String> getResourceLocations() {
    +181     return resourceLocations;
    +182   }
    +183 
    +184   static class Registrar implements ImportBeanDefinitionRegistrar {
    +185     private static final Log LOG = LogFactory.getLog(Registrar.class);
    +186     private static final ResourcePatternResolver RESOURCE_PATTERN_RESOLVER = new PathMatchingResourcePatternResolver();
    +187     private static final MetadataReaderFactory METADATA_READER_FACTORY = new CachingMetadataReaderFactory();
    +188     private static final Pattern JAR_RESOURCE_PREFIX_PATTERN = Pattern.compile(".*\\.jar!/");
    +189     private static final boolean PRESENT_TYPE_HANDLER = ClassUtils.isPresent("org.apache.ibatis.type.TypeHandler",
    +190         null);
    +191 
    +192     @Override
    +193     public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
    +194       AnnotationAttributes annoAttrs = Optional
    +195           .ofNullable(AnnotationAttributes
    +196               .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.class.getName())))
    +197           .orElseGet(AnnotationAttributes::new);
    +198       registerBeanDefinitions(annoAttrs, registry);
    +199     }
    +200 
    +201     protected void registerBeanDefinitions(AnnotationAttributes annoAttrs, BeanDefinitionRegistry registry) {
    +202       try {
    +203         BeanDefinitionBuilder builder = BeanDefinitionBuilder
    +204             .genericBeanDefinition(MyBatisScannedResourcesHolder.class);
    +205         Set<Class<?>> typeAliasesClasses = scanClasses(annoAttrs.getStringArray("typeAliasesPackages"),
    +206             annoAttrs.getClass("typeAliasesSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass())
    +207                 .filter(clazz -> !clazz.isInterface()).filter(clazz -> !clazz.isMemberClass())
    +208                 .collect(Collectors.toSet());
    +209         builder.addPropertyValue("typeAliasesClasses", typeAliasesClasses);
    +210         Set<Class<?>> typeHandlerClasses = Collections.emptySet();
    +211         if (PRESENT_TYPE_HANDLER) {
    +212           typeHandlerClasses = scanClasses(annoAttrs.getStringArray("typeHandlerPackages"), TypeHandler.class).stream()
    +213               .filter(clazz -> !clazz.isAnonymousClass()).filter(clazz -> !clazz.isInterface())
    +214               .filter(clazz -> !Modifier.isAbstract(clazz.getModifiers())).collect(Collectors.toSet());
    +215         }
    +216         builder.addPropertyValue("typeHandlerClasses", typeHandlerClasses);
    +217         Set<String> mapperLocations = scanResources(annoAttrs.getStringArray("mapperLocationPatterns"));
    +218         builder.addPropertyValue("mapperLocations", mapperLocations);
    +219         Set<Class<?>> reflectionClasses = scanClasses(annoAttrs.getStringArray("reflectionTypePackages"),
    +220             annoAttrs.getClass("reflectionTypeSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass())
    +221                 .filter(clazz -> !clazz.isInterface()).filter(clazz -> !Modifier.isAbstract(clazz.getModifiers()))
    +222                 .filter(clazz -> !clazz.isMemberClass()).collect(Collectors.toSet());
    +223         builder.addPropertyValue("reflectionClasses",
    +224             Stream.of(typeAliasesClasses, typeHandlerClasses, reflectionClasses).flatMap(Set::stream)
    +225                 .collect(Collectors.toSet()));
    +226         builder.addPropertyValue("reflectionTypeAccesses", annoAttrs.get("typeAccesses"));
    +227         Set<String> resourceLocations = scanResources(annoAttrs.getStringArray("resourceLocationPatterns"));
    +228         builder.addPropertyValue("resourceLocations",
    +229             Stream.of(mapperLocations, resourceLocations).flatMap(Set::stream).collect(Collectors.toSet()));
    +230         BeanDefinition beanDefinition = builder.getBeanDefinition();
    +231         registry.registerBeanDefinition(BeanDefinitionReaderUtils.generateBeanName(beanDefinition, registry),
    +232             beanDefinition);
    +233       } catch (IOException e) {
    +234         throw new UncheckedIOException(e);
    +235       }
    +236     }
    +237 
    +238     private Set<Class<?>> scanClasses(String[] packagePatterns, Class<?> assignableType) throws IOException {
    +239       Set<Class<?>> classes = new HashSet<>();
    +240       for (String packagePattern : packagePatterns) {
    +241         Resource[] resources = RESOURCE_PATTERN_RESOLVER.getResources(ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX
    +242             + ClassUtils.convertClassNameToResourcePath(packagePattern) + "/**/*.class");
    +243         for (Resource resource : resources) {
    +244           try {
    +245             ClassMetadata classMetadata = METADATA_READER_FACTORY.getMetadataReader(resource).getClassMetadata();
    +246             Class<?> clazz = ClassUtils.forName(classMetadata.getClassName(), null);
    +247             if (assignableType == void.class || assignableType.isAssignableFrom(clazz)) {
    +248               classes.add(clazz);
    +249             }
    +250           } catch (ClassNotFoundException e) {
    +251             LOG.debug("Fail loading class.", e);
    +252           }
    +253         }
    +254       }
    +255       return classes;
    +256     }
    +257 
    +258     private Set<String> scanResources(String[] mapperLocationPatterns) {
    +259       try {
    +260         String baseUrl = new ClassPathResource("/").getURL().toString();
    +261         return Stream.of(mapperLocationPatterns).flatMap(location -> Stream.of(getResources(location)))
    +262             .map(x -> toPath(x, baseUrl)).collect(Collectors.toSet());
    +263       } catch (IOException e) {
    +264         throw new UncheckedIOException(e);
    +265       }
    +266     }
    +267 
    +268     private Resource[] getResources(String locationPattern) {
    +269       try {
    +270         return RESOURCE_PATTERN_RESOLVER.getResources(locationPattern);
    +271       } catch (IOException e) {
    +272         LOG.debug("Fail getting resources. locationPattern: " + locationPattern, e);
    +273         return new Resource[0];
    +274       }
    +275     }
    +276 
    +277     private String toPath(Resource resource, String baseUrl) {
    +278       try {
    +279         String url = resource.getURL().toString();
    +280         String path = url;
    +281         if (url.startsWith(baseUrl)) {
    +282           path = url.replace(baseUrl, "");
    +283         } else if (url.contains(".jar!")) {
    +284           path = JAR_RESOURCE_PREFIX_PATTERN.matcher(url).replaceFirst("");
    +285         } else {
    +286           path = determineRelativePath(resource);
    +287         }
    +288         return path;
    +289       } catch (IOException e) {
    +290         throw new UncheckedIOException(e);
    +291       }
    +292     }
    +293 
    +294     private String determineRelativePath(Resource resource) throws IOException {
    +295       Path path = resource.getFile().toPath();
    +296       StringBuilder sb = new StringBuilder();
    +297       for (int i = path.getNameCount() - 1; i >= 0; i--) {
    +298         sb.insert(0, path.getName(i));
    +299         String relativePath = sb.toString();
    +300         if (RESOURCE_PATTERN_RESOLVER.getResource(relativePath).exists()) {
    +301           return relativePath;
    +302         }
    +303         sb.insert(0, '/');
    +304       }
    +305       return resource.getURL().toString();
    +306     }
    +307 
    +308   }
    +309 
    +310   static class RepeatableRegistrar extends Registrar {
    +311 
    +312     @Override
    +313     public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
    +314       AnnotationAttributes mapperScansAttrs = AnnotationAttributes
    +315           .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.List.class.getName()));
    +316       if (mapperScansAttrs != null) {
    +317         for (AnnotationAttributes annoAttrs : mapperScansAttrs.getAnnotationArray("value")) {
    +318           this.registerBeanDefinitions(annoAttrs, registry);
    +319         }
    +320       }
    +321     }
    +322 
    +323   }
    +324 
    +325 }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html b/en/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..bedbfcd --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,92 @@ + + + +MyBatisScannedResourcesNativeConfigurationProcessor xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
    +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
    +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
    +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
    +30  
    +31  import java.util.Collections;
    +32  import java.util.Optional;
    +33  import java.util.Set;
    +34  
    +35  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor;
    +36  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
    +37  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry;
    +38  import org.springframework.beans.PropertyValue;
    +39  import org.springframework.beans.factory.config.BeanDefinition;
    +40  import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
    +41  import org.springframework.nativex.hint.TypeAccess;
    +42  
    +43  /**
    +44   * Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the {@code BeanFactory}.
    +45   *
    +46   * @author Kazuki Shimizu
    +47   */
    +48  public class MyBatisScannedResourcesNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor {
    +49  
    +50    private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
    +51        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
    +52        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
    +53  
    +54    /**
    +55     * {@inheritDoc}
    +56     */
    +57    @Override
    +58    public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) {
    +59      String[] beanNames = beanFactory.getBeanNamesForType(MyBatisScannedResourcesHolder.class);
    +60      for (String beanName : beanNames) {
    +61        BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName);
    +62        @SuppressWarnings("unchecked")
    +63        Set<String> resourceLocations = (Set<String>) Optional
    +64            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("resourceLocations"))
    +65            .map(PropertyValue::getValue).orElse(Collections.emptySet());
    +66        resourceLocations.forEach(x -> registry.resources().add(NativeResourcesEntry.of(x)));
    +67        @SuppressWarnings("unchecked")
    +68        Set<Class<?>> reflectionClasses = (Set<Class<?>>) Optional
    +69            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionClasses"))
    +70            .map(PropertyValue::getValue).orElse(Collections.emptySet());
    +71        TypeAccess[] reflectionTypeAccesses = (TypeAccess[]) Optional
    +72            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionTypeAccesses"))
    +73            .map(PropertyValue::getValue).orElse(DEFAULT_TYPE_ACCESSES);
    +74        reflectionClasses.forEach(x -> registry.reflection().forType(x)
    +75            .withAccess(reflectionTypeAccesses.length == 0 ? DEFAULT_TYPE_ACCESSES : reflectionTypeAccesses).build());
    +76      }
    +77    }
    +78  
    +79  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html b/en/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..c3e1ead --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,74 @@ + + + +MyBatisSpringNativeConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  
    +27  import org.mybatis.spring.SqlSessionFactoryBean;
    +28  import org.mybatis.spring.SqlSessionTemplate;
    +29  import org.springframework.nativex.hint.NativeHint;
    +30  import org.springframework.nativex.hint.ResourceHint;
    +31  import org.springframework.nativex.hint.TypeHint;
    +32  import org.springframework.nativex.type.NativeConfiguration;
    +33  
    +34  /**
    +35   * Registers hints to make a MyBatis Spring component work in a Spring Native context.
    +36   *
    +37   * @author Kazuki Shimizu
    +38   */
    +39  // @formatter:off
    +40  @NativeHint(
    +41      trigger = SqlSessionTemplate.class,
    +42      resources = @ResourceHint(
    +43          patterns = "org/mybatis/spring/config/.*.xsd"
    +44      )
    +45  )
    +46  @TypeHint(
    +47      types = SqlSessionFactoryBean.class,
    +48      access = {
    +49          PUBLIC_CONSTRUCTORS,
    +50          PUBLIC_CLASSES,
    +51          PUBLIC_FIELDS,
    +52          PUBLIC_METHODS,
    +53          DECLARED_CLASSES,
    +54          DECLARED_CONSTRUCTORS,
    +55          DECLARED_FIELDS,
    +56          DECLARED_METHODS
    +57      }
    +58  )
    +59  // @formatter:on
    +60  public class MyBatisSpringNativeConfiguration implements NativeConfiguration {
    +61  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html b/en/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..634871e --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,115 @@ + + + +MyBatisThymeleafNativeConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  
    +27  import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig;
    +28  import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver;
    +29  import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriverConfig;
    +30  import org.mybatis.scripting.thymeleaf.expression.Likes;
    +31  import org.mybatis.scripting.thymeleaf.support.TemplateFilePathProvider;
    +32  import org.mybatis.scripting.thymeleaf.support.spring.SpringNamedParameterBindVariableRender;
    +33  import org.springframework.nativex.hint.NativeHint;
    +34  import org.springframework.nativex.hint.ResourceHint;
    +35  import org.springframework.nativex.hint.TypeHint;
    +36  import org.springframework.nativex.type.NativeConfiguration;
    +37  import org.thymeleaf.expression.Aggregates;
    +38  import org.thymeleaf.expression.Arrays;
    +39  import org.thymeleaf.expression.Bools;
    +40  import org.thymeleaf.expression.Calendars;
    +41  import org.thymeleaf.expression.Dates;
    +42  import org.thymeleaf.expression.ExecutionInfo;
    +43  import org.thymeleaf.expression.Ids;
    +44  import org.thymeleaf.expression.Lists;
    +45  import org.thymeleaf.expression.Maps;
    +46  import org.thymeleaf.expression.Messages;
    +47  import org.thymeleaf.expression.Numbers;
    +48  import org.thymeleaf.expression.Objects;
    +49  import org.thymeleaf.expression.Sets;
    +50  import org.thymeleaf.expression.Strings;
    +51  import org.thymeleaf.expression.Uris;
    +52  
    +53  /**
    +54   * Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
    +55   *
    +56   * @author Kazuki Shimizu
    +57   */
    +58  // @formatter:off
    +59  @NativeHint(
    +60      trigger = ThymeleafLanguageDriver.class,
    +61      resources = @ResourceHint(
    +62          patterns = "mybatis-thymeleaf.properties"
    +63      )
    +64  )
    +65  @TypeHint(
    +66      types = {
    +67          ThymeleafLanguageDriver.class,
    +68          SqlGeneratorConfig.class,
    +69          ThymeleafLanguageDriverConfig.class,
    +70          TemplateFilePathProvider.class,
    +71          SpringNamedParameterBindVariableRender.class,
    +72          Likes.class,
    +73          Uris.class,
    +74          Calendars.class,
    +75          Dates.class,
    +76          Bools.class,
    +77          Numbers.class,
    +78          Objects.class,
    +79          Strings.class,
    +80          Arrays.class,
    +81          Lists.class,
    +82          Sets.class,
    +83          Maps.class,
    +84          Aggregates.class,
    +85          Messages.class,
    +86          Ids.class,
    +87          ExecutionInfo.class
    +88      },
    +89      access = {
    +90          PUBLIC_CONSTRUCTORS,
    +91          PUBLIC_CLASSES,
    +92          PUBLIC_FIELDS,
    +93          PUBLIC_METHODS,
    +94          DECLARED_CLASSES,
    +95          DECLARED_CONSTRUCTORS,
    +96          DECLARED_FIELDS,
    +97          DECLARED_METHODS
    +98      }
    +99  )
    +100 // @formatter:on
    +101 public class MyBatisThymeleafNativeConfiguration implements NativeConfiguration {
    +102 }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html b/en/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..31cf323 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,122 @@ + + + +MyBatisVelocityNativeConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex;
    +17  
    +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
    +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
    +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
    +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
    +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
    +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
    +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
    +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
    +26  
    +27  import org.apache.velocity.runtime.ParserPoolImpl;
    +28  import org.apache.velocity.runtime.directive.Break;
    +29  import org.apache.velocity.runtime.directive.Define;
    +30  import org.apache.velocity.runtime.directive.Evaluate;
    +31  import org.apache.velocity.runtime.directive.Foreach;
    +32  import org.apache.velocity.runtime.directive.Include;
    +33  import org.apache.velocity.runtime.directive.Macro;
    +34  import org.apache.velocity.runtime.directive.Parse;
    +35  import org.apache.velocity.runtime.directive.Stop;
    +36  import org.apache.velocity.runtime.parser.StandardParser;
    +37  import org.apache.velocity.runtime.resource.ResourceCacheImpl;
    +38  import org.apache.velocity.runtime.resource.ResourceManagerImpl;
    +39  import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;
    +40  import org.apache.velocity.util.introspection.TypeConversionHandlerImpl;
    +41  import org.apache.velocity.util.introspection.UberspectImpl;
    +42  import org.mybatis.scripting.velocity.InDirective;
    +43  import org.mybatis.scripting.velocity.ParameterMappingCollector;
    +44  import org.mybatis.scripting.velocity.RepeatDirective;
    +45  import org.mybatis.scripting.velocity.SetDirective;
    +46  import org.mybatis.scripting.velocity.TrimDirective;
    +47  import org.mybatis.scripting.velocity.VelocityLanguageDriver;
    +48  import org.mybatis.scripting.velocity.VelocityLanguageDriverConfig;
    +49  import org.mybatis.scripting.velocity.WhereDirective;
    +50  import org.springframework.nativex.hint.NativeHint;
    +51  import org.springframework.nativex.hint.ResourceHint;
    +52  import org.springframework.nativex.hint.TypeHint;
    +53  import org.springframework.nativex.type.NativeConfiguration;
    +54  
    +55  /**
    +56   * Registers hints to make a MyBatis Velocity component work in a Spring Native context.
    +57   *
    +58   * @author Kazuki Shimizu
    +59   */
    +60  // @formatter:off
    +61  @NativeHint(
    +62      trigger = VelocityLanguageDriver.class,
    +63      resources = @ResourceHint(
    +64          patterns = {
    +65              "mybatis-velocity.properties",
    +66              "org/apache/velocity/runtime/defaults/.*.properties"
    +67          }
    +68      )
    +69  )
    +70  @TypeHint(
    +71      types = {
    +72          VelocityLanguageDriver.class,
    +73          VelocityLanguageDriverConfig.class,
    +74          ParameterMappingCollector.class,
    +75          TrimDirective.class,
    +76          WhereDirective.class,
    +77          SetDirective.class,
    +78          InDirective.class,
    +79          RepeatDirective.class,
    +80          ResourceManagerImpl.class,
    +81          ClasspathResourceLoader.class,
    +82          ResourceCacheImpl.class,
    +83          ParserPoolImpl.class,
    +84          UberspectImpl.class,
    +85          TypeConversionHandlerImpl.class,
    +86          StandardParser.class,
    +87          Foreach.class,
    +88          Include.class,
    +89          Parse.class,
    +90          Macro.class,
    +91          Evaluate.class,
    +92          Break.class,
    +93          Define.class,
    +94          Stop.class
    +95      },
    +96      access = {
    +97          PUBLIC_CONSTRUCTORS,
    +98          PUBLIC_CLASSES,
    +99          PUBLIC_FIELDS,
    +100         PUBLIC_METHODS,
    +101         DECLARED_CLASSES,
    +102         DECLARED_CONSTRUCTORS,
    +103         DECLARED_FIELDS,
    +104         DECLARED_METHODS
    +105     }
    +106 )
    +107 // @formatter:on
    +108 public class MyBatisVelocityNativeConfiguration implements NativeConfiguration {
    +109 }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html b/en/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..eb236d4 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,78 @@ + + + +MyBatisSpringNativeAutoConfiguration xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.autoconfigure;
    +17  
    +18  import java.util.List;
    +19  
    +20  import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
    +21  import org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration;
    +22  import org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer;
    +23  import org.mybatis.spring.nativex.MyBatisScannedResourcesHolder;
    +24  import org.springframework.boot.autoconfigure.AutoConfigureBefore;
    +25  import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
    +26  import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
    +27  import org.springframework.context.annotation.Bean;
    +28  import org.springframework.context.annotation.Configuration;
    +29  import org.springframework.core.io.ClassPathResource;
    +30  import org.springframework.core.io.Resource;
    +31  
    +32  /**
    +33   * The configuration class that configure automatically for spring-native.
    +34   *
    +35   * @author Kazuki Shimizu
    +36   */
    +37  @Configuration
    +38  @ConditionalOnClass({ org.apache.ibatis.session.Configuration.class, SqlSessionFactoryBeanCustomizer.class })
    +39  @AutoConfigureBefore(MybatisAutoConfiguration.class)
    +40  public class MyBatisSpringNativeAutoConfiguration {
    +41  
    +42    @ConditionalOnBean(MyBatisScannedResourcesHolder.class)
    +43    @Bean
    +44    ConfigurationCustomizer mybatisScannedResourcesHolderConfigurationCustomizer(
    +45        List<MyBatisScannedResourcesHolder> holders) {
    +46      return configuration -> holders.forEach(holder -> {
    +47        holder.getTypeAliasesClasses().forEach(configuration.getTypeAliasRegistry()::registerAlias);
    +48        holder.getTypeHandlerClasses().forEach(configuration.getTypeHandlerRegistry()::register);
    +49      });
    +50    }
    +51  
    +52    @ConditionalOnBean(MyBatisScannedResourcesHolder.class)
    +53    @Bean
    +54    SqlSessionFactoryBeanCustomizer mybatisScannedResourcesHolderSqlSessionFactoryBeanCustomizer(
    +55        List<MyBatisScannedResourcesHolder> holders) {
    +56      return factoryBean -> {
    +57        Resource[] resources = holders.stream()
    +58            .flatMap(holder -> holder.getMapperLocations().stream().map(ClassPathResource::new)).toArray(Resource[]::new);
    +59        if (resources.length > 0) {
    +60          factoryBean.setMapperLocations(resources);
    +61        }
    +62      };
    +63    }
    +64  
    +65  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html b/en/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html new file mode 100644 index 0000000..a70c069 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html @@ -0,0 +1,18 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + +

    org.mybatis.spring.nativex.autoconfigure

    +
    +

    Classes

    +
      +
    +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/en/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..3c17131 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,102 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.autoconfigure

    +
    +
    +
      +
    • + + + + + + + + + +
      Class Summary 
      Class
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/package-frame.html b/en/xref/org/mybatis/spring/nativex/package-frame.html new file mode 100644 index 0000000..7440ddc --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/package-frame.html @@ -0,0 +1,18 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + +

    org.mybatis.spring.nativex

    +
    +

    Classes

    +
      +
    +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/package-summary.html b/en/xref/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..8476a65 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,102 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + + +
    + + + + +
    mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex

    +
    +
    +
      +
    • + + + + + + + + + +
      Class Summary 
      Class
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/cache/City.html b/en/xref/org/mybatis/spring/nativex/sample/cache/City.html new file mode 100644 index 0000000..eb03385 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/cache/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.cache;
    +17  
    +18  import java.io.Serializable;
    +19  
    +20  public class City implements Serializable {
    +21  
    +22    private static final long serialVersionUID = 1L;
    +23  
    +24    private Integer id;
    +25    private String name;
    +26    private String state;
    +27    private String country;
    +28  
    +29    public City(Integer id, String name, String state, String country) {
    +30      this.id = id;
    +31      this.name = name;
    +32      this.state = state;
    +33      this.country = country;
    +34    }
    +35  
    +36    public Integer getId() {
    +37      return id;
    +38    }
    +39  
    +40    public void setId(Integer id) {
    +41      this.id = id;
    +42    }
    +43  
    +44    public String getName() {
    +45      return name;
    +46    }
    +47  
    +48    public void setName(String name) {
    +49      this.name = name;
    +50    }
    +51  
    +52    public String getState() {
    +53      return state;
    +54    }
    +55  
    +56    public void setState(String state) {
    +57      this.state = state;
    +58    }
    +59  
    +60    public String getCountry() {
    +61      return country;
    +62    }
    +63  
    +64    public void setCountry(String country) {
    +65      this.country = country;
    +66    }
    +67  
    +68    @Override
    +69    public String toString() {
    +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +71          + '}';
    +72    }
    +73  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html new file mode 100644 index 0000000..423d387 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html @@ -0,0 +1,50 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.cache;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.CacheNamespace;
    +21  import org.apache.ibatis.annotations.Insert;
    +22  import org.apache.ibatis.annotations.Mapper;
    +23  import org.apache.ibatis.annotations.Options;
    +24  import org.apache.ibatis.annotations.Select;
    +25  
    +26  @CacheNamespace
    +27  @Mapper
    +28  public interface CityMapper {
    +29  
    +30    @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})")
    +31    @Options(useGeneratedKeys = true, keyProperty = "id")
    +32    void insert(City city);
    +33  
    +34    @Select("SELECT id, name, state, country FROM city ORDER BY id")
    +35    Collection<City> findAll();
    +36  
    +37  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..2fdc28b --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,64 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.cache;
    +17  
    +18  import java.util.ArrayList;
    +19  
    +20  import org.slf4j.Logger;
    +21  import org.slf4j.LoggerFactory;
    +22  import org.springframework.boot.ApplicationRunner;
    +23  import org.springframework.boot.SpringApplication;
    +24  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +25  import org.springframework.context.annotation.Bean;
    +26  import org.springframework.nativex.hint.NativeHint;
    +27  import org.springframework.nativex.hint.SerializationHint;
    +28  
    +29  @NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class,
    +30      Number.class }))
    +31  @SpringBootApplication
    +32  public class MybatisSpringNativeSampleApplication {
    +33  
    +34    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +35  
    +36    public static void main(String[] args) {
    +37      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +38    }
    +39  
    +40    @Bean
    +41    ApplicationRunner runner(CityMapper mapper) {
    +42      return args -> {
    +43        City newCity = new City(null, "NYC", "NY", "USA");
    +44        mapper.insert(newCity);
    +45        log.info("New city: {}", newCity);
    +46        mapper.findAll().forEach(x -> log.info("{}", x));
    +47        mapper.findAll().forEach(x -> log.info("{}", x));
    +48      };
    +49    }
    +50  
    +51  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html new file mode 100644 index 0000000..5f2b4c7 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html @@ -0,0 +1,24 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.cache + + + +

    org.mybatis.spring.nativex.sample.cache

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html new file mode 100644 index 0000000..0c382a0 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html @@ -0,0 +1,112 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.cache + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.cache

    +
    +
    +
      +
    • + + + + + + + + + + + + + + + +
      Class Summary 
      Class
      + City +
      + CityMapper +
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/configuration/City.html b/en/xref/org/mybatis/spring/nativex/sample/configuration/City.html new file mode 100644 index 0000000..ec795b5 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/configuration/City.html @@ -0,0 +1,75 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.configuration;
    +17  
    +18  public class City {
    +19  
    +20    private Integer cityId;
    +21    private String cityName;
    +22    private String stateCode;
    +23    private String countryCode;
    +24  
    +25    public Integer getCityId() {
    +26      return cityId;
    +27    }
    +28  
    +29    public void setCityId(Integer cityId) {
    +30      this.cityId = cityId;
    +31    }
    +32  
    +33    public String getCityName() {
    +34      return cityName;
    +35    }
    +36  
    +37    public void setCityName(String cityName) {
    +38      this.cityName = cityName;
    +39    }
    +40  
    +41    public String getStateCode() {
    +42      return stateCode;
    +43    }
    +44  
    +45    public void setStateCode(String stateCode) {
    +46      this.stateCode = stateCode;
    +47    }
    +48  
    +49    public String getCountryCode() {
    +50      return countryCode;
    +51    }
    +52  
    +53    public void setCountryCode(String countryCode) {
    +54      this.countryCode = countryCode;
    +55    }
    +56  
    +57    @Override
    +58    public String toString() {
    +59      return "City{" + "cityId=" + cityId + ", cityName='" + cityName + '\'' + ", stateCode='" + stateCode + '\''
    +60          + ", countryCode='" + countryCode + '\'' + '}';
    +61    }
    +62  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html new file mode 100644 index 0000000..101b383 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.configuration;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.Insert;
    +21  import org.apache.ibatis.annotations.Mapper;
    +22  import org.apache.ibatis.annotations.Options;
    +23  import org.apache.ibatis.annotations.Select;
    +24  
    +25  @Mapper
    +26  public interface CityMapper {
    +27  
    +28    @Insert("INSERT INTO city (city_name, state_code, country_code) VALUES(#{cityName}, #{stateCode}, #{countryCode})")
    +29    @Options(useGeneratedKeys = true, keyProperty = "cityId")
    +30    void insert(City city);
    +31  
    +32    @Select("SELECT city_id, city_name, state_code, country_code FROM city ORDER BY city_id")
    +33    Collection<City> findAll();
    +34  
    +35  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..5782477 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,60 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.configuration;
    +17  
    +18  import org.slf4j.Logger;
    +19  import org.slf4j.LoggerFactory;
    +20  import org.springframework.boot.ApplicationRunner;
    +21  import org.springframework.boot.SpringApplication;
    +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +23  import org.springframework.context.annotation.Bean;
    +24  
    +25  @SpringBootApplication
    +26  public class MybatisSpringNativeSampleApplication {
    +27  
    +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +29  
    +30    public static void main(String[] args) {
    +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +32    }
    +33  
    +34    @Bean
    +35    ApplicationRunner runner(CityMapper mapper) {
    +36      return args -> {
    +37        City newCity = new City();
    +38        newCity.setCityName("NYC");
    +39        newCity.setStateCode("NY");
    +40        newCity.setCountryCode("USA");
    +41        mapper.insert(newCity);
    +42        log.info("New city: {}", newCity);
    +43        mapper.findAll().forEach(x -> log.info("{}", x));
    +44      };
    +45    }
    +46  
    +47  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html new file mode 100644 index 0000000..6ecc5d0 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.configuration + + + +

    org.mybatis.spring.nativex.sample.configuration

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html new file mode 100644 index 0000000..567c36b --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.configuration + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.configuration

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/dao/City.html b/en/xref/org/mybatis/spring/nativex/sample/dao/City.html new file mode 100644 index 0000000..281f11e --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dao/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.dao;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html b/en/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html new file mode 100644 index 0000000..7553203 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html @@ -0,0 +1,53 @@ + + + +CityDao xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.dao;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.session.SqlSession;
    +21  import org.springframework.stereotype.Component;
    +22  
    +23  @Component
    +24  public class CityDao {
    +25  
    +26    private final SqlSession sqlSession;
    +27  
    +28    public CityDao(SqlSession sqlSession) {
    +29      this.sqlSession = sqlSession;
    +30    }
    +31  
    +32    public void insert(City city) {
    +33      sqlSession.insert("org.mybatis.spring.nativex.sample.dao.CityDao.insert", city);
    +34    }
    +35  
    +36    public Collection<City> findAll() {
    +37      return sqlSession.selectList("org.mybatis.spring.nativex.sample.dao.CityDao.findAll");
    +38    }
    +39  
    +40  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..0625dfe --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,59 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.dao;
    +17  
    +18  import org.mybatis.spring.nativex.MyBatisResourcesScan;
    +19  import org.slf4j.Logger;
    +20  import org.slf4j.LoggerFactory;
    +21  import org.springframework.boot.ApplicationRunner;
    +22  import org.springframework.boot.SpringApplication;
    +23  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +24  import org.springframework.context.annotation.Bean;
    +25  
    +26  @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.dao", mapperLocationPatterns = "dao/**/*Dao.xml")
    +27  @SpringBootApplication
    +28  public class MybatisSpringNativeSampleApplication {
    +29  
    +30    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +31  
    +32    public static void main(String[] args) {
    +33      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +34    }
    +35  
    +36    @Bean
    +37    ApplicationRunner runner(CityDao cityDao) {
    +38      return args -> {
    +39        City newCity = new City(null, "NYC", "NY", "USA");
    +40        cityDao.insert(newCity);
    +41        log.info("New city: {}", newCity);
    +42        cityDao.findAll().forEach(x -> log.info("{}", x));
    +43      };
    +44    }
    +45  
    +46  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html new file mode 100644 index 0000000..f2597c4 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dao + + + +

    org.mybatis.spring.nativex.sample.dao

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html new file mode 100644 index 0000000..d7432d2 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dao + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.dao

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html new file mode 100644 index 0000000..17d853a --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.dynamicsql;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html new file mode 100644 index 0000000..8556481 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html @@ -0,0 +1,86 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.dynamicsql;
    +17  
    +18  import java.sql.JDBCType;
    +19  import java.util.Collection;
    +20  import java.util.List;
    +21  
    +22  import org.apache.ibatis.annotations.InsertProvider;
    +23  import org.apache.ibatis.annotations.Mapper;
    +24  import org.apache.ibatis.annotations.Options;
    +25  import org.apache.ibatis.annotations.SelectProvider;
    +26  import org.mybatis.dynamic.sql.BasicColumn;
    +27  import org.mybatis.dynamic.sql.SqlColumn;
    +28  import org.mybatis.dynamic.sql.SqlTable;
    +29  import org.mybatis.dynamic.sql.insert.render.InsertStatementProvider;
    +30  import org.mybatis.dynamic.sql.select.SelectDSLCompleter;
    +31  import org.mybatis.dynamic.sql.select.render.SelectStatementProvider;
    +32  import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
    +33  import org.mybatis.dynamic.sql.util.mybatis3.CommonCountMapper;
    +34  import org.mybatis.dynamic.sql.util.mybatis3.CommonDeleteMapper;
    +35  import org.mybatis.dynamic.sql.util.mybatis3.CommonInsertMapper;
    +36  import org.mybatis.dynamic.sql.util.mybatis3.CommonSelectMapper;
    +37  import org.mybatis.dynamic.sql.util.mybatis3.CommonUpdateMapper;
    +38  import org.mybatis.dynamic.sql.util.mybatis3.MyBatis3Utils;
    +39  
    +40  @Mapper
    +41  public interface CityMapper
    +42      extends CommonSelectMapper, CommonCountMapper, CommonDeleteMapper, CommonInsertMapper<City>, CommonUpdateMapper {
    +43  
    +44    @InsertProvider(type = SqlProviderAdapter.class, method = "insert")
    +45    @Options(useGeneratedKeys = true, keyProperty = "row.id")
    +46    int insert(InsertStatementProvider<City> insertStatement);
    +47  
    +48    @SelectProvider(type = SqlProviderAdapter.class, method = "select")
    +49    List<City> selectMany(SelectStatementProvider selectStatement);
    +50  
    +51    default void insert(City city) {
    +52      MyBatis3Utils.insert(this::insert, city, CityTable.INSTANCE, c -> c.map(CityTable.INSTANCE.name).toProperty("name")
    +53          .map(CityTable.INSTANCE.state).toProperty("state").map(CityTable.INSTANCE.country).toProperty("country"));
    +54    }
    +55  
    +56    default Collection<City> findAll() {
    +57      return MyBatis3Utils.selectList(this::selectMany, CityTable.INSTANCE.allColumn, CityTable.INSTANCE,
    +58          SelectDSLCompleter.allRows());
    +59    }
    +60  
    +61    class CityTable extends SqlTable {
    +62      private static final CityTable INSTANCE = new CityTable();
    +63      private final SqlColumn<Integer> id = column("id", JDBCType.INTEGER);
    +64      private final SqlColumn<String> name = column("name", JDBCType.VARCHAR);
    +65      private final SqlColumn<String> state = column("state", JDBCType.VARCHAR);
    +66      private final SqlColumn<String> country = column("country", JDBCType.VARCHAR);
    +67      private final BasicColumn[] allColumn = BasicColumn.columnList(id, name, state, country);
    +68  
    +69      private CityTable() {
    +70        super("city");
    +71      }
    +72    }
    +73  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..7d31179 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.dynamicsql;
    +17  
    +18  import org.slf4j.Logger;
    +19  import org.slf4j.LoggerFactory;
    +20  import org.springframework.boot.ApplicationRunner;
    +21  import org.springframework.boot.SpringApplication;
    +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +23  import org.springframework.context.annotation.Bean;
    +24  
    +25  @SpringBootApplication
    +26  public class MybatisSpringNativeSampleApplication {
    +27  
    +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +29  
    +30    public static void main(String[] args) {
    +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +32    }
    +33  
    +34    @Bean
    +35    ApplicationRunner runner(CityMapper mapper) {
    +36      return args -> {
    +37        City newCity = new City(null, "NYC", "NY", "USA");
    +38        mapper.insert(newCity);
    +39        log.info("New city: {}", newCity);
    +40        mapper.findAll().forEach(x -> log.info("{}", x));
    +41      };
    +42    }
    +43  
    +44  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html new file mode 100644 index 0000000..f0b42c7 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html @@ -0,0 +1,30 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dynamicsql + + + +

    org.mybatis.spring.nativex.sample.dynamicsql

    + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html new file mode 100644 index 0000000..066fc3b --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html @@ -0,0 +1,122 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dynamicsql + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.dynamicsql

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/external/entity/City.html b/en/xref/org/mybatis/spring/nativex/sample/external/entity/City.html new file mode 100644 index 0000000..db79d08 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/external/entity/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.external.entity;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html new file mode 100644 index 0000000..e0c890f --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.entity + + + +

    org.mybatis.spring.nativex.sample.external.entity

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html new file mode 100644 index 0000000..c00a1db --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.entity + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.external.entity

    +
    +
    +
      +
    • + + + + + + + + + + + + +
      Class Summary 
      Class
      + City +
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html new file mode 100644 index 0000000..e3aa92c --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html @@ -0,0 +1,43 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.external.mapper;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.Mapper;
    +21  import org.mybatis.spring.nativex.sample.external.entity.City;
    +22  
    +23  @Mapper
    +24  public interface CityMapper {
    +25  
    +26    void insert(City city);
    +27  
    +28    Collection<City> findAll();
    +29  
    +30  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html new file mode 100644 index 0000000..b9a1209 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.mapper + + + +

    org.mybatis.spring.nativex.sample.external.mapper

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html new file mode 100644 index 0000000..3131db8 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.mapper + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.external.mapper

    +
    +
    +
      +
    • + + + + + + + + + + + + +
      Class Summary 
      Class
      + CityMapper +
      +
    • +
    +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/freemarker/City.html b/en/xref/org/mybatis/spring/nativex/sample/freemarker/City.html new file mode 100644 index 0000000..4479d30 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/freemarker/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.freemarker;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City() {
    +26      // NOP
    +27    }
    +28  
    +29    public City(Integer id, String name, String state, String country) {
    +30      this.id = id;
    +31      this.name = name;
    +32      this.state = state;
    +33      this.country = country;
    +34    }
    +35  
    +36    public Integer getId() {
    +37      return id;
    +38    }
    +39  
    +40    public void setId(Integer id) {
    +41      this.id = id;
    +42    }
    +43  
    +44    public String getName() {
    +45      return name;
    +46    }
    +47  
    +48    public void setName(String name) {
    +49      this.name = name;
    +50    }
    +51  
    +52    public String getState() {
    +53      return state;
    +54    }
    +55  
    +56    public void setState(String state) {
    +57      this.state = state;
    +58    }
    +59  
    +60    public String getCountry() {
    +61      return country;
    +62    }
    +63  
    +64    public void setCountry(String country) {
    +65      this.country = country;
    +66    }
    +67  
    +68    @Override
    +69    public String toString() {
    +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +71          + '}';
    +72    }
    +73  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html new file mode 100644 index 0000000..a13b147 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.freemarker;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.InsertProvider;
    +21  import org.apache.ibatis.annotations.Mapper;
    +22  import org.apache.ibatis.annotations.Options;
    +23  import org.apache.ibatis.annotations.SelectProvider;
    +24  
    +25  @Mapper
    +26  public interface CityMapper {
    +27  
    +28    @InsertProvider
    +29    @Options(useGeneratedKeys = true, keyProperty = "id")
    +30    void insert(City city);
    +31  
    +32    @SelectProvider
    +33    Collection<City> findAll();
    +34  
    +35  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..7175ec4 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,66 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.freemarker;
    +17  
    +18  import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider;
    +19  import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
    +20  import org.mybatis.spring.nativex.MyBatisResourcesScan;
    +21  import org.slf4j.Logger;
    +22  import org.slf4j.LoggerFactory;
    +23  import org.springframework.boot.ApplicationRunner;
    +24  import org.springframework.boot.SpringApplication;
    +25  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +26  import org.springframework.context.annotation.Bean;
    +27  
    +28  @MyBatisResourcesScan(resourceLocationPatterns = "org/mybatis/spring/nativex/sample/**/*.ftl")
    +29  @SpringBootApplication
    +30  public class MybatisSpringNativeSampleApplication {
    +31  
    +32    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +33  
    +34    public static void main(String[] args) {
    +35      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +36    }
    +37  
    +38    @Bean
    +39    ApplicationRunner runner(CityMapper mapper) {
    +40      return args -> {
    +41        City newCity = new City(null, "NYC", "NY", "USA");
    +42        mapper.insert(newCity);
    +43        log.info("New city: {}", newCity);
    +44        mapper.findAll().forEach(x -> log.info("{}", x));
    +45      };
    +46    }
    +47  
    +48    @Bean
    +49    ConfigurationCustomizer mybatisConfigurationCustomizer() {
    +50      return configuration -> configuration.setDefaultSqlProviderType(TemplateFilePathProvider.class);
    +51    }
    +52  
    +53  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html new file mode 100644 index 0000000..d561489 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.freemarker + + + +

    org.mybatis.spring.nativex.sample.freemarker

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html new file mode 100644 index 0000000..837ea00 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.freemarker + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.freemarker

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..07e874c --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,63 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.scan;
    +17  
    +18  import org.mybatis.spring.annotation.MapperScan;
    +19  import org.mybatis.spring.nativex.MyBatisResourcesScan;
    +20  import org.mybatis.spring.nativex.sample.external.entity.City;
    +21  import org.mybatis.spring.nativex.sample.external.mapper.CityMapper;
    +22  import org.slf4j.Logger;
    +23  import org.slf4j.LoggerFactory;
    +24  import org.springframework.boot.ApplicationRunner;
    +25  import org.springframework.boot.SpringApplication;
    +26  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +27  import org.springframework.context.annotation.Bean;
    +28  
    +29  @MapperScan(basePackages = "org.mybatis.spring.nativex.sample.external.mapper", sqlSessionTemplateRef = "sqlSessionTemplate")
    +30  @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.external.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml")
    +31  @SpringBootApplication
    +32  public class MybatisSpringNativeSampleApplication {
    +33  
    +34    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +35  
    +36    public static void main(String[] args) {
    +37      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +38    }
    +39  
    +40    @Bean
    +41    ApplicationRunner runner(CityMapper mapper) {
    +42      return args -> {
    +43        City newCity = new City(null, "NYC", "NY", "USA");
    +44        mapper.insert(newCity);
    +45        log.info("New city: {}", newCity);
    +46        mapper.findAll().forEach(x -> log.info("{}", x));
    +47      };
    +48    }
    +49  
    +50  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html new file mode 100644 index 0000000..ae9d007 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.scan + + + +

    org.mybatis.spring.nativex.sample.scan

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html new file mode 100644 index 0000000..8e9188a --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.scan + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.scan

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/simple/City.html b/en/xref/org/mybatis/spring/nativex/sample/simple/City.html new file mode 100644 index 0000000..587199a --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/simple/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.simple;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html new file mode 100644 index 0000000..c004246 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.simple;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.Insert;
    +21  import org.apache.ibatis.annotations.Mapper;
    +22  import org.apache.ibatis.annotations.Options;
    +23  import org.apache.ibatis.annotations.Select;
    +24  
    +25  @Mapper
    +26  public interface CityMapper {
    +27  
    +28    @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})")
    +29    @Options(useGeneratedKeys = true, keyProperty = "id")
    +30    void insert(City city);
    +31  
    +32    @Select("SELECT id, name, state, country FROM city ORDER BY id")
    +33    Collection<City> findAll();
    +34  
    +35  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..7fab98c --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.simple;
    +17  
    +18  import org.slf4j.Logger;
    +19  import org.slf4j.LoggerFactory;
    +20  import org.springframework.boot.ApplicationRunner;
    +21  import org.springframework.boot.SpringApplication;
    +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +23  import org.springframework.context.annotation.Bean;
    +24  
    +25  @SpringBootApplication
    +26  public class MybatisSpringNativeSampleApplication {
    +27  
    +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +29  
    +30    public static void main(String[] args) {
    +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +32    }
    +33  
    +34    @Bean
    +35    ApplicationRunner runner(CityMapper mapper) {
    +36      return args -> {
    +37        City newCity = new City(null, "NYC", "NY", "USA");
    +38        mapper.insert(newCity);
    +39        log.info("New city: {}", newCity);
    +40        mapper.findAll().forEach(x -> log.info("{}", x));
    +41      };
    +42    }
    +43  
    +44  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html new file mode 100644 index 0000000..45eaa0e --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.simple + + + +

    org.mybatis.spring.nativex.sample.simple

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html new file mode 100644 index 0000000..d89b844 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.simple + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.simple

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html new file mode 100644 index 0000000..4969a05 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.sqlprovider;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html new file mode 100644 index 0000000..1073e1d --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html @@ -0,0 +1,70 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.sqlprovider;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.InsertProvider;
    +21  import org.apache.ibatis.annotations.Mapper;
    +22  import org.apache.ibatis.annotations.Options;
    +23  import org.apache.ibatis.annotations.SelectProvider;
    +24  
    +25  @Mapper
    +26  public interface CityMapper {
    +27  
    +28    @InsertProvider(InsertSqlProvider.class)
    +29    @Options(useGeneratedKeys = true, keyProperty = "id")
    +30    void insert(City city);
    +31  
    +32    @SelectProvider(type = SelectSqlProvider.class, method = "provideSqlForFindAll")
    +33    Collection<City> findAll();
    +34  
    +35    class InsertSqlProvider {
    +36      private InsertSqlProvider() {
    +37        // NOP
    +38      }
    +39  
    +40      @SuppressWarnings({ "java:S3400", "unused" })
    +41      public static String provideSql() {
    +42        return "INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})";
    +43      }
    +44    }
    +45  
    +46    class SelectSqlProvider {
    +47      private SelectSqlProvider() {
    +48        // NOP
    +49      }
    +50  
    +51      @SuppressWarnings({ "java:S3400", "unused" })
    +52      public static String provideSqlForFindAll() {
    +53        return "SELECT id, name, state, country FROM city ORDER BY id";
    +54      }
    +55    }
    +56  
    +57  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..4ebc809 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.sqlprovider;
    +17  
    +18  import org.slf4j.Logger;
    +19  import org.slf4j.LoggerFactory;
    +20  import org.springframework.boot.ApplicationRunner;
    +21  import org.springframework.boot.SpringApplication;
    +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +23  import org.springframework.context.annotation.Bean;
    +24  
    +25  @SpringBootApplication
    +26  public class MybatisSpringNativeSampleApplication {
    +27  
    +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +29  
    +30    public static void main(String[] args) {
    +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +32    }
    +33  
    +34    @Bean
    +35    ApplicationRunner runner(CityMapper mapper) {
    +36      return args -> {
    +37        City newCity = new City(null, "NYC", "NY", "USA");
    +38        mapper.insert(newCity);
    +39        log.info("New city: {}", newCity);
    +40        mapper.findAll().forEach(x -> log.info("{}", x));
    +41      };
    +42    }
    +43  
    +44  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html new file mode 100644 index 0000000..60acd96 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.sqlprovider + + + +

    org.mybatis.spring.nativex.sample.sqlprovider

    + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html new file mode 100644 index 0000000..9ffdf71 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.sqlprovider + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.sqlprovider

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html new file mode 100644 index 0000000..8ab136a --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.thymeleaf;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City() {
    +26      // NOP
    +27    }
    +28  
    +29    public City(Integer id, String name, String state, String country) {
    +30      this.id = id;
    +31      this.name = name;
    +32      this.state = state;
    +33      this.country = country;
    +34    }
    +35  
    +36    public Integer getId() {
    +37      return id;
    +38    }
    +39  
    +40    public void setId(Integer id) {
    +41      this.id = id;
    +42    }
    +43  
    +44    public String getName() {
    +45      return name;
    +46    }
    +47  
    +48    public void setName(String name) {
    +49      this.name = name;
    +50    }
    +51  
    +52    public String getState() {
    +53      return state;
    +54    }
    +55  
    +56    public void setState(String state) {
    +57      this.state = state;
    +58    }
    +59  
    +60    public String getCountry() {
    +61      return country;
    +62    }
    +63  
    +64    public void setCountry(String country) {
    +65      this.country = country;
    +66    }
    +67  
    +68    @Override
    +69    public String toString() {
    +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +71          + '}';
    +72    }
    +73  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html new file mode 100644 index 0000000..b56775a --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.thymeleaf;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.InsertProvider;
    +21  import org.apache.ibatis.annotations.Mapper;
    +22  import org.apache.ibatis.annotations.Options;
    +23  import org.apache.ibatis.annotations.SelectProvider;
    +24  
    +25  @Mapper
    +26  public interface CityMapper {
    +27  
    +28    @InsertProvider
    +29    @Options(useGeneratedKeys = true, keyProperty = "id")
    +30    void insert(City city);
    +31  
    +32    @SelectProvider
    +33    Collection<City> findAll();
    +34  
    +35  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..3576631 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,78 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.thymeleaf;
    +17  
    +18  import org.mybatis.scripting.thymeleaf.SqlGenerator;
    +19  import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig;
    +20  import org.mybatis.scripting.thymeleaf.processor.BindVariableRender;
    +21  import org.mybatis.spring.nativex.MyBatisResourcesScan;
    +22  import org.slf4j.Logger;
    +23  import org.slf4j.LoggerFactory;
    +24  import org.springframework.boot.ApplicationRunner;
    +25  import org.springframework.boot.SpringApplication;
    +26  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +27  import org.springframework.context.annotation.Bean;
    +28  import org.springframework.jdbc.core.BeanPropertyRowMapper;
    +29  import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource;
    +30  import org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations;
    +31  import org.springframework.jdbc.support.GeneratedKeyHolder;
    +32  import org.springframework.jdbc.support.KeyHolder;
    +33  
    +34  @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.sample.thymeleaf", resourceLocationPatterns = "sqls/**/*.sql")
    +35  @SpringBootApplication
    +36  public class MybatisSpringNativeSampleApplication {
    +37  
    +38    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +39  
    +40    public static void main(String[] args) {
    +41      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +42    }
    +43  
    +44    @Bean
    +45    ApplicationRunner runner(NamedParameterJdbcOperations operations, SqlGenerator sqlGenerator) {
    +46      return args -> {
    +47        City newCity = new City(null, "NYC", "NY", "USA");
    +48        KeyHolder keyHolder = new GeneratedKeyHolder();
    +49        operations.update(sqlGenerator.generate("sqls/city/city-insert.sql", newCity),
    +50            new BeanPropertySqlParameterSource(newCity), keyHolder);
    +51        newCity.setId(keyHolder.getKeyAs(Integer.class));
    +52        log.info("New city: {}", newCity);
    +53        operations
    +54            .query(sqlGenerator.generate("sqls/city/city-findAll.sql", null), new BeanPropertyRowMapper<>(City.class))
    +55            .forEach(x -> log.info("{}", x));
    +56      };
    +57    }
    +58  
    +59    @Bean
    +60    SqlGenerator sqlGenerator() {
    +61      return new SqlGenerator(SqlGeneratorConfig.newInstanceWithCustomizer(
    +62          c -> c.getDialect().setBindVariableRender(BindVariableRender.BuiltIn.SPRING_NAMED_PARAMETER.getType())));
    +63    }
    +64  
    +65  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html new file mode 100644 index 0000000..d762e38 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.thymeleaf + + + +

    org.mybatis.spring.nativex.sample.thymeleaf

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html new file mode 100644 index 0000000..e51ca24 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.thymeleaf + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.thymeleaf

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/velocity/City.html b/en/xref/org/mybatis/spring/nativex/sample/velocity/City.html new file mode 100644 index 0000000..70bb058 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/velocity/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.velocity;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html new file mode 100644 index 0000000..09085a4 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.velocity;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.Insert;
    +21  import org.apache.ibatis.annotations.Mapper;
    +22  import org.apache.ibatis.annotations.Options;
    +23  import org.apache.ibatis.annotations.Select;
    +24  
    +25  @Mapper
    +26  public interface CityMapper {
    +27  
    +28    @Insert("INSERT INTO city (name, state, country) VALUES(@{name}, @{state}, @{country})")
    +29    @Options(useGeneratedKeys = true, keyProperty = "id")
    +30    void insert(City city);
    +31  
    +32    @Select("SELECT id, name, state, country FROM city ORDER BY id")
    +33    Collection<City> findAll();
    +34  
    +35  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..16eef99 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.velocity;
    +17  
    +18  import org.slf4j.Logger;
    +19  import org.slf4j.LoggerFactory;
    +20  import org.springframework.boot.ApplicationRunner;
    +21  import org.springframework.boot.SpringApplication;
    +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +23  import org.springframework.context.annotation.Bean;
    +24  
    +25  @SpringBootApplication
    +26  public class MybatisSpringNativeSampleApplication {
    +27  
    +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +29  
    +30    public static void main(String[] args) {
    +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +32    }
    +33  
    +34    @Bean
    +35    ApplicationRunner runner(CityMapper mapper) {
    +36      return args -> {
    +37        City newCity = new City(null, "NYC", "NY", "USA");
    +38        mapper.insert(newCity);
    +39        log.info("New city: {}", newCity);
    +40        mapper.findAll().forEach(x -> log.info("{}", x));
    +41      };
    +42    }
    +43  
    +44  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html new file mode 100644 index 0000000..390c35e --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.velocity + + + +

    org.mybatis.spring.nativex.sample.velocity

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html new file mode 100644 index 0000000..ab33533 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.velocity + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.velocity

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/xml/City.html b/en/xref/org/mybatis/spring/nativex/sample/xml/City.html new file mode 100644 index 0000000..812561e --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/xml/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.xml;
    +17  
    +18  public class City {
    +19  
    +20    private Integer id;
    +21    private String name;
    +22    private String state;
    +23    private String country;
    +24  
    +25    public City(Integer id, String name, String state, String country) {
    +26      this.id = id;
    +27      this.name = name;
    +28      this.state = state;
    +29      this.country = country;
    +30    }
    +31  
    +32    public Integer getId() {
    +33      return id;
    +34    }
    +35  
    +36    public void setId(Integer id) {
    +37      this.id = id;
    +38    }
    +39  
    +40    public String getName() {
    +41      return name;
    +42    }
    +43  
    +44    public void setName(String name) {
    +45      this.name = name;
    +46    }
    +47  
    +48    public String getState() {
    +49      return state;
    +50    }
    +51  
    +52    public void setState(String state) {
    +53      this.state = state;
    +54    }
    +55  
    +56    public String getCountry() {
    +57      return country;
    +58    }
    +59  
    +60    public void setCountry(String country) {
    +61      this.country = country;
    +62    }
    +63  
    +64    @Override
    +65    public String toString() {
    +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
    +67          + '}';
    +68    }
    +69  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html b/en/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html new file mode 100644 index 0000000..d610b67 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html @@ -0,0 +1,42 @@ + + + +CityMapper xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.xml;
    +17  
    +18  import java.util.Collection;
    +19  
    +20  import org.apache.ibatis.annotations.Mapper;
    +21  
    +22  @Mapper
    +23  public interface CityMapper {
    +24  
    +25    void insert(City city);
    +26  
    +27    Collection<City> findAll();
    +28  
    +29  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html b/en/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..58c89b3 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
    +1   /*
    +2    *    Copyright 2022 the original author or authors.
    +3    *
    +4    *    Licensed under the Apache License, Version 2.0 (the "License");
    +5    *    you may not use this file except in compliance with the License.
    +6    *    You may obtain a copy of the License at
    +7    *
    +8    *       https://www.apache.org/licenses/LICENSE-2.0
    +9    *
    +10   *    Unless required by applicable law or agreed to in writing, software
    +11   *    distributed under the License is distributed on an "AS IS" BASIS,
    +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +13   *    See the License for the specific language governing permissions and
    +14   *    limitations under the License.
    +15   */
    +16  package org.mybatis.spring.nativex.sample.xml;
    +17  
    +18  import org.slf4j.Logger;
    +19  import org.slf4j.LoggerFactory;
    +20  import org.springframework.boot.ApplicationRunner;
    +21  import org.springframework.boot.SpringApplication;
    +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
    +23  import org.springframework.context.annotation.Bean;
    +24  
    +25  @SpringBootApplication
    +26  public class MybatisSpringNativeSampleApplication {
    +27  
    +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
    +29  
    +30    public static void main(String[] args) {
    +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
    +32    }
    +33  
    +34    @Bean
    +35    ApplicationRunner runner(CityMapper mapper) {
    +36      return args -> {
    +37        City newCity = new City(null, "NYC", "NY", "USA");
    +38        mapper.insert(newCity);
    +39        log.info("New city: {}", newCity);
    +40        mapper.findAll().forEach(x -> log.info("{}", x));
    +41      };
    +42    }
    +43  
    +44  }
    +
    +
    + + + diff --git a/en/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html b/en/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html new file mode 100644 index 0000000..afc3ee4 --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.xml + + + +

    org.mybatis.spring.nativex.sample.xml

    +
    +

    Classes

    + +
    + + \ No newline at end of file diff --git a/en/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html b/en/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html new file mode 100644 index 0000000..47be44f --- /dev/null +++ b/en/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.xml + + + + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    Package org.mybatis.spring.nativex.sample.xml

    +
    +
    + +
    + +
    + + + + +
    mybatis-spring-native 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/overview-frame.html b/en/xref/overview-frame.html new file mode 100644 index 0000000..12d44d1 --- /dev/null +++ b/en/xref/overview-frame.html @@ -0,0 +1,24 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + +

    mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference

    + +
    +

    Packages

    + +
    +

     

    + + + diff --git a/en/xref/overview-summary.html b/en/xref/overview-summary.html new file mode 100644 index 0000000..214472b --- /dev/null +++ b/en/xref/overview-summary.html @@ -0,0 +1,92 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + +
    + + + + +
    mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
    +
    + + +
    +

    mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference

    +
    +
    + + + + + + + + + + + + +
    Packages 
    Package
    + org.mybatis.spring.nativex +
    +
    + +
    + + + + +
    mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
    +
    + + + + + \ No newline at end of file diff --git a/en/xref/stylesheet.css b/en/xref/stylesheet.css new file mode 100644 index 0000000..9e10f29 --- /dev/null +++ b/en/xref/stylesheet.css @@ -0,0 +1,626 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} + +/* JXR style sheet */ +a.jxr_linenumber:link { + color: #00f; +} + +a.jxr_linenumber:visited { + color: #00a; +} + +a.jxr_linenumber:active, a.jxr_linenumber:hover { + color: #f30 !important; +} + +em.comment { + color: #390; +} + +.string { + color: #009; +} + +#overview { + padding: 2px; + font-size: 90%; + font-family: Helvetica, Arial, sans-serif; +} + +hr { + color: #000; +} + +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} + diff --git a/extensions/LICENSE_HEADER b/extensions/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/extensions/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/extensions/pom.xml b/extensions/pom.xml deleted file mode 100644 index a94470c..0000000 --- a/extensions/pom.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native - 0.1.0-SNAPSHOT - - - mybatis-spring-native-extensions - mybatis-spring-native-extensions - MyBatis integration with Spring Native feature for extension modules(scripting, cache, and more) - - - org.mybatis.spring.nativex.extensions - - - - - org.mybatis.spring.native - mybatis-spring-native-core - ${project.version} - - - org.mybatis.scripting - mybatis-thymeleaf - provided - true - - - org.mybatis.scripting - mybatis-velocity - provided - true - - - org.mybatis.scripting - mybatis-freemarker - provided - true - - - org.mybatis.dynamic-sql - mybatis-dynamic-sql - provided - true - - - org.springframework.experimental - spring-native - provided - - - org.springframework.experimental - spring-aot - provided - - - - diff --git a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.java b/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.java deleted file mode 100644 index abe66ce..0000000 --- a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; - -import org.mybatis.dynamic.sql.delete.render.DefaultDeleteStatementProvider; -import org.mybatis.dynamic.sql.insert.render.DefaultGeneralInsertStatementProvider; -import org.mybatis.dynamic.sql.insert.render.DefaultInsertStatementProvider; -import org.mybatis.dynamic.sql.insert.render.DefaultMultiRowInsertStatementProvider; -import org.mybatis.dynamic.sql.select.render.DefaultSelectStatementProvider; -import org.mybatis.dynamic.sql.update.render.DefaultUpdateStatementProvider; -import org.mybatis.dynamic.sql.util.SqlProviderAdapter; -import org.mybatis.dynamic.sql.util.springbatch.SpringBatchProviderAdapter; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.TypeHint; -import org.springframework.nativex.type.NativeConfiguration; - -/** - * Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context. - * - * @author Kazuki Shimizu - */ -// @formatter:off -@NativeHint( - trigger = SqlProviderAdapter.class -) -@TypeHint( - types = { - SqlProviderAdapter.class, - SpringBatchProviderAdapter.class, - DefaultDeleteStatementProvider.class, - DefaultGeneralInsertStatementProvider.class, - DefaultInsertStatementProvider.class, - DefaultMultiRowInsertStatementProvider.class, - DefaultSelectStatementProvider.class, - DefaultUpdateStatementProvider.class - }, - access = { - PUBLIC_CONSTRUCTORS, - PUBLIC_CLASSES, - PUBLIC_FIELDS, - PUBLIC_METHODS, - DECLARED_CLASSES, - DECLARED_CONSTRUCTORS, - DECLARED_FIELDS, - DECLARED_METHODS - } -) -// @formatter:on -public class MyBatisDynamicSqlNativeConfiguration implements NativeConfiguration { -} diff --git a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.java b/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.java deleted file mode 100644 index 20c04ed..0000000 --- a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; - -import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver; -import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig; -import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.ResourceHint; -import org.springframework.nativex.hint.TypeHint; -import org.springframework.nativex.type.NativeConfiguration; - -/** - * Registers hints to make a MyBatis FreeMarker component work in a Spring Native context. - * - * @author Kazuki Shimizu - */ -// @formatter:off -@NativeHint( - trigger = FreeMarkerLanguageDriver.class, - resources = @ResourceHint( - patterns = { - "mybatis-freemarker.properties", - "freemarker/version.properties", - "freemarker/ext/beans/DefaultMemberAccessPolicy-rules" - } - ) -) -@TypeHint( - types = { - FreeMarkerLanguageDriver.class, - FreeMarkerLanguageDriverConfig.class, - TemplateFilePathProvider.class - }, - access = { - PUBLIC_CONSTRUCTORS, - PUBLIC_CLASSES, - PUBLIC_FIELDS, - PUBLIC_METHODS, - DECLARED_CLASSES, - DECLARED_CONSTRUCTORS, - DECLARED_FIELDS, - DECLARED_METHODS - } -) -// @formatter:on -public class MyBatisFreeMarkerNativeConfiguration implements NativeConfiguration { -} diff --git a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.java b/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.java deleted file mode 100644 index 4b3e773..0000000 --- a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.java +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; - -import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig; -import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver; -import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriverConfig; -import org.mybatis.scripting.thymeleaf.expression.Likes; -import org.mybatis.scripting.thymeleaf.support.TemplateFilePathProvider; -import org.mybatis.scripting.thymeleaf.support.spring.SpringNamedParameterBindVariableRender; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.ResourceHint; -import org.springframework.nativex.hint.TypeHint; -import org.springframework.nativex.type.NativeConfiguration; -import org.thymeleaf.expression.Aggregates; -import org.thymeleaf.expression.Arrays; -import org.thymeleaf.expression.Bools; -import org.thymeleaf.expression.Calendars; -import org.thymeleaf.expression.Dates; -import org.thymeleaf.expression.ExecutionInfo; -import org.thymeleaf.expression.Ids; -import org.thymeleaf.expression.Lists; -import org.thymeleaf.expression.Maps; -import org.thymeleaf.expression.Messages; -import org.thymeleaf.expression.Numbers; -import org.thymeleaf.expression.Objects; -import org.thymeleaf.expression.Sets; -import org.thymeleaf.expression.Strings; -import org.thymeleaf.expression.Uris; - -/** - * Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context. - * - * @author Kazuki Shimizu - */ -// @formatter:off -@NativeHint( - trigger = ThymeleafLanguageDriver.class, - resources = @ResourceHint( - patterns = "mybatis-thymeleaf.properties" - ) -) -@TypeHint( - types = { - ThymeleafLanguageDriver.class, - SqlGeneratorConfig.class, - ThymeleafLanguageDriverConfig.class, - TemplateFilePathProvider.class, - SpringNamedParameterBindVariableRender.class, - Likes.class, - Uris.class, - Calendars.class, - Dates.class, - Bools.class, - Numbers.class, - Objects.class, - Strings.class, - Arrays.class, - Lists.class, - Sets.class, - Maps.class, - Aggregates.class, - Messages.class, - Ids.class, - ExecutionInfo.class - }, - access = { - PUBLIC_CONSTRUCTORS, - PUBLIC_CLASSES, - PUBLIC_FIELDS, - PUBLIC_METHODS, - DECLARED_CLASSES, - DECLARED_CONSTRUCTORS, - DECLARED_FIELDS, - DECLARED_METHODS - } -) -// @formatter:on -public class MyBatisThymeleafNativeConfiguration implements NativeConfiguration { -} diff --git a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.java b/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.java deleted file mode 100644 index f8dd89a..0000000 --- a/extensions/src/main/java/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.java +++ /dev/null @@ -1,109 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex; - -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS; -import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS; - -import org.apache.velocity.runtime.ParserPoolImpl; -import org.apache.velocity.runtime.directive.Break; -import org.apache.velocity.runtime.directive.Define; -import org.apache.velocity.runtime.directive.Evaluate; -import org.apache.velocity.runtime.directive.Foreach; -import org.apache.velocity.runtime.directive.Include; -import org.apache.velocity.runtime.directive.Macro; -import org.apache.velocity.runtime.directive.Parse; -import org.apache.velocity.runtime.directive.Stop; -import org.apache.velocity.runtime.parser.StandardParser; -import org.apache.velocity.runtime.resource.ResourceCacheImpl; -import org.apache.velocity.runtime.resource.ResourceManagerImpl; -import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader; -import org.apache.velocity.util.introspection.TypeConversionHandlerImpl; -import org.apache.velocity.util.introspection.UberspectImpl; -import org.mybatis.scripting.velocity.InDirective; -import org.mybatis.scripting.velocity.ParameterMappingCollector; -import org.mybatis.scripting.velocity.RepeatDirective; -import org.mybatis.scripting.velocity.SetDirective; -import org.mybatis.scripting.velocity.TrimDirective; -import org.mybatis.scripting.velocity.VelocityLanguageDriver; -import org.mybatis.scripting.velocity.VelocityLanguageDriverConfig; -import org.mybatis.scripting.velocity.WhereDirective; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.ResourceHint; -import org.springframework.nativex.hint.TypeHint; -import org.springframework.nativex.type.NativeConfiguration; - -/** - * Registers hints to make a MyBatis Velocity component work in a Spring Native context. - * - * @author Kazuki Shimizu - */ -// @formatter:off -@NativeHint( - trigger = VelocityLanguageDriver.class, - resources = @ResourceHint( - patterns = { - "mybatis-velocity.properties", - "org/apache/velocity/runtime/defaults/.*.properties" - } - ) -) -@TypeHint( - types = { - VelocityLanguageDriver.class, - VelocityLanguageDriverConfig.class, - ParameterMappingCollector.class, - TrimDirective.class, - WhereDirective.class, - SetDirective.class, - InDirective.class, - RepeatDirective.class, - ResourceManagerImpl.class, - ClasspathResourceLoader.class, - ResourceCacheImpl.class, - ParserPoolImpl.class, - UberspectImpl.class, - TypeConversionHandlerImpl.class, - StandardParser.class, - Foreach.class, - Include.class, - Parse.class, - Macro.class, - Evaluate.class, - Break.class, - Define.class, - Stop.class - }, - access = { - PUBLIC_CONSTRUCTORS, - PUBLIC_CLASSES, - PUBLIC_FIELDS, - PUBLIC_METHODS, - DECLARED_CLASSES, - DECLARED_CONSTRUCTORS, - DECLARED_FIELDS, - DECLARED_METHODS - } -) -// @formatter:on -public class MyBatisVelocityNativeConfiguration implements NativeConfiguration { -} diff --git a/extensions/src/main/resources/META-INF/spring.factories b/extensions/src/main/resources/META-INF/spring.factories deleted file mode 100644 index d2a044d..0000000 --- a/extensions/src/main/resources/META-INF/spring.factories +++ /dev/null @@ -1,21 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -org.springframework.nativex.type.NativeConfiguration=\ - org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration,\ - org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration,\ - org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration,\ - org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration diff --git a/extensions/src/site/site.xml b/extensions/src/site/site.xml deleted file mode 100644 index b70b171..0000000 --- a/extensions/src/site/site.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/format.xml b/format.xml deleted file mode 100644 index 6c1a025..0000000 --- a/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/ko/apidocs/allclasses-index.html b/ko/apidocs/allclasses-index.html new file mode 100644 index 0000000..f5f6594 --- /dev/null +++ b/ko/apidocs/allclasses-index.html @@ -0,0 +1,83 @@ + + + + +All Classes and Interfaces (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    All Classes and Interfaces

    +
    +
    +
    Classes
    +
    +
    Class
    +
    Description
    + +
    +
    Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
    +
    + +
    +
    Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
    +
    + +
    +
    Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
    +
    + +
    +
    Registers hints to make a MyBatis Velocity component work in a Spring Native context.
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/allpackages-index.html b/ko/apidocs/allpackages-index.html new file mode 100644 index 0000000..803988f --- /dev/null +++ b/ko/apidocs/allpackages-index.html @@ -0,0 +1,67 @@ + + + + +All Packages (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    All Packages

    +
    +
    Package Summary
    +
    +
    Package
    +
    Description
    + +
     
    +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/copy.svg b/ko/apidocs/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/ko/apidocs/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/ko/apidocs/element-list b/ko/apidocs/element-list new file mode 100644 index 0000000..6b31b7e --- /dev/null +++ b/ko/apidocs/element-list @@ -0,0 +1 @@ +org.mybatis.spring.nativex diff --git a/ko/apidocs/help-doc.html b/ko/apidocs/help-doc.html new file mode 100644 index 0000000..c5fae5b --- /dev/null +++ b/ko/apidocs/help-doc.html @@ -0,0 +1,186 @@ + + + + +API Help (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +

    JavaDoc Help

    + +
    +
    +

    Navigation

    +Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
    +
    +
    +

    Kinds of Pages

    +The following sections describe the different kinds of pages in this collection. +
    +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

    +
      +
    • Interfaces
    • +
    • Classes
    • +
    • Enums
    • +
    • Exception Classes
    • +
    • Annotation Types
    • +
    +
    +
    +

    Class or Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

    +
      +
    • Class Inheritance Diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class or Interface Declaration
    • +
    • Class or Interface Description
    • +
    +
    +
      +
    • Nested Class Summary
    • +
    • Enum Constant Summary
    • +
    • Field Summary
    • +
    • Property Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    +
    +
      +
    • Enum Constant Details
    • +
    • Field Details
    • +
    • Property Details
    • +
    • Constructor Details
    • +
    • Method Details
    • +
    • Element Details
    • +
    +

    Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

    +

    The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
    +
    +

    Other Files

    +

    Packages and modules may contain pages with additional information related to the declarations nearby.

    +
    +
    +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

    +
    +
    +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
    • +
    +
    +
    +

    All Packages

    +

    The All Packages page contains an alphabetic index of all packages contained in the documentation.

    +
    +
    +

    All Classes and Interfaces

    +

    The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

    +
    +
    +

    Index

    +

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

    +
    +
    +
    +This help file applies to API documentation generated by the standard doclet.
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/index-all.html b/ko/apidocs/index-all.html new file mode 100644 index 0000000..7c999d1 --- /dev/null +++ b/ko/apidocs/index-all.html @@ -0,0 +1,93 @@ + + + + +Index (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +M O 
    All Classes and Interfaces|All Packages +

    M

    +
    +
    MyBatisDynamicSqlNativeConfiguration - Class in org.mybatis.spring.nativex
    +
    +
    Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
    +
    +
    MyBatisDynamicSqlNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
    +
     
    +
    MyBatisFreeMarkerNativeConfiguration - Class in org.mybatis.spring.nativex
    +
    +
    Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
    +
    +
    MyBatisFreeMarkerNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
    +
     
    +
    MyBatisThymeleafNativeConfiguration - Class in org.mybatis.spring.nativex
    +
    +
    Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
    +
    +
    MyBatisThymeleafNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
    +
     
    +
    MyBatisVelocityNativeConfiguration - Class in org.mybatis.spring.nativex
    +
    +
    Registers hints to make a MyBatis Velocity component work in a Spring Native context.
    +
    +
    MyBatisVelocityNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
    +
     
    +
    +

    O

    +
    +
    org.mybatis.spring.nativex - package org.mybatis.spring.nativex
    +
     
    +
    +M O 
    All Classes and Interfaces|All Packages
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/index.html b/ko/apidocs/index.html new file mode 100644 index 0000000..5cc2fc6 --- /dev/null +++ b/ko/apidocs/index.html @@ -0,0 +1,25 @@ + + + + +mybatis-spring-native-extensions 0.1.0-SNAPSHOT API + + + + + + + + + + +
    + +

    org/mybatis/spring/nativex/package-summary.html

    +
    + + diff --git a/ko/apidocs/legal/ADDITIONAL_LICENSE_INFO b/ko/apidocs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/ko/apidocs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/ko/apidocs/legal/ASSEMBLY_EXCEPTION b/ko/apidocs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/ko/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/ko/apidocs/legal/LICENSE b/ko/apidocs/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/ko/apidocs/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/ko/apidocs/legal/jquery.md b/ko/apidocs/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/ko/apidocs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/ko/apidocs/legal/jqueryUI.md b/ko/apidocs/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/ko/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/ko/apidocs/link.svg b/ko/apidocs/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/ko/apidocs/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/ko/apidocs/member-search-index.js b/ko/apidocs/member-search-index.js new file mode 100644 index 0000000..054b926 --- /dev/null +++ b/ko/apidocs/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"org.mybatis.spring.nativex","c":"MyBatisDynamicSqlNativeConfiguration","l":"MyBatisDynamicSqlNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisFreeMarkerNativeConfiguration","l":"MyBatisFreeMarkerNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisThymeleafNativeConfiguration","l":"MyBatisThymeleafNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisVelocityNativeConfiguration","l":"MyBatisVelocityNativeConfiguration()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/ko/apidocs/module-search-index.js b/ko/apidocs/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/ko/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..977a617 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,168 @@ + + + + +MyBatisCoreNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisCoreNativeConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.nativex.type.NativeConfiguration
    +
    +
    +
    public class MyBatisCoreNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
    +
    Registers hints to make a MyBatis Core components work in a Spring Native context.
    +
    +
    Author:
    +
    Kazuki Shimizu, Josh Long
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisCoreNativeConfiguration

        +
        public MyBatisCoreNativeConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..1537aae --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisDynamicSqlNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisDynamicSqlNativeConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.nativex.type.NativeConfiguration
    +
    +
    +
    public class MyBatisDynamicSqlNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
    +
    Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisDynamicSqlNativeConfiguration

        +
        public MyBatisDynamicSqlNativeConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..f9c9e9f --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisFreeMarkerNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisFreeMarkerNativeConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.nativex.type.NativeConfiguration
    +
    +
    +
    public class MyBatisFreeMarkerNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
    +
    Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisFreeMarkerNativeConfiguration

        +
        public MyBatisFreeMarkerNativeConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..e4ed7a9 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,192 @@ + + + + +MyBatisMapperNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisMapperNativeConfigurationProcessor

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
    +
    +
    +
    public class MyBatisMapperNativeConfigurationProcessor +extends Object +implements org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
    +
    Finds and registers reflection hints for all scanned mappers in the beanFactory.
    +
    +
    Author:
    +
    Kazuki Shimizu, Josh Long
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisMapperNativeConfigurationProcessor

        +
        public MyBatisMapperNativeConfigurationProcessor()
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        process

        +
        public void process(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, + org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry registry)
        +
        +
        Specified by:
        +
        process in interface org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html new file mode 100644 index 0000000..44a8ada --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html @@ -0,0 +1,145 @@ + + + + +MyBatisResourcesScan.List (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Annotation Type MyBatisResourcesScan.List

    +
    +
    +
    +
    Enclosing class:
    +
    MyBatisResourcesScan
    +
    +
    +
    @Import(org.mybatis.spring.nativex.MyBatisScannedResourcesHolder.RepeatableRegistrar.class) +@Retention(RUNTIME) +public static @interface MyBatisResourcesScan.List
    +
    Repeatable annotation for MyBatisResourcesScan.
    +
    +
    +
      + +
    • +
      +

      Optional Element Summary

      +
      Optional Elements
      +
      +
      Modifier and Type
      +
      Optional Element
      +
      Description
      + + +
       
      +
      +
      +
    • +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html new file mode 100644 index 0000000..a9e007e --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html @@ -0,0 +1,336 @@ + + + + +MyBatisResourcesScan (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Annotation Type MyBatisResourcesScan

    +
    +
    +
    +
    @Import(org.mybatis.spring.nativex.MyBatisScannedResourcesHolder.Registrar.class) +@Retention(RUNTIME) +@Repeatable(List.class) +public @interface MyBatisResourcesScan
    +
    The annotation that indicates scan rules of resources for running on native-image.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Element Details

      +
        +
      • +
        +

        typeAliasesPackages

        +
        String[] typeAliasesPackages
        +
        Return package names for scanning type aliases. +

        + Default is none. +

        +
        +
        Returns:
        +
        package names for scanning type aliases
        +
        +
        +
        Default:
        +
        {}
        +
        +
        +
      • +
      • +
        +

        typeAliasesSupperType

        +
        Class<?> typeAliasesSupperType
        +
        Return the filter type(super class) for scanning type aliases. +

        + Default is none. +

        +
        +
        Returns:
        +
        the filter type for scanning type aliases
        +
        +
        +
        Default:
        +
        void.class
        +
        +
        +
      • +
      • +
        +

        typeHandlerPackages

        +
        String[] typeHandlerPackages
        +
        Return package names for scanning type handler. +

        + Default is none. +

        +
        +
        Returns:
        +
        package names for scanning type handler
        +
        +
        +
        Default:
        +
        {}
        +
        +
        +
      • +
      • +
        +

        mapperLocationPatterns

        +
        String[] mapperLocationPatterns
        +
        Return location patterns for scanning mapper xml file under classpath. +

        + Default is none. +

        +
        +
        Returns:
        +
        location patterns for scanning mapper xml file under classpath
        +
        +
        +
        Default:
        +
        {}
        +
        +
        +
      • +
      • +
        +

        reflectionTypePackages

        +
        String[] reflectionTypePackages
        +
        Return package names for scanning reflection hint type. +

        + Default is none. +

        +
        +
        Returns:
        +
        package names for scanning reflection hint type
        +
        +
        +
        Default:
        +
        {}
        +
        +
        +
      • +
      • +
        +

        reflectionTypeSupperType

        +
        Class<?> reflectionTypeSupperType
        +
        Return the filter type(super class) for scanning reflection hint type. +

        + Default is none. +

        +
        +
        Returns:
        +
        the filter type for scanning reflection hint type
        +
        +
        +
        Default:
        +
        void.class
        +
        +
        +
      • +
      • +
        +

        typeAccesses

        +
        org.springframework.nativex.hint.TypeAccess[] typeAccesses
        +
        Return access scopes for applying scanned classes to reflection hint. +

        + Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS, + DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS, + QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS. +

        +
        +
        Returns:
        +
        access scopes for applying scanned classes to reflection hint
        +
        +
        +
        Default:
        +
        {}
        +
        +
        +
      • +
      • +
        +

        resourceLocationPatterns

        +
        String[] resourceLocationPatterns
        +
        Return location patterns for adding resource hint file under classpath. +

        + Default is none. +

        +
        +
        Returns:
        +
        location patterns for adding resource hint file under classpath
        +
        +
        +
        Default:
        +
        {}
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..25d29c8 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html @@ -0,0 +1,364 @@ + + + + +MyBatisScannedResourcesHolder (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisScannedResourcesHolder

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisScannedResourcesHolder
    +
    +
    +
    +
    public class MyBatisScannedResourcesHolder +extends Object
    +
    The holder class that scanned resources using @MyBatisResourcesScan.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisScannedResourcesHolder

        +
        public MyBatisScannedResourcesHolder()
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getTypeAliasesClasses

        +
        public Set<Class<?>> getTypeAliasesClasses()
        +
        Return class list of scanned type aliases.
        +
        +
        Returns:
        +
        class list of scanned type aliases
        +
        +
        +
      • +
      • +
        +

        setTypeAliasesClasses

        +
        public void setTypeAliasesClasses(Set<Class<?>> typeAliasClasses)
        +
        Set class list of scanned type aliases.
        +
        +
        Parameters:
        +
        typeAliasClasses - class list of scanned type aliases
        +
        +
        +
      • +
      • +
        +

        getTypeHandlerClasses

        +
        public Set<Class<?>> getTypeHandlerClasses()
        +
        Return class list of scanned type handler.
        +
        +
        Returns:
        +
        class list of scanned type handler
        +
        +
        +
      • +
      • +
        +

        setTypeHandlerClasses

        +
        public void setTypeHandlerClasses(Set<Class<?>> typeHandlerClasses)
        +
        Set class list of scanned type handler.
        +
        +
        Parameters:
        +
        typeHandlerClasses - class list of scanned type handler
        +
        +
        +
      • +
      • +
        +

        getMapperLocations

        +
        public Set<String> getMapperLocations()
        +
        Return location list of scanned mapper xml file.
        +
        +
        Returns:
        +
        location list of scanned mapper xml file
        +
        +
        +
      • +
      • +
        +

        setMapperLocations

        +
        public void setMapperLocations(Set<String> mapperLocations)
        +
        Set location list of scanned mapper xml file.
        +
        +
        Parameters:
        +
        mapperLocations - location list of scanned mapper xml file
        +
        +
        +
      • +
      • +
        +

        setReflectionClasses

        +
        public void setReflectionClasses(Set<Class<?>> reflectionClasses)
        +
        Set class list of scanned reflection hint type.
        +
        +
        Parameters:
        +
        reflectionClasses - class list of scanned reflection hint type
        +
        +
        +
      • +
      • +
        +

        getReflectionClasses

        +
        public Set<Class<?>> getReflectionClasses()
        +
        Return class list of scanned reflection hint type.
        +
        +
        Returns:
        +
        class list of scanned reflection hint type
        +
        +
        +
      • +
      • +
        +

        setReflectionTypeAccesses

        +
        public void setReflectionTypeAccesses(org.springframework.nativex.hint.TypeAccess[] reflectionTypeAccesses)
        +
        Set access scopes for applying reflection type that scanned.
        +
        +
        Parameters:
        +
        reflectionTypeAccesses - access scopes for applying reflection type that scanned
        +
        +
        +
      • +
      • +
        +

        getReflectionTypeAccesses

        +
        public org.springframework.nativex.hint.TypeAccess[] getReflectionTypeAccesses()
        +
        Return access scopes for applying reflection type that scanned.
        +
        +
        Returns:
        +
        access scopes for applying reflection type that scanned
        +
        +
        +
      • +
      • +
        +

        setResourceLocations

        +
        public void setResourceLocations(Set<String> resourceLocations)
        +
        Set location list of adding resource hint file.
        +
        +
        Parameters:
        +
        resourceLocations - location list of adding resource hint file
        +
        +
        +
      • +
      • +
        +

        getResourceLocations

        +
        public Set<String> getResourceLocations()
        +
        Return location list of adding resource hint file.
        +
        +
        Returns:
        +
        location list of adding resource hint file
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..7fd092f --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,192 @@ + + + + +MyBatisScannedResourcesNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisScannedResourcesNativeConfigurationProcessor

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
    +
    +
    +
    public class MyBatisScannedResourcesNativeConfigurationProcessor +extends Object +implements org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
    +
    Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the BeanFactory.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisScannedResourcesNativeConfigurationProcessor

        +
        public MyBatisScannedResourcesNativeConfigurationProcessor()
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        process

        +
        public void process(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, + org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry registry)
        +
        +
        Specified by:
        +
        process in interface org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..3de9cd9 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,162 @@ + + + + +MyBatisSpringNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisSpringNativeConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.nativex.type.NativeConfiguration
    +
    +
    +
    public class MyBatisSpringNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
    +
    Registers hints to make a MyBatis Spring component work in a Spring Native context.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisSpringNativeConfiguration

        +
        public MyBatisSpringNativeConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..503750f --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisThymeleafNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisThymeleafNativeConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.nativex.type.NativeConfiguration
    +
    +
    +
    public class MyBatisThymeleafNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
    +
    Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisThymeleafNativeConfiguration

        +
        public MyBatisThymeleafNativeConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..7fb414d --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisVelocityNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisVelocityNativeConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    org.springframework.nativex.type.NativeConfiguration
    +
    +
    +
    public class MyBatisVelocityNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
    +
    Registers hints to make a MyBatis Velocity component work in a Spring Native context.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisVelocityNativeConfiguration

        +
        public MyBatisVelocityNativeConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..6ef2f74 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,157 @@ + + + + +MyBatisSpringNativeAutoConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MyBatisSpringNativeAutoConfiguration

    +
    +
    java.lang.Object +
    org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration
    +
    +
    +
    +
    @Configuration +@ConditionalOnClass({org.apache.ibatis.session.Configuration.class,org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer.class}) +@AutoConfigureBefore(org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration.class) +public class MyBatisSpringNativeAutoConfiguration +extends Object
    +
    The configuration class that configure automatically for spring-native.
    +
    +
    Author:
    +
    Kazuki Shimizu
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MyBatisSpringNativeAutoConfiguration

        +
        public MyBatisSpringNativeAutoConfiguration()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..af94105 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration

    +
    +No usage of org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..5832f92 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,108 @@ + + + + +org.mybatis.spring.nativex.autoconfigure (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package org.mybatis.spring.nativex.autoconfigure

    +
    +
    +
    package org.mybatis.spring.nativex.autoconfigure
    +
    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html new file mode 100644 index 0000000..da42b1d --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html @@ -0,0 +1,75 @@ + + + + +org.mybatis.spring.nativex.autoconfigure Class Hierarchy (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package org.mybatis.spring.nativex.autoconfigure

    +
    +Package Hierarchies: + +
    +

    Class Hierarchy

    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html new file mode 100644 index 0000000..78016fb --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html @@ -0,0 +1,61 @@ + + + + +Uses of Package org.mybatis.spring.nativex.autoconfigure (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    org.mybatis.spring.nativex.autoconfigure

    +
    +No usage of org.mybatis.spring.nativex.autoconfigure
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..c4349c0 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration

    +
    +No usage of org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..70f5921 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration

    +
    +No usage of org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..f1cb09b --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration

    +
    +No usage of org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..23ce672 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor

    +
    +No usage of org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html new file mode 100644 index 0000000..518ba63 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html @@ -0,0 +1,61 @@ + + + + +Uses of Annotation Type org.mybatis.spring.nativex.MyBatisResourcesScan.List (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Annotation Type
    org.mybatis.spring.nativex.MyBatisResourcesScan.List

    +
    +No usage of org.mybatis.spring.nativex.MyBatisResourcesScan.List
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html new file mode 100644 index 0000000..bdc5387 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html @@ -0,0 +1,61 @@ + + + + +Uses of Annotation Type org.mybatis.spring.nativex.MyBatisResourcesScan (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Annotation Type
    org.mybatis.spring.nativex.MyBatisResourcesScan

    +
    +No usage of org.mybatis.spring.nativex.MyBatisResourcesScan
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..59327ad --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisScannedResourcesHolder (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisScannedResourcesHolder

    +
    +No usage of org.mybatis.spring.nativex.MyBatisScannedResourcesHolder
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..97989a4 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor

    +
    +No usage of org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..cff583f --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration

    +
    +No usage of org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..b3c91d6 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration

    +
    +No usage of org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..4922e47 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration

    +
    +No usage of org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/package-summary.html b/ko/apidocs/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..79d7ea0 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,108 @@ + + + + +org.mybatis.spring.nativex (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package org.mybatis.spring.nativex

    +
    +
    +
    package org.mybatis.spring.nativex
    +
    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/package-tree.html b/ko/apidocs/org/mybatis/spring/nativex/package-tree.html new file mode 100644 index 0000000..a5c1452 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.mybatis.spring.nativex Class Hierarchy (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package org.mybatis.spring.nativex

    +
    +
    +

    Class Hierarchy

    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/org/mybatis/spring/nativex/package-use.html b/ko/apidocs/org/mybatis/spring/nativex/package-use.html new file mode 100644 index 0000000..03097b5 --- /dev/null +++ b/ko/apidocs/org/mybatis/spring/nativex/package-use.html @@ -0,0 +1,60 @@ + + + + +Uses of Package org.mybatis.spring.nativex (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    org.mybatis.spring.nativex

    +
    +No usage of org.mybatis.spring.nativex
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/overview-summary.html b/ko/apidocs/overview-summary.html new file mode 100644 index 0000000..adf2c76 --- /dev/null +++ b/ko/apidocs/overview-summary.html @@ -0,0 +1,25 @@ + + + + +mybatis-spring-native-core 0.1.0-SNAPSHOT API + + + + + + + + + + +
    + +

    index.html

    +
    + + diff --git a/ko/apidocs/overview-tree.html b/ko/apidocs/overview-tree.html new file mode 100644 index 0000000..99ea3b9 --- /dev/null +++ b/ko/apidocs/overview-tree.html @@ -0,0 +1,77 @@ + + + + +Class Hierarchy (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For All Packages

    +
    +Package Hierarchies: + +
    +

    Class Hierarchy

    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/ko/apidocs/package-search-index.js b/ko/apidocs/package-search-index.js new file mode 100644 index 0000000..50d984e --- /dev/null +++ b/ko/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.mybatis.spring.nativex"}];updateSearchResults(); \ No newline at end of file diff --git a/ko/apidocs/resources/glass.png b/ko/apidocs/resources/glass.png new file mode 100644 index 0000000..a7f591f Binary files /dev/null and b/ko/apidocs/resources/glass.png differ diff --git a/ko/apidocs/resources/x.png b/ko/apidocs/resources/x.png new file mode 100644 index 0000000..30548a7 Binary files /dev/null and b/ko/apidocs/resources/x.png differ diff --git a/ko/apidocs/script-dir/jquery-3.6.1.min.js b/ko/apidocs/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/ko/apidocs/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
    "),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
      ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
      ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
      ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
      ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/ko/apidocs/script.js b/ko/apidocs/script.js new file mode 100644 index 0000000..8b9691a --- /dev/null +++ b/ko/apidocs/script.js @@ -0,0 +1,253 @@ +/* + * Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; + +var oddRowColor = "odd-row-color"; +var evenRowColor = "even-row-color"; +var sortAsc = "sort-asc"; +var sortDesc = "sort-desc"; +var tableTab = "table-tab"; +var activeTableTab = "active-table-tab"; + +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +// Helper for making content containing release names comparable lexicographically +function makeComparable(s) { + return s.toLowerCase().replace(/(\d+)/g, + function(n, m) { + return ("000" + m).slice(-4); + }); +} + +// Switches between two styles depending on a condition +function toggleStyle(classList, condition, trueStyle, falseStyle) { + if (condition) { + classList.remove(falseStyle); + classList.add(trueStyle); + } else { + classList.remove(trueStyle); + classList.add(falseStyle); + } +} + +// Sorts the rows in a table lexicographically by the content of a specific column +function sortTable(header, columnIndex, columns) { + var container = header.parentElement; + var descending = header.classList.contains(sortAsc); + container.querySelectorAll("div.table-header").forEach( + function(header) { + header.classList.remove(sortAsc); + header.classList.remove(sortDesc); + } + ) + var cells = container.children; + var rows = []; + for (var i = columns; i < cells.length; i += columns) { + rows.push(Array.prototype.slice.call(cells, i, i + columns)); + } + var comparator = function(a, b) { + var ka = makeComparable(a[columnIndex].textContent); + var kb = makeComparable(b[columnIndex].textContent); + if (ka < kb) + return descending ? 1 : -1; + if (ka > kb) + return descending ? -1 : 1; + return 0; + }; + var sorted = rows.sort(comparator); + var visible = 0; + sorted.forEach(function(row) { + if (row[0].style.display !== 'none') { + var isEvenRow = visible++ % 2 === 0; + } + row.forEach(function(cell) { + toggleStyle(cell.classList, isEvenRow, evenRowColor, oddRowColor); + container.appendChild(cell); + }) + }); + toggleStyle(header.classList, descending, sortDesc, sortAsc); +} + +// Toggles the visibility of a table category in all tables in a page +function toggleGlobal(checkbox, selected, columns) { + var display = checkbox.checked ? '' : 'none'; + document.querySelectorAll("div.table-tabs").forEach(function(t) { + var id = t.parentElement.getAttribute("id"); + var selectedClass = id + "-tab" + selected; + // if selected is empty string it selects all uncategorized entries + var selectUncategorized = !Boolean(selected); + var visible = 0; + document.querySelectorAll('div.' + id) + .forEach(function(elem) { + if (selectUncategorized) { + if (elem.className.indexOf(selectedClass) === -1) { + elem.style.display = display; + } + } else if (elem.classList.contains(selectedClass)) { + elem.style.display = display; + } + if (elem.style.display === '') { + var isEvenRow = visible++ % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + } + }); + var displaySection = visible === 0 ? 'none' : ''; + t.parentElement.style.display = displaySection; + document.querySelector("li#contents-" + id).style.display = displaySection; + }) +} + +// Shows the elements of a table belonging to a specific category +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} +// Copy the contents of the local snippet to the clipboard +function copySnippet(button) { + copyToClipboard(button.nextElementSibling.innerText); + switchCopyLabel(button, button.firstElementChild); +} +function copyToClipboard(content) { + var textarea = document.createElement("textarea"); + textarea.style.height = 0; + document.body.appendChild(textarea); + textarea.value = content; + textarea.select(); + document.execCommand("copy"); + document.body.removeChild(textarea); +} +function switchCopyLabel(button, span) { + var copied = span.getAttribute("data-copied"); + button.classList.add("visible"); + var initialLabel = span.innerHTML; + span.innerHTML = copied; + setTimeout(function() { + button.classList.remove("visible"); + setTimeout(function() { + if (initialLabel !== copied) { + span.innerHTML = initialLabel; + } + }, 100); + }, 1900); +} +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + var timeoutId; + contentDiv.addEventListener("scroll", function(e) { + if (timeoutId) { + clearTimeout(timeoutId); + } + timeoutId = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + }, 100); + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/ko/apidocs/search-page.js b/ko/apidocs/search-page.js new file mode 100644 index 0000000..540c90f --- /dev/null +++ b/ko/apidocs/search-page.js @@ -0,0 +1,284 @@ +/* + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +"use strict"; +$(function() { + var copy = $("#page-search-copy"); + var expand = $("#page-search-expand"); + var searchLink = $("span#page-search-link"); + var redirect = $("input#search-redirect"); + function setSearchUrlTemplate() { + var href = document.location.href.split(/[#?]/)[0]; + href += "?q=" + "%s"; + if (redirect.is(":checked")) { + href += "&r=1"; + } + searchLink.html(href); + copy[0].onmouseenter(); + } + function copyLink(e) { + copyToClipboard(this.previousSibling.innerText); + switchCopyLabel(this, this.lastElementChild); + } + copy.click(copyLink); + copy[0].onmouseenter = function() {}; + redirect.click(setSearchUrlTemplate); + setSearchUrlTemplate(); + copy.prop("disabled", false); + redirect.prop("disabled", false); + expand.click(function (e) { + var searchInfo = $("div.page-search-info"); + if(this.parentElement.hasAttribute("open")) { + searchInfo.attr("style", "border-width: 0;"); + } else { + searchInfo.attr("style", "border-width: 1px;").height(searchInfo.prop("scrollHeight")); + } + }); +}); +$(window).on("load", function() { + var input = $("#page-search-input"); + var reset = $("#page-search-reset"); + var notify = $("#page-search-notify"); + var resultSection = $("div#result-section"); + var resultContainer = $("div#result-container"); + var searchTerm = ""; + var activeTab = ""; + var fixedTab = false; + var visibleTabs = []; + var feelingLucky = false; + function renderResults(result) { + if (!result.length) { + notify.html(messages.noResult); + } else if (result.length === 1) { + notify.html(messages.oneResult); + } else { + notify.html(messages.manyResults.replace("{0}", result.length)); + } + resultContainer.empty(); + var r = { + "types": [], + "members": [], + "packages": [], + "modules": [], + "searchTags": [] + }; + for (var i in result) { + var item = result[i]; + var arr = r[item.category]; + arr.push(item); + } + if (!activeTab || r[activeTab].length === 0 || !fixedTab) { + Object.keys(r).reduce(function(prev, curr) { + if (r[curr].length > 0 && r[curr][0].score > prev) { + activeTab = curr; + return r[curr][0].score; + } + return prev; + }, 0); + } + if (feelingLucky && activeTab) { + notify.html(messages.redirecting) + var firstItem = r[activeTab][0]; + window.location = getURL(firstItem.indexItem, firstItem.category); + return; + } + if (result.length > 20) { + if (searchTerm[searchTerm.length - 1] === ".") { + if (activeTab === "types" && r["members"].length > r["types"].length) { + activeTab = "members"; + } else if (activeTab === "packages" && r["types"].length > r["packages"].length) { + activeTab = "types"; + } + } + } + var categoryCount = Object.keys(r).reduce(function(prev, curr) { + return prev + (r[curr].length > 0 ? 1 : 0); + }, 0); + visibleTabs = []; + var tabContainer = $("
      ").appendTo(resultContainer); + for (var key in r) { + var id = "#result-tab-" + key.replace("searchTags", "search_tags"); + if (r[key].length) { + var count = r[key].length >= 1000 ? "999+" : r[key].length; + if (result.length > 20 && categoryCount > 1) { + var button = $("").appendTo(tabContainer); + button.click(key, function(e) { + fixedTab = true; + renderResult(e.data, $(this)); + }); + visibleTabs.push(key); + } else { + $("" + categories[key] + + " (" + count + ")").appendTo(tabContainer); + renderTable(key, r[key]).appendTo(resultContainer); + tabContainer = $("
      ").appendTo(resultContainer); + + } + } + } + if (activeTab && result.length > 20 && categoryCount > 1) { + $("button#result-tab-" + activeTab).addClass("active-table-tab"); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + } + resultSection.show(); + function renderResult(category, button) { + activeTab = category; + setSearchUrl(); + resultContainer.find("div.summary-table").remove(); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + button.siblings().removeClass("active-table-tab"); + button.addClass("active-table-tab"); + } + } + function selectTab(category) { + $("button#result-tab-" + category).click(); + } + function renderTable(category, items) { + var table = $("
      ") + .addClass(category === "modules" + ? "one-column-search-results" + : "two-column-search-results"); + var col1, col2; + if (category === "modules") { + col1 = "Module"; + } else if (category === "packages") { + col1 = "Module"; + col2 = "Package"; + } else if (category === "types") { + col1 = "Package"; + col2 = "Class" + } else if (category === "members") { + col1 = "Class"; + col2 = "Member"; + } else if (category === "searchTags") { + col1 = "Location"; + col2 = "Name"; + } + $("
      " + col1 + "
      ").appendTo(table); + if (category !== "modules") { + $("
      " + col2 + "
      ").appendTo(table); + } + $.each(items, function(index, item) { + var rowColor = index % 2 ? "odd-row-color" : "even-row-color"; + renderItem(item, table, rowColor); + }); + return table; + } + function renderItem(item, table, rowColor) { + var label = getHighlightedText(item.input, item.boundaries, item.prefix.length, item.input.length); + var link = $("") + .attr("href", getURL(item.indexItem, item.category)) + .attr("tabindex", "0") + .addClass("search-result-link") + .html(label); + var container = getHighlightedText(item.input, item.boundaries, 0, item.prefix.length - 1); + if (item.category === "searchTags") { + container = item.indexItem.h || ""; + } + if (item.category !== "modules") { + $("
      ").html(container).addClass("col-plain").addClass(rowColor).appendTo(table); + } + $("
      ").html(link).addClass("col-last").addClass(rowColor).appendTo(table); + } + var timeout; + function schedulePageSearch() { + if (timeout) { + clearTimeout(timeout); + } + timeout = setTimeout(function () { + doPageSearch() + }, 100); + } + function doPageSearch() { + setSearchUrl(); + var term = searchTerm = input.val().trim(); + if (term === "") { + notify.html(messages.enterTerm); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + resultSection.hide(); + } else { + notify.html(messages.searching); + doSearch({ term: term, maxResults: 1200 }, renderResults); + } + } + function setSearchUrl() { + var query = input.val().trim(); + var url = document.location.pathname; + if (query) { + url += "?q=" + encodeURI(query); + if (activeTab && fixedTab) { + url += "&c=" + activeTab; + } + } + history.replaceState({query: query}, "", url); + } + input.on("input", function(e) { + feelingLucky = false; + schedulePageSearch(); + }); + $(document).keydown(function(e) { + if ((e.ctrlKey || e.metaKey) && (e.key === "ArrowLeft" || e.key === "ArrowRight")) { + if (activeTab && visibleTabs.length > 1) { + var idx = visibleTabs.indexOf(activeTab); + idx += e.key === "ArrowLeft" ? visibleTabs.length - 1 : 1; + selectTab(visibleTabs[idx % visibleTabs.length]); + return false; + } + } + }); + reset.click(function() { + notify.html(messages.enterTerm); + resultSection.hide(); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + input.val('').focus(); + setSearchUrl(); + }); + input.prop("disabled", false); + reset.prop("disabled", false); + + var urlParams = new URLSearchParams(window.location.search); + if (urlParams.has("q")) { + input.val(urlParams.get("q")) + } + if (urlParams.has("c")) { + activeTab = urlParams.get("c"); + fixedTab = true; + } + if (urlParams.get("r")) { + feelingLucky = true; + } + if (input.val()) { + doPageSearch(); + } else { + notify.html(messages.enterTerm); + } + input.select().focus(); +}); diff --git a/ko/apidocs/search.html b/ko/apidocs/search.html new file mode 100644 index 0000000..906a788 --- /dev/null +++ b/ko/apidocs/search.html @@ -0,0 +1,75 @@ + + + + +Search (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +

      Search

      +
      + + +
      +Additional resources +
      +
      +
      +

      The help page provides an introduction to the scope and syntax of JavaDoc search.

      +

      You can use the <ctrl> or <cmd> keys in combination with the left and right arrow keys to switch between result tabs in this page.

      +

      The URL template below may be used to configure this page as a search engine in browsers that support this feature. It has been tested to work in Google Chrome and Mozilla Firefox. Note that other browsers may not support this feature or require a different URL format.

      +link +

      + +

      +
      +

      Loading search index...

      + +
      +
      +
      + +
      +
      +
      + + diff --git a/ko/apidocs/search.js b/ko/apidocs/search.js new file mode 100644 index 0000000..7673397 --- /dev/null +++ b/ko/apidocs/search.js @@ -0,0 +1,458 @@ +/* + * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +"use strict"; +const messages = { + enterTerm: "Enter a search term", + noResult: "No results found", + oneResult: "Found one result", + manyResults: "Found {0} results", + loading: "Loading search index...", + searching: "Searching...", + redirecting: "Redirecting to first result...", + linkIcon: "Link icon", + linkToSection: "Link to this section" +} +const categories = { + modules: "Modules", + packages: "Packages", + types: "Types", + members: "Members", + searchTags: "Search Tags" +}; +const highlight = "$&"; +const NO_MATCH = {}; +const MAX_RESULTS = 300; +function checkUnnamed(name, separator) { + return name === "" || !name ? "" : name + separator; +} +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(str, boundaries, from, to) { + var start = from; + var text = ""; + for (var i = 0; i < boundaries.length; i += 2) { + var b0 = boundaries[i]; + var b1 = boundaries[i + 1]; + if (b0 >= to || b1 <= from) { + continue; + } + text += escapeHtml(str.slice(start, Math.max(start, b0))); + text += ""; + text += escapeHtml(str.slice(Math.max(start, b0), Math.min(to, b1))); + text += ""; + start = Math.min(to, b1); + } + text += escapeHtml(str.slice(start, to)); + return text; +} +function getURLPrefix(item, category) { + var urlPrefix = ""; + var slash = "/"; + if (category === "modules") { + return item.l + slash; + } else if (category === "packages" && item.m) { + return item.m + slash; + } else if (category === "types" || category === "members") { + if (item.m) { + urlPrefix = item.m + slash; + } else { + $.each(packageSearchIndex, function(index, it) { + if (it.m && item.p === it.l) { + urlPrefix = it.m + slash; + } + }); + } + } + return urlPrefix; +} +function getURL(item, category) { + if (item.url) { + return item.url; + } + var url = getURLPrefix(item, category); + if (category === "modules") { + url += "module-summary.html"; + } else if (category === "packages") { + if (item.u) { + url = item.u; + } else { + url += item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (category === "types") { + if (item.u) { + url = item.u; + } else { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.l + ".html"; + } + } else if (category === "members") { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.c + ".html" + "#"; + if (item.u) { + url += item.u; + } else { + url += item.l; + } + } else if (category === "searchTags") { + url += item.u; + } + item.url = url; + return url; +} +function createMatcher(term, camelCase) { + if (camelCase && !isUpperCase(term)) { + return null; // no need for camel-case matcher for lower case query + } + var pattern = ""; + var upperCase = []; + term.trim().split(/\s+/).forEach(function(w, index, array) { + var tokens = w.split(/(?=[A-Z,.()<>?[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + // ',' and '?' are the only delimiters commonly followed by space in java signatures + pattern += "(" + $.ui.autocomplete.escapeRegex(s).replace(/[,?]/g, "$&\\s*?") + ")"; + upperCase.push(false); + var isWordToken = /\w$/.test(s); + if (isWordToken) { + if (i === tokens.length - 1 && index < array.length - 1) { + // space in query string matches all delimiters + pattern += "(.*?)"; + upperCase.push(isUpperCase(s[0])); + } else { + if (!camelCase && isUpperCase(s) && s.length === 1) { + pattern += "()"; + } else { + pattern += "([a-z0-9$<>?[\\]]*?)"; + } + upperCase.push(isUpperCase(s[0])); + } + } else { + pattern += "()"; + upperCase.push(false); + } + } + }); + var re = new RegExp(pattern, "gi"); + re.upperCase = upperCase; + return re; +} +function findMatch(matcher, input, startOfName, endOfName) { + var from = startOfName; + matcher.lastIndex = from; + var match = matcher.exec(input); + // Expand search area until we get a valid result or reach the beginning of the string + while (!match || match.index + match[0].length < startOfName || endOfName < match.index) { + if (from === 0) { + return NO_MATCH; + } + from = input.lastIndexOf(".", from - 2) + 1; + matcher.lastIndex = from; + match = matcher.exec(input); + } + var boundaries = []; + var matchEnd = match.index + match[0].length; + var score = 5; + var start = match.index; + var prevEnd = -1; + for (var i = 1; i < match.length; i += 2) { + var isUpper = isUpperCase(input[start]); + var isMatcherUpper = matcher.upperCase[i]; + // capturing groups come in pairs, match and non-match + boundaries.push(start, start + match[i].length); + // make sure groups are anchored on a left word boundary + var prevChar = input[start - 1] || ""; + var nextChar = input[start + 1] || ""; + if (start !== 0 && !/[\W_]/.test(prevChar) && !/[\W_]/.test(input[start])) { + if (isUpper && (isLowerCase(prevChar) || isLowerCase(nextChar))) { + score -= 0.1; + } else if (isMatcherUpper && start === prevEnd) { + score -= isUpper ? 0.1 : 1.0; + } else { + return NO_MATCH; + } + } + prevEnd = start + match[i].length; + start += match[i].length + match[i + 1].length; + + // lower score for parts of the name that are missing + if (match[i + 1] && prevEnd < endOfName) { + score -= rateNoise(match[i + 1]); + } + } + // lower score if a type name contains unmatched camel-case parts + if (input[matchEnd - 1] !== "." && endOfName > matchEnd) + score -= rateNoise(input.slice(matchEnd, endOfName)); + score -= rateNoise(input.slice(0, Math.max(startOfName, match.index))); + + if (score <= 0) { + return NO_MATCH; + } + return { + input: input, + score: score, + boundaries: boundaries + }; +} +function isUpperCase(s) { + return s !== s.toLowerCase(); +} +function isLowerCase(s) { + return s !== s.toUpperCase(); +} +function rateNoise(str) { + return (str.match(/([.(])/g) || []).length / 5 + + (str.match(/([A-Z]+)/g) || []).length / 10 + + str.length / 20; +} +function doSearch(request, response) { + var term = request.term.trim(); + var maxResults = request.maxResults || MAX_RESULTS; + if (term.length === 0) { + return this.close(); + } + var matcher = { + plainMatcher: createMatcher(term, false), + camelCaseMatcher: createMatcher(term, true) + } + var indexLoaded = indexFilesLoaded(); + + function getPrefix(item, category) { + switch (category) { + case "packages": + return checkUnnamed(item.m, "/"); + case "types": + return checkUnnamed(item.p, "."); + case "members": + return checkUnnamed(item.p, ".") + item.c + "."; + default: + return ""; + } + } + function useQualifiedName(category) { + switch (category) { + case "packages": + return /[\s/]/.test(term); + case "types": + case "members": + return /[\s.]/.test(term); + default: + return false; + } + } + function searchIndex(indexArray, category) { + var matches = []; + if (!indexArray) { + if (!indexLoaded) { + matches.push({ l: messages.loading, category: category }); + } + return matches; + } + $.each(indexArray, function (i, item) { + var prefix = getPrefix(item, category); + var simpleName = item.l; + var qualifiedName = prefix + simpleName; + var useQualified = useQualifiedName(category); + var input = useQualified ? qualifiedName : simpleName; + var startOfName = useQualified ? prefix.length : 0; + var endOfName = category === "members" && input.indexOf("(", startOfName) > -1 + ? input.indexOf("(", startOfName) : input.length; + var m = findMatch(matcher.plainMatcher, input, startOfName, endOfName); + if (m === NO_MATCH && matcher.camelCaseMatcher) { + m = findMatch(matcher.camelCaseMatcher, input, startOfName, endOfName); + } + if (m !== NO_MATCH) { + m.indexItem = item; + m.prefix = prefix; + m.category = category; + if (!useQualified) { + m.input = qualifiedName; + m.boundaries = m.boundaries.map(function(b) { + return b + prefix.length; + }); + } + matches.push(m); + } + return true; + }); + return matches.sort(function(e1, e2) { + return e2.score - e1.score; + }).slice(0, maxResults); + } + + var result = searchIndex(moduleSearchIndex, "modules") + .concat(searchIndex(packageSearchIndex, "packages")) + .concat(searchIndex(typeSearchIndex, "types")) + .concat(searchIndex(memberSearchIndex, "members")) + .concat(searchIndex(tagSearchIndex, "searchTags")); + + if (!indexLoaded) { + updateSearchResults = function() { + doSearch(request, response); + } + } else { + updateSearchResults = function() {}; + } + response(result); +} +// JQuery search menu implementation +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> .result-item"); + // workaround for search result scrolling + this.menu._scrollIntoView = function _scrollIntoView( item ) { + var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight; + if ( this._hasScroll() ) { + borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0; + paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0; + offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop; + scroll = this.activeMenu.scrollTop(); + elementHeight = this.activeMenu.height() - 26; + itemHeight = item.outerHeight(); + + if ( offset < 0 ) { + this.activeMenu.scrollTop( scroll + offset ); + } else if ( offset + itemHeight > elementHeight ) { + this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight ); + } + } + }; + }, + _renderMenu: function(ul, items) { + var currentCategory = ""; + var widget = this; + widget.menu.bindings = $(); + $.each(items, function(index, item) { + if (item.category && item.category !== currentCategory) { + ul.append("
    • " + categories[item.category] + "
    • "); + currentCategory = item.category; + } + var li = widget._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", categories[item.category] + " : " + item.l); + } else { + li.attr("aria-label", item.l); + } + li.attr("class", "result-item"); + }); + ul.append(""); + }, + _renderItem: function(ul, item) { + var li = $("
    • ").appendTo(ul); + var div = $("
      ").appendTo(li); + var label = item.l + ? item.l + : getHighlightedText(item.input, item.boundaries, 0, item.input.length); + var idx = item.indexItem; + if (item.category === "searchTags" && idx && idx.h) { + if (idx.d) { + div.html(label + " (" + idx.h + ")
      " + + idx.d + "
      "); + } else { + div.html(label + " (" + idx.h + ")"); + } + } else { + div.html(label); + } + return li; + } +}); +$(function() { + var expanded = false; + var windowWidth; + function collapse() { + if (expanded) { + $("div#navbar-top").removeAttr("style"); + $("button#navbar-toggle-button") + .removeClass("expanded") + .attr("aria-expanded", "false"); + expanded = false; + } + } + $("button#navbar-toggle-button").click(function (e) { + if (expanded) { + collapse(); + } else { + var navbar = $("div#navbar-top"); + navbar.height(navbar.prop("scrollHeight")); + $("button#navbar-toggle-button") + .addClass("expanded") + .attr("aria-expanded", "true"); + expanded = true; + windowWidth = window.innerWidth; + } + }); + $("ul.sub-nav-list-small li a").click(collapse); + $("input#search-input").focus(collapse); + $("main").click(collapse); + $("section[id] > :header, :header[id], :header:has(a[id])").each(function(idx, el) { + // Create anchor links for headers with an associated id attribute + var hdr = $(el); + var id = hdr.attr("id") || hdr.parent("section").attr("id") || hdr.children("a").attr("id"); + if (id) { + hdr.append(" " + messages.linkIcon +""); + } + }); + $(window).on("orientationchange", collapse).on("resize", function(e) { + if (expanded && windowWidth !== window.innerWidth) collapse(); + }); + var search = $("#search-input"); + var reset = $("#reset-button"); + search.catcomplete({ + minLength: 1, + delay: 200, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push({ l: messages.noResult }); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.indexItem) { + var url = getURL(ui.item.indexItem, ui.item.category); + window.location.href = pathtoroot + url; + $("#search-input").focus(); + } + } + }); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + reset.click(function() { + search.val('').focus(); + }); + search.focus(); +}); diff --git a/ko/apidocs/stylesheet.css b/ko/apidocs/stylesheet.css new file mode 100644 index 0000000..f71489f --- /dev/null +++ b/ko/apidocs/stylesheet.css @@ -0,0 +1,1272 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * These CSS custom properties (variables) define the core color and font + * properties used in this stylesheet. + */ +:root { + /* body, block and code fonts */ + --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + --code-font-family: 'DejaVu Sans Mono', monospace; + /* Base font sizes for body and code elements */ + --body-font-size: 14px; + --code-font-size: 14px; + /* Text colors for body and block elements */ + --body-text-color: #353833; + --block-text-color: #474747; + /* Background colors for various structural elements */ + --body-background-color: #ffffff; + --section-background-color: #f8f8f8; + --detail-background-color: #ffffff; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #4D7A97; + --navbar-text-color: #ffffff; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #dee3e9; + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #f8981d; + --selected-text-color: #253441; + --selected-link-color: #1f389c; + /* Background colors for generated tables */ + --even-row-color: #ffffff; + --odd-row-color: #eeeeef; + /* Text color for page title */ + --title-color: #2c4557; + /* Text colors for links */ + --link-color: #4A6782; + --link-color-active: #bb7a2a; + /* Snippet colors */ + --snippet-background-color: #ebecee; + --snippet-text-color: var(--block-text-color); + --snippet-highlight-color: #f7c590; + /* Border colors for structural elements and user defined tables */ + --border-color: #ededed; + --table-border-color: #000000; + /* Search input colors */ + --search-input-background-color: #ffffff; + --search-input-text-color: #000000; + --search-input-placeholder-color: #909090; + /* Highlight color for active search tag target */ + --search-tag-highlight-color: #ffff00; + /* Adjustments for icon and active background colors of copy-to-clipboard buttons */ + --copy-icon-brightness: 100%; + --copy-button-background-color-active: rgba(168, 168, 176, 0.3); + /* Colors for invalid tag notifications */ + --invalid-tag-background-color: #ffe6e6; + --invalid-tag-text-color: #000000; +} +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ +body { + background-color:var(--body-background-color); + color:var(--body-text-color); + font-family:var(--body-font-family); + font-size:var(--body-font-size); + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:var(--link-color); +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:var(--link-color-active); +} +pre { + font-family:var(--code-font-family); + font-size:1em; +} +h1 { + font-size:1.428em; +} +h2 { + font-size:1.285em; +} +h3 { + font-size:1.14em; +} +h4 { + font-size:1.072em; +} +h5 { + font-size:1.001em; +} +h6 { + font-size:0.93em; +} +/* Disable font boosting for selected elements */ +h1, h2, h3, h4, h5, h6, div.member-signature { + max-height: 1000em; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:var(--code-font-family); +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:var(--code-font-size); + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:var(--code-font-family); + font-size:1em; + padding-top:4px; +} +.summary-table dt code { + font-family:var(--code-font-family); + font-size:1em; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: var(--body-font-family); + font-size: 1em; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:0.915em; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +/* + * Styles for navigation bar. + */ +@media screen { + div.flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + header.flex-header { + flex: 0 0 auto; + } + div.flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + float:left; + width:100%; + clear:right; + min-height:2.8em; + padding:10px 0 0 0; + overflow:hidden; + font-size:0.857em; +} +button#navbar-toggle-button { + display:none; +} +ul.sub-nav-list-small { + display: none; +} +.sub-nav { + background-color:var(--subnav-background-color); + float:left; + width:100%; + overflow:hidden; + font-size:0.857em; +} +.sub-nav div { + clear:left; + float:left; + padding:6px; + text-transform:uppercase; +} +.sub-nav .sub-nav-list { + padding-top:4px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0; + padding:6px; + clear:none; + text-align:right; + position:relative; +} +ul.sub-nav-list li { + list-style:none; + float:left; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:var(--navbar-text-color); + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + color:var(--link-color-active); +} +.nav-bar-cell1-rev { + background-color:var(--selected-background-color); + color:var(--selected-text-color); + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header. + */ +.title { + color:var(--title-color); + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +ul.contents-list { + margin: 0 0 15px 0; + padding: 0; + list-style: none; +} +ul.contents-list li { + font-size:0.93em; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:var(--subnav-background-color); + border:1px solid var(--border-color); + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: var(--body-font-family); + font-size:0.856em; + font-weight:bold; + margin:10px 0 0 0; + color:var(--body-text-color); +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:1em; + font-family:var(--block-font-family) +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.ref-list { + padding:0; + margin:0; +} +ul.ref-list > li { + list-style:none; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.tag-list, ul.tag-list-long { + padding-left: 0; + list-style: none; +} +ul.tag-list li { + display: inline; +} +ul.tag-list li:not(:last-child):after, +ul.tag-list-long li:not(:last-child):after +{ + content: ", "; + white-space: pre-wrap; +} +ul.preview-feature-list { + list-style: none; + margin:0; + padding:0.1em; + line-height: 1.6em; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border:1px solid var(--border-color); + border-top:0; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:var(--selected-text-color); + clear:none; + overflow:hidden; + padding: 10px 0 0 1px; + margin:0; +} +.caption a:link, .caption a:visited { + color:var(--selected-link-color); +} +.caption a:hover, +.caption a:active { + color:var(--navbar-text-color); +} +.caption span { + font-weight:bold; + white-space:nowrap; + padding:5px 12px 7px 12px; + display:inline-block; + float:left; + background-color:var(--selected-background-color); + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:10px 0 0 0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 8px; +} +div.table-tabs > .active-table-tab { + background: var(--selected-background-color); + color: var(--selected-text-color); +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.two-column-search-results { + display: grid; + grid-template-columns: minmax(400px, max-content) minmax(400px, auto); +} +div.checkboxes { + line-height: 2em; +} +div.checkboxes > span { + margin-left: 10px; +} +div.checkboxes > label { + margin-left: 8px; + white-space: nowrap; +} +div.checkboxes > label > input { + margin: 0 2px; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(25%, max-content) minmax(25%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto); +} +.three-column-release-summary { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +@media screen and (max-width: 800px) { + .two-column-search-results { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); + } + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-release-summary { + display: grid; + grid-template-columns: minmax(70%, max-content) minmax(30%, max-content) + } + .three-column-summary .col-last, + .three-column-release-summary .col-last{ + grid-column-end: span 2; + } +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; + overflow-x: auto; + scrollbar-width: thin; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:var(--subnav-background-color); + font-weight: bold; +} +/* Sortable table columns */ +.table-header[onclick] { + cursor: pointer; +} +.table-header[onclick]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + '); + background-size:100% 100%; + width:9px; + height:14px; + margin-left:4px; + margin-bottom:-3px; +} +.table-header[onclick].sort-asc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + +} +.table-header[onclick].sort-desc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +.col-first, .col-first { + font-size:0.93em; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:0.93em; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited { + font-weight:bold; +} +.even-row-color, .even-row-color .table-header { + background-color:var(--even-row-color); +} +.odd-row-color, .odd-row-color .table-header { + background-color:var(--odd-row-color); +} +/* + * Styles for contents. + */ +div.block { + font-size:var(--body-font-size); + font-family:var(--block-font-family); +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:var(--code-font-family); + font-size:1em; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + /* Color of line numbers in source pages can be set via custom property below */ + color:var(--source-linenumber-color, green); + padding:0 30px 0 0; +} +.block { + display:block; + margin:0 10px 5px 0; + color:var(--block-text-color); +} +.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +details.invalid-tag, span.invalid-tag { + font-size:1em; + font-family:var(--block-font-family); + color: var(--invalid-tag-text-color); + background: var(--invalid-tag-background-color); + border: thin solid var(--table-border-color); + border-radius:2px; + padding: 2px 4px; + display:inline-block; +} +details summary { + cursor: pointer; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-state-active { + /* Overrides the color of selection used in jQuery UI */ + background: var(--selected-background-color); + border: 1px solid var(--selected-background-color); + color: var(--selected-text-color); +} +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:auto; + overflow-x:auto; + scrollbar-width: thin; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:1; + background-color: var(--body-background-color); +} +ul.ui-autocomplete li { + float:left; + clear:both; + min-width:100%; +} +ul.ui-autocomplete li.ui-static-link { + position:sticky; + bottom:0; + left:0; + background: var(--subnav-background-color); + padding: 5px 0; + font-family: var(--body-font-family); + font-size: 0.93em; + font-weight: bolder; + z-index: 2; +} +li.ui-static-link a, li.ui-static-link a:visited { + text-decoration:none; + color:var(--link-color); + float:right; + margin-right:20px; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +.ui-autocomplete .result-highlight { + font-weight:bold; +} +#search-input, #page-search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + background-color: var(--search-input-background-color); + color: var(--search-input-text-color); + border-color: var(--border-color); + padding-left:20px; + width: 250px; + margin: 0; +} +#search-input { + margin-left: 4px; +} +#reset-button { + background-color: transparent; + background-image:url('resources/x.png'); + background-repeat:no-repeat; + background-size:contain; + border:0; + border-radius:0; + width:12px; + height:12px; + position:absolute; + right:12px; + top:10px; + font-size:0; +} +::placeholder { + color:var(--search-input-placeholder-color); + opacity: 1; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:var(--search-tag-highlight-color); +} +details.page-search-details { + display: inline-block; +} +div#result-container { + font-size: 1em; +} +div#result-container a.search-result-link { + padding: 0; + margin: 4px 0; + width: 100%; +} +#result-container .result-highlight { + font-weight:bolder; +} +.page-search-info { + background-color: var(--subnav-background-color); + border-radius: 3px; + border: 0 solid var(--border-color); + padding: 0 8px; + overflow: hidden; + height: 0; + transition: all 0.2s ease; +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.page-search-header { + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + display: inline-block; +} +button.page-search-header { + border: none; + cursor: pointer; +} +span#page-search-link { + text-decoration: underline; +} +.module-graph span, .sealed-graph span { + display:none; + position:absolute; +} +.module-graph:hover span, .sealed-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0 20px 5px 10px; + border: 1px solid var(--border-color); + background-color: var(--section-background-color); +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:var(--detail-background-color); + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +/* + * Styles for header/section anchor links + */ +a.anchor-link { + opacity: 0; + transition: opacity 0.1s; +} +:hover > a.anchor-link { + opacity: 80%; +} +a.anchor-link:hover, +a.anchor-link:focus-visible, +a.anchor-link.visible { + opacity: 100%; +} +a.anchor-link > img { + width: 0.9em; + height: 0.9em; +} +/* + * Styles for copy-to-clipboard buttons + */ +button.copy { + opacity: 70%; + border: none; + border-radius: 3px; + position: relative; + background:none; + transition: opacity 0.3s; + cursor: pointer; +} +:hover > button.copy { + opacity: 80%; +} +button.copy:hover, +button.copy:active, +button.copy:focus-visible, +button.copy.visible { + opacity: 100%; +} +button.copy img { + position: relative; + background: none; + filter: brightness(var(--copy-icon-brightness)); +} +button.copy:active { + background-color: var(--copy-button-background-color-active); +} +button.copy span { + color: var(--body-text-color); + position: relative; + top: -0.1em; + transition: all 0.1s; + font-size: 0.76rem; + line-height: 1.2em; + opacity: 0; +} +button.copy:hover span, +button.copy:focus-visible span, +button.copy.visible span { + opacity: 100%; +} +/* search page copy button */ +button#page-search-copy { + margin-left: 0.4em; + padding:0.3em; + top:0.13em; +} +button#page-search-copy img { + width: 1.2em; + height: 1.2em; + padding: 0.01em 0; + top: 0.15em; +} +button#page-search-copy span { + color: var(--body-text-color); + line-height: 1.2em; + padding: 0.2em; + top: -0.18em; +} +div.page-search-info:hover button#page-search-copy span { + opacity: 100%; +} +/* snippet copy button */ +button.snippet-copy { + position: absolute; + top: 6px; + right: 6px; + height: 1.7em; + padding: 2px; +} +button.snippet-copy img { + width: 18px; + height: 18px; + padding: 0.05em 0; +} +button.snippet-copy span { + line-height: 1.2em; + padding: 0.2em; + position: relative; + top: -0.5em; +} +div.snippet-container:hover button.snippet-copy span { + opacity: 100%; +} +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.striped > thead { + background-color: var(--subnav-background-color); +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped > tbody > tr:nth-child(even) { + background-color: var(--odd-row-color) +} +table.striped > tbody > tr:nth-child(odd) { + background-color: var(--even-row-color) +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid var(--table-border-color); + border-right: 1px solid var(--table-border-color); +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak style for small screens. + */ +@media screen and (max-width: 920px) { + header.flex-header { + max-height: 100vh; + overflow-y: auto; + } + div#navbar-top { + height: 2.8em; + transition: height 0.35s ease; + } + ul.nav-list { + display: block; + width: 40%; + float:left; + clear: left; + margin: 10px 0 0 0; + padding: 0; + } + ul.nav-list li { + float: none; + padding: 6px; + margin-left: 10px; + margin-top: 2px; + } + ul.sub-nav-list-small { + display:block; + height: 100%; + width: 50%; + float: right; + clear: right; + background-color: var(--subnav-background-color); + color: var(--body-text-color); + margin: 6px 0 0 0; + padding: 0; + } + ul.sub-nav-list-small ul { + padding-left: 20px; + } + ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited { + color:var(--link-color); + } + ul.sub-nav-list-small a:hover { + color:var(--link-color-active); + } + ul.sub-nav-list-small li { + list-style:none; + float:none; + padding: 6px; + margin-top: 1px; + text-transform:uppercase; + } + ul.sub-nav-list-small > li { + margin-left: 10px; + } + ul.sub-nav-list-small li p { + margin: 5px 0; + } + div#navbar-sub-list { + display: none; + } + .top-nav a:link, .top-nav a:active, .top-nav a:visited { + display: block; + } + button#navbar-toggle-button { + width: 3.4em; + height: 2.8em; + background-color: transparent; + display: block; + float: left; + border: 0; + margin: 0 10px; + cursor: pointer; + font-size: 10px; + } + button#navbar-toggle-button .nav-bar-toggle-icon { + display: block; + width: 24px; + height: 3px; + margin: 1px 0 4px 0; + border-radius: 2px; + transition: all 0.1s; + background-color: var(--navbar-text-color); + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { + transform: rotate(45deg); + transform-origin: 10% 10%; + width: 26px; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { + opacity: 0; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { + transform: rotate(-45deg); + transform-origin: 10% 90%; + width: 26px; + } +} +@media screen and (max-width: 800px) { + .about-language { + padding-right: 16px; + } + ul.nav-list li { + margin-left: 5px; + } + ul.sub-nav-list-small > li { + margin-left: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 400px) { + .about-language { + font-size: 10px; + padding-right: 12px; + } +} +@media screen and (max-width: 400px) { + .nav-list-search { + width: 94%; + } + #search-input, #page-search-input { + width: 70%; + } +} +@media screen and (max-width: 320px) { + .nav-list-search > label { + display: none; + } + .nav-list-search { + width: 90%; + } + #search-input, #page-search-input { + width: 80%; + } +} + +pre.snippet { + background-color: var(--snippet-background-color); + color: var(--snippet-text-color); + padding: 10px; + margin: 12px 0; + overflow: auto; + white-space: pre; +} +div.snippet-container { + position: relative; +} +@media screen and (max-width: 800px) { + pre.snippet { + padding-top: 26px; + } + button.snippet-copy { + top: 4px; + right: 4px; + } +} +pre.snippet .italic { + font-style: italic; +} +pre.snippet .bold { + font-weight: bold; +} +pre.snippet .highlighted { + background-color: var(--snippet-highlight-color); + border-radius: 10%; +} diff --git a/ko/apidocs/tag-search-index.js b/ko/apidocs/tag-search-index.js new file mode 100644 index 0000000..0367dae --- /dev/null +++ b/ko/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/ko/apidocs/type-search-index.js b/ko/apidocs/type-search-index.js new file mode 100644 index 0000000..05c9d7d --- /dev/null +++ b/ko/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"org.mybatis.spring.nativex","l":"MyBatisDynamicSqlNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisFreeMarkerNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisThymeleafNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisVelocityNativeConfiguration"}];updateSearchResults(); \ No newline at end of file diff --git a/ko/checkstyle-aggregate.html b/ko/checkstyle-aggregate.html new file mode 100644 index 0000000..8e20fda --- /dev/null +++ b/ko/checkstyle-aggregate.html @@ -0,0 +1,1089 @@ + + + + + + + + + + mybatis-spring-native – Checkstyle Results + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Checkstyle Results

      +

      The following document contains the results of Checkstyle 10.13.0 with checkstyle.xml ruleset.

      +

      Summary

      + + + + + + + + + + +
      Files Info Warnings Errors
      390730
      +

      Files

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      File I W E
      org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java010
      org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java010
      org/mybatis/spring/nativex/MyBatisResourcesScan.java020
      org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java010
      org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java010
      org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java010
      org/mybatis/spring/nativex/sample/cache/City.java020
      org/mybatis/spring/nativex/sample/cache/CityMapper.java020
      org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java020
      org/mybatis/spring/nativex/sample/configuration/City.java010
      org/mybatis/spring/nativex/sample/configuration/CityMapper.java020
      org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java010
      org/mybatis/spring/nativex/sample/dao/City.java020
      org/mybatis/spring/nativex/sample/dao/CityDao.java020
      org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java020
      org/mybatis/spring/nativex/sample/dynamicsql/City.java020
      org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java040
      org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java010
      org/mybatis/spring/nativex/sample/external/entity/City.java020
      org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java020
      org/mybatis/spring/nativex/sample/freemarker/City.java020
      org/mybatis/spring/nativex/sample/freemarker/CityMapper.java020
      org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java010
      org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java030
      org/mybatis/spring/nativex/sample/simple/City.java020
      org/mybatis/spring/nativex/sample/simple/CityMapper.java020
      org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java010
      org/mybatis/spring/nativex/sample/sqlprovider/City.java020
      org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java040
      org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java010
      org/mybatis/spring/nativex/sample/thymeleaf/City.java040
      org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java020
      org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java030
      org/mybatis/spring/nativex/sample/velocity/City.java020
      org/mybatis/spring/nativex/sample/velocity/CityMapper.java020
      org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java010
      org/mybatis/spring/nativex/sample/xml/City.java020
      org/mybatis/spring/nativex/sample/xml/CityMapper.java020
      org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java010
      +

      Rules

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      CategoryRuleViolationsSeverity
      codingOverloadMethodsDeclarationOrder1 Warning
      importsCustomImportOrder +
        +
      • separateLineBetweenGroups: "true"
      • +
      • sortImportsInGroupAlphabetically: "true"
      • +
      • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
      • +
      • tokens: "IMPORT, STATIC_IMPORT, PACKAGE_DEF"
      18 Warning
      javadocMissingJavadocMethod +
        +
      • scope: "public"
      • +
      • tokens: "METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"
      • +
      • minLineCount: "2"
      • +
      • allowedAnnotations: "Override, Test"
      12 Warning
      MissingJavadocType +
        +
      • scope: "protected"
      • +
      • excludeScope: "nothing"
      • +
      • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, RECORD_DEF, ANNOTATION_DEF"
      38 Warning
      sizesLineLength +
        +
      • fileExtensions: "java"
      • +
      • max: "120"
      • +
      • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
      4 Error
      +

      Details

      +

      org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.DeleteProvider'35
      +

      org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.reflection.TypeParameterResolver'26
      +

      org/mybatis/spring/nativex/MyBatisResourcesScan.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.springframework.context.annotation.Import'22
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.123
      +

      org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.commons.logging.Log'30
      +

      org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor'35
      +

      org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer'20
      +

      org/mybatis/spring/nativex/sample/cache/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.20
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
      +

      org/mybatis/spring/nativex/sample/cache/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.CacheNamespace'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.26
      +

      org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.slf4j.Logger'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.29
      +

      org/mybatis/spring/nativex/sample/configuration/City.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
      +

      org/mybatis/spring/nativex/sample/configuration/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/dao/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/dao/CityDao.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.session.SqlSession'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.23
      +

      org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningsizesLineLengthLine is longer than 120 characters (found 128).26
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.26
      +

      org/mybatis/spring/nativex/sample/dynamicsql/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'22
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.40
       WarningcodingOverloadMethodsDeclarationOrderAll overloaded methods should be placed next to each other. Placing non-overloaded methods in between overloaded methods with the same type is a violation. Previous overloaded method located at line '44'.51
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.61
      +

      org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/external/entity/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Mapper'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.23
      +

      org/mybatis/spring/nativex/sample/freemarker/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
      +

      org/mybatis/spring/nativex/sample/freemarker/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.28
      +

      org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningsizesLineLengthLine is longer than 120 characters (found 125).29
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.29
       WarningsizesLineLengthLine is longer than 120 characters (found 146).30
      +

      org/mybatis/spring/nativex/sample/simple/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/simple/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/sqlprovider/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.35
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.46
      +

      org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/thymeleaf/City.java

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
      +

      org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.28
       WarningsizesLineLengthLine is longer than 120 characters (found 137).34
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.34
      +

      org/mybatis/spring/nativex/sample/velocity/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/velocity/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/xml/City.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
       WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
      +

      org/mybatis/spring/nativex/sample/xml/CityMapper.java

      + + + + + + + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Mapper'20
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.22
      +

      org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java

      + + + + + + + + + + + + +
      SeverityCategoryRuleMessageLine
       WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
      +
      +
      +
      +
      + + + + diff --git a/ko/checkstyle.html b/ko/checkstyle.html new file mode 100644 index 0000000..97504dd --- /dev/null +++ b/ko/checkstyle.html @@ -0,0 +1,102 @@ + + + + + + + + + + mybatis-spring-native-docs – Checkstyle Results + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Checkstyle Results

      +

      The following document contains the results of Checkstyle 10.13.0 with checkstyle.xml ruleset.

      +

      Summary

      + + + + + + + + + + +
      Files Info Warnings Errors
      0000
      +

      Files

      + + + + + +
      File I W E
      +

      Rules

      + + + + + +
      CategoryRuleViolationsSeverity
      +

      Details

      +
      +
      +
      +
      + + + + diff --git a/ko/ci-management.html b/ko/ci-management.html new file mode 100644 index 0000000..192bda7 --- /dev/null +++ b/ko/ci-management.html @@ -0,0 +1,81 @@ + + + + + + + + + + mybatis-spring-native-docs – 연속통합 (Continuous Integration) + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      개요

      +

      이 프로젝트는 GitHub Actions을 사용합니다.

      +

      접근

      +

      다음은 프로젝트에서 사용되는 연속통합시스템에 대한 링크입니다.

      +
      +

      통지자

      +

      통지자가 정의되어 있지 않습니다. 나중에 다시 확인해 보십시오.

      +
      +
      +
      +
      + + + + diff --git a/ko/clirr-report.html b/ko/clirr-report.html new file mode 100644 index 0000000..b730fab --- /dev/null +++ b/ko/clirr-report.html @@ -0,0 +1,73 @@ + + + + + + + + + + mybatis-spring-native-docs + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +$bodyContent.replaceAll( '
      (\r?\n)?
      ', '
      ' ).replaceAll( 'class="bodyTable"', 'class="table table-striped"' ).replaceAll( 'class="bodyTable bodyTableBorder"', 'class="table table-bordered table-striped"' )
      +        
      +
      +
      +
      + + + + diff --git a/ko/cpd.html b/ko/cpd.html new file mode 100644 index 0000000..f107830 --- /dev/null +++ b/ko/cpd.html @@ -0,0 +1,76 @@ + + + + + + + + + + mybatis-spring-native-docs – CPD Results + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      CPD Results

      +

      The following document contains the results of PMD's CPD 6.55.0.

      +

      CPD found no problems in your source code.

      +
      +
      +
      +
      + + + + diff --git a/ko/css/apache-maven-fluido-2.0.0-M8.min.css b/ko/css/apache-maven-fluido-2.0.0-M8.min.css new file mode 100644 index 0000000..1b7eff7 --- /dev/null +++ b/ko/css/apache-maven-fluido-2.0.0-M8.min.css @@ -0,0 +1,20 @@ +/*! + * Bootstrap v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media print{*{color:#000 !important;text-shadow:none !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover,a:focus{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;line-height:0;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:""}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:bold}em{font-style:italic}cite{font-style:normal}.muted{color:#999}a.muted:hover,a.muted:focus{color:gray}.text-warning{color:#c09853}a.text-warning:hover,a.text-warning:focus{color:#a47e3c}.text-error{color:#b94a48}a.text-error:hover,a.text-error:focus{color:#953b39}.text-info{color:#3a87ad}a.text-info:hover,a.text-info:focus{color:#2d6987}.text-success{color:#468847}a.text-success:hover,a.text-success:focus{color:#356635}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{line-height:40px}h1{font-size:38.5px}h2{font-size:31.5px}h3{font-size:24.5px}h4{font-size:17.5px}h5{font-size:14px}h6{font-size:11.9px}h1 small{font-size:24.5px}h2 small{font-size:17.5px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;padding-right:5px;padding-left:5px;*zoom:1}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:bold}dd{margin-left:10px}.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:""}.dl-horizontal:after{clear:both}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}input,textarea,.uneditable-input{width:206px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;background-color:#fff;border:1px solid #ccc}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:20px;padding-left:20px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;line-height:0;content:""}.controls-row:after{clear:both}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left}.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad}.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3}.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;line-height:0;content:""}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-append,.input-prepend{display:inline-block;margin-bottom:10px;font-size:0;white-space:nowrap;vertical-align:middle}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:180px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0}.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5}table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0}.table td.span1,.table th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success>td{background-color:#dff0d8}.table tbody tr.error>td{background-color:#f2dede}.table tbody tr.warning>td{background-color:#fcf8e3}.table tbody tr.info>td{background-color:#d9edf7}.table-hover tbody tr.success:hover>td{background-color:#d0e9c6}.table-hover tbody tr.error:hover>td{background-color:#ebcccc}.table-hover tbody tr.warning:hover>td{background-color:#faf2cc}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{width:16px;background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{width:16px;background-position:-384px -120px}.icon-folder-open{width:16px;background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open{*z-index:1000}.open>.dropdown-menu{display:block}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px}.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-large .caret{margin-top:6px}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px}.btn-mini .caret,.btn-small .caret{margin-top:8px}.dropup .btn-large .caret{border-bottom-width:5px}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert h4{color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success h4{color:#468847}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger h4,.alert-error h4{color:#b94a48}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:20px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px}.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;line-height:0;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent}.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065)}.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:""}.navbar-inner:after{clear:both}.navbar .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff}.navbar-inverse .brand{color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff}.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111}.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb>li>.divider{padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{margin:20px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default}.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;cursor:default;background-color:transparent}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px}.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px}.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;line-height:0;content:""}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:default;background-color:#fff}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.label:empty,.badge:empty{display:none}a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress .bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}/*! + * Bootstrap Responsive v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.visible-phone{display:none !important}.visible-tablet{display:none !important}.hidden-desktop{display:none !important}.visible-desktop{display:inherit !important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important}.visible-desktop{display:none !important}.visible-tablet{display:inherit !important}.hidden-tablet{display:none !important}}@media(max-width:767px){.hidden-desktop{display:inherit !important}.visible-desktop{display:none !important}.visible-phone{display:inherit !important}.hidden-phone{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:inherit !important}.hidden-print{display:none !important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}.clear{clear:both;visibility:hidden}.clear hr{display:none}section>p,section>dt,section>dl,section>table.table,section>div.verbatim{margin-right:7px;margin-left:7px}#poweredBy{text-align:center}a.externalLink{padding-right:18px}a.newWindow{background:url('../images/window-new.png') right center no-repeat;padding-right:18px}a.externalLink[href^=http]{background:url('../images/internet-web-browser.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".asc"]{background:url('../images/accessories-text-editor.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".jpg"],a.externalLink[href$=".jpeg"],a.externalLink[href$=".gif"],a.externalLink[href$=".png"]{background:url('../images/image-x-generic.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".tar.gz"],a.externalLink[href$=".zip"]{background:url('../images/package-x-generic.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".md5"],a.externalLink[href$=".sha1"]{background:url('../images/document-properties.png') right center no-repeat;padding-right:18px}a.externalLink[href^=https]{background:url('../images/application-certificate.png') right center no-repeat;padding-right:18px}a.externalLink[href^=file]{background:url('../images/drive-harddisk.png') right center no-repeat;padding-right:18px}a.externalLink[href^=ftp]{background:url('../images/network-server.png') right center no-repeat;padding-right:18px}a.externalLink[href^=mailto]{background:url('../images/contact-new.png') right center no-repeat;padding-right:18px}li.none{list-style:none}.search-query{width:95%}.sidebar-nav .search-query{width:calc(100% - 30px)}body.topBarEnabled{padding-top:43px}div.container-top,div.container-fluid-top{padding-top:10px}.builtBy{display:block}img.builtBy{margin:10px auto}#search-form{margin-left:9px;margin-right:9px}li{color:#404040}table.zebra-striped{background-color:#FFF}.footer{background-color:#EEE}.sidebar-nav{padding-left:0;padding-right:0}.sidebar-nav .icon-chevron-right,.sidebar-nav .icon-chevron-down{margin-top:2px;margin-right:-6px;float:right;opacity:.25}li.pull-right{margin-left:3px;margin-right:3px}.well{margin-bottom:10px}a.dropdown-toggle{cursor:pointer}h1>code,h2>code,h3>code,h4>code,h5>code{font-size:unset}.table th,.table td{text-align:revert}.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0;padding-left:15px}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}/*! + * "Fork me on GitHub" CSS ribbon v0.2.3 | MIT License + * https://github.com/simonwhitaker/github-fork-ribbon-css +*/.github-fork-ribbon{width:12.1em;height:12.1em;position:absolute;overflow:hidden;top:0;right:0;z-index:9999;pointer-events:none;font-size:13px;text-decoration:none;text-indent:-999999px}.github-fork-ribbon.fixed{position:fixed}.github-fork-ribbon:hover,.github-fork-ribbon:active{background-color:rgba(0,0,0,0.0)}.github-fork-ribbon:before,.github-fork-ribbon:after{position:absolute;display:block;width:15.38em;height:1.54em;top:3.23em;right:-3.23em;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.github-fork-ribbon:before{content:"";padding:.38em 0;background-color:#a00;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0.15)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,0.15));-webkit-box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);-moz-box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);pointer-events:auto}.github-fork-ribbon:after{content:attr(data-ribbon);color:#fff;font:700 1em "Helvetica Neue",Helvetica,Arial,sans-serif;line-height:1.54em;text-decoration:none;text-shadow:0 -.08em rgba(0,0,0,0.5);text-align:center;text-indent:0;padding:.15em 0;margin:.15em 0;border-width:.08em 0;border-style:dotted;border-color:#fff;border-color:rgba(255,255,255,0.7)}.github-fork-ribbon.left-top,.github-fork-ribbon.left-bottom{right:auto;left:0}.github-fork-ribbon.left-bottom,.github-fork-ribbon.right-bottom{top:auto;bottom:0}.github-fork-ribbon.left-top:before,.github-fork-ribbon.left-top:after,.github-fork-ribbon.left-bottom:before,.github-fork-ribbon.left-bottom:after{right:auto;left:-3.23em}.github-fork-ribbon.left-bottom:before,.github-fork-ribbon.left-bottom:after,.github-fork-ribbon.right-bottom:before,.github-fork-ribbon.right-bottom:after{top:auto;bottom:3.23em}.github-fork-ribbon.left-top:before,.github-fork-ribbon.left-top:after,.github-fork-ribbon.right-bottom:before,.github-fork-ribbon.right-bottom:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)} \ No newline at end of file diff --git a/ko/css/print.css b/ko/css/print.css new file mode 100644 index 0000000..34af557 --- /dev/null +++ b/ko/css/print.css @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +#banner, +#footer, +#leftcol, +#breadcrumbs, +.docs #toc, +.docs .courtesylinks, +#leftColumn, +#navColumn { + display: none !important; +} + +#bodyColumn, +body.docs div.docs { + margin: 0 !important; + border: none !important; +} diff --git a/ko/css/site.css b/ko/css/site.css new file mode 100644 index 0000000..055e7e2 --- /dev/null +++ b/ko/css/site.css @@ -0,0 +1 @@ +/* You can override this file with your own styles */ \ No newline at end of file diff --git a/ko/dependencies.html b/ko/dependencies.html new file mode 100644 index 0000000..6950e6b --- /dev/null +++ b/ko/dependencies.html @@ -0,0 +1,945 @@ + + + + + + + + + + mybatis-spring-native-extensions – 프로젝트 의존물들 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      프로젝트 의존물들

      +

      compile

      +

      다음은 이 프로젝트의 의존물 목록입니다. 이 의존물들은 애플리케이션을 컴파일하고 실행하는 데에 필수적인 것들입니다:

      + + + + + + + + + + + + +
      그룹ID산출물ID버전형식Licenses
      org.mybatis.spring.nativemybatis-spring-native-core0.1.0-SNAPSHOTjarThe Apache Software License, Version 2.0
      +

      provided

      +

      다음과 같이 프로젝트의 의존물 목록을 제공합니다. 이 의존물들은 애플리케이션의 컴파일에 필요한 것들이지만, 라이브러리를 사용할 때에 기본적으로 제공되어야 하는 것들입니다:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      그룹ID산출물ID버전형식Licenses선택사항
      org.springframework.experimentalspring-aot0.12.2jarApache License, Version 2.0No
      org.springframework.experimentalspring-native0.12.2jarApache License, Version 2.0No
      org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jarThe Apache Software License, Version 2.0Yes
      org.mybatis.scriptingmybatis-freemarker1.2.4jarThe Apache Software License, Version 2.0Yes
      org.mybatis.scriptingmybatis-thymeleaf1.0.4jarThe Apache Software License, Version 2.0Yes
      org.mybatis.scriptingmybatis-velocity2.1.2jarThe Apache Software License, Version 2.0Yes
      +

      프로젝트 전이 의존물

      +

      다음은 이 프로젝트의 전이 의존물 (Transitive Dependencies) 목록입니다. 전이 의존물들은 프로젝트 의존물들의 의존물들입니다.

      +

      provided

      +

      다음과 같이 프로젝트의 의존물 목록을 제공합니다. 이 의존물들은 애플리케이션의 컴파일에 필요한 것들이지만, 라이브러리를 사용할 때에 기본적으로 제공되어야 하는 것들입니다:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      그룹ID산출물ID버전형식Licenses선택사항
      com.squareupjavapoet1.13.0jarApache 2.0No
      info.picoclipicocli4.6.1jarThe Apache Software License, version 2.0No
      jakarta.annotationjakarta.annotation-api1.3.5jarEPL 2.0GPL2 w/ CPENo
      net.bytebuddybyte-buddy1.12.23jarApache License, Version 2.0No
      org.apache.commonscommons-compress1.21jarApache License, Version 2.0No
      org.springframeworkspring-aop5.3.31jarApache License, Version 2.0No
      org.springframeworkspring-beans5.3.31jarApache License, Version 2.0No
      org.springframeworkspring-context5.3.31jarApache License, Version 2.0No
      org.springframeworkspring-core5.3.31jarApache License, Version 2.0No
      org.springframeworkspring-expression5.3.31jarApache License, Version 2.0No
      org.springframeworkspring-jcl5.3.31jarApache License, Version 2.0No
      org.springframework.bootspring-boot-loader-tools2.7.18jarApache License, Version 2.0No
      ognlognl3.1.26jarThe Apache Software License, Version 2.0Yes
      org.apache.commonscommons-lang33.12.0jarApache License, Version 2.0Yes
      org.apache.commonscommons-text1.10.0jarApache License, Version 2.0Yes
      org.apache.velocityvelocity-engine-core2.3jarApache License, Version 2.0Yes
      org.attoparserattoparser2.0.5.RELEASEjarThe Apache Software License, Version 2.0Yes
      org.freemarkerfreemarker2.3.32jarApache License, Version 2.0Yes
      org.javassistjavassist3.20.0-GAjarMPL 1.1LGPL 2.1Apache License 2.0Yes
      org.mybatismybatis3.5.15jarThe Apache Software License, Version 2.0Yes
      org.slf4jslf4j-api1.7.36jarMIT LicenseYes
      org.thymeleafthymeleaf3.0.15.RELEASEjarThe Apache Software License, Version 2.0Yes
      org.unbescapeunbescape1.1.6.RELEASEjarThe Apache Software License, Version 2.0Yes
      +

      프로젝트 의존물 그래프

      +

      의존물 트리

      +
      +

      라이센스

      +

      The Apache Software License, version 2.0: picocli - a mighty tiny Command Line Interface

      +

      Apache License 2.0: Javassist

      +

      Apache 2.0: JavaPoet

      +

      MIT License: SLF4J API Module

      +

      Apache License, Version 2.0: Apache Commons Compress, Apache Commons Lang, Apache Commons Text, Apache FreeMarker, Apache Velocity - Engine, Byte Buddy (without dependencies), Spring AOP, Spring AOT, Spring Beans, Spring Commons Logging Bridge, Spring Context, Spring Core, Spring Expression Language (SpEL), Spring Native, spring-boot-loader-tools

      +

      LGPL 2.1: Javassist

      +

      EPL 2.0: Jakarta Annotations API

      +

      GPL2 w/ CPE: Jakarta Annotations API

      +

      MPL 1.1: Javassist

      +

      The Apache Software License, Version 2.0: MyBatis Dynamic SQL, MyBatis FreeMarker, MyBatis Thymeleaf, MyBatis Velocity, OGNL - Object Graph Navigation Library, attoparser, mybatis, mybatis-spring-native-core, mybatis-spring-native-extensions, thymeleaf, unbescape

      +

      의존 파일 상세

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      파일명크기항목들클래스패키지Java VersionDebug Information
      javapoet-1.13.0.jar106.1 kB534311.8Yes
      picocli-4.6.1.jar402.1 kB22922429Yes
      jakarta.annotation-api-1.3.5.jar25.1 kB281531.8Yes
      byte-buddy-1.12.23.jar3.9 MB27632709399Yes
      commons-compress-1.21.jar1 MB576524351.8Yes
      core/target/classes-000--
      spring-aop-5.3.31.jar384.5 kB308279171.8Yes
      spring-beans-5.3.31.jar706.4 kB422392131.8Yes
      spring-context-5.3.31.jar1.3 MB979892641.8Yes
      spring-core-5.3.31.jar1.5 MB1037978491.8Yes
      spring-expression-5.3.31.jar293.2 kB16415061.8Yes
      spring-jcl-5.3.31.jar25.2 kB281721.8Yes
      spring-boot-loader-tools-2.7.18.jar250.3 kB937821.8Yes
      spring-aot-0.12.2.jar870.1 kB4613815111Yes
      spring-native-0.12.2.jar169.6 kB1761282711Yes
      ognl-3.1.26.jar262.2 kB15113941.6Yes
      commons-lang3-3.12.0.jar587.4 kB374345171.8Yes
      commons-text-1.10.0.jar238.4 kB17415481.8Yes
      velocity-engine-core-2.3.jar531.3 kB299256191.8Yes
      attoparser-2.0.5.RELEASE.jar245 kB165147121.6Yes
      freemarker-2.3.32.jar1.7 MB12501225171.8Yes
      javassist-3.20.0-GA.jar750.6 kB423399171.6Yes
      mybatis-3.5.15.jar1.8 MB11831083771.8Yes
      mybatis-dynamic-sql-1.5.0.jar632.4 kB562520281.8Yes
      mybatis-freemarker-1.2.4.jar26.2 kB241021.8Yes
      mybatis-thymeleaf-1.0.4.jar71.8 kB665051.8Yes
      mybatis-velocity-2.1.2.jar43.5 kB321911.8Yes
      slf4j-api-1.7.36.jar41.1 kB463441.5Yes
      thymeleaf-3.0.15.RELEASE.jar870.9 kB606559381.6Yes
      unbescape-1.1.6.RELEASE.jar173.9 kB8569101.6Yes
      Total크기항목들클래스패키지Java VersionDebug Information
      3019 MB12757118195701129
      compile: 1compile: 4.1 kB---11-
      provided: 29provided: 19 MBprovided: 12757provided: 11819provided: 570provided: 29
      +
      +
      +
      +
      + + + + diff --git a/ko/dependency-convergence.html b/ko/dependency-convergence.html new file mode 100644 index 0000000..c877526 --- /dev/null +++ b/ko/dependency-convergence.html @@ -0,0 +1,97 @@ + + + + + + + + + + mybatis-spring-native – Reactor Dependency Convergence + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Reactor Dependency Convergence

      + + + + + + + + + + + + + + + + + + + + + +
      + 통계: +
      하위 프로젝트 개수:17
      의존물 개수 (NOD):76
      유일 산출물들의 개수 (NOA):76
      Number of version-conflicting artifacts (NOC):0
      스냅샷 산출물 개수 (NOS):0
      집중 (NOD/NOA):[Success] 100 %
      릴리즈 준비 (100% 집중 및 스냅샷 없음):[Success] 성공
      +
      +
      +
      +
      + + + + diff --git a/ko/dependency-info.html b/ko/dependency-info.html new file mode 100644 index 0000000..b4f81f4 --- /dev/null +++ b/ko/dependency-info.html @@ -0,0 +1,100 @@ + + + + + + + + + + mybatis-spring-native-docs – Dependency Information + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Dependency Information

      +

      Apache Maven

      +
      +
      <dependency>
      +  <groupId>org.mybatis.spring.native</groupId>
      +  <artifactId>mybatis-spring-native-docs</artifactId>
      +  <version>0.1.0-SNAPSHOT</version>
      +</dependency>
      +

      Apache Ivy

      +
      +
      <dependency org="org.mybatis.spring.native" name="mybatis-spring-native-docs" rev="0.1.0-SNAPSHOT">
      +  <artifact name="mybatis-spring-native-docs" type="jar" />
      +</dependency>
      +

      Groovy Grape

      +
      +
      @Grapes(
      +@Grab(group='org.mybatis.spring.native', module='mybatis-spring-native-docs', version='0.1.0-SNAPSHOT')
      +)
      +

      Gradle/Grails

      +
      +
      implementation 'org.mybatis.spring.native:mybatis-spring-native-docs:0.1.0-SNAPSHOT'
      +

      Scala SBT

      +
      +
      libraryDependencies += "org.mybatis.spring.native" % "mybatis-spring-native-docs" % "0.1.0-SNAPSHOT"
      +

      Leiningen

      +
      +
      [org.mybatis.spring.native/mybatis-spring-native-docs "0.1.0-SNAPSHOT"]
      +
      +
      +
      +
      + + + + diff --git a/ko/dependency-management.html b/ko/dependency-management.html new file mode 100644 index 0000000..e388b53 --- /dev/null +++ b/ko/dependency-management.html @@ -0,0 +1,8421 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Dependency Management + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Project Dependency Management

      +

      compile

      +

      The following is a list of compile dependencies in the DependencyManagement of this project. These dependencies can be included in the submodules to compile and run the submodule:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      GroupIdArtifactIdVersionClassifierTypeLicense
      antlrantlr2.7.7-jarBSD License
      ch.qos.logbacklogback-access1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
      ch.qos.logbacklogback-classic1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
      ch.qos.logbacklogback-core1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
      com.atomikostransactions-jdbc4.0.6-jarAtomikos Multiple Licensing Scheme
      com.atomikostransactions-jms4.0.6-jarAtomikos Multiple Licensing Scheme
      com.atomikostransactions-jta4.0.6-jarAtomikos Multiple Licensing Scheme
      com.couchbase.clientjava-client3.3.4-jarThe Apache Software License, Version 2.0
      com.datastax.ossjava-driver-core4.14.1-jarApache 2
      com.datastax.ossjava-driver-core-shaded4.14.1-jarApache 2
      com.datastax.ossjava-driver-mapper-processor4.14.1-jarApache 2
      com.datastax.ossjava-driver-mapper-runtime4.14.1-jarApache 2
      com.datastax.ossjava-driver-metrics-micrometer4.14.1-jarApache 2
      com.datastax.ossjava-driver-metrics-microprofile4.14.1-jarApache 2
      com.datastax.ossjava-driver-query-builder4.14.1-jarApache 2
      com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1-jarApache 2
      com.datastax.ossjava-driver-test-infra4.14.1-jarApache 2
      com.datastax.ossnative-protocol1.5.1-jarApache 2
      com.fasterxmlclassmate1.5.1-jarApache License, Version 2.0
      com.fasterxml.jackson.corejackson-annotations2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.corejackson-core2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.corejackson-databind2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jrjackson-jr-all2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jrjackson-jr-objects2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.jrjackson-jr-stree2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-afterburner2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-blackbird2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-guice2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-kotlin2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-mrbean2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-osgi2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-paranamer2.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5-jarThe Apache Software License, Version 2.0
      com.fasterxml.jackson.modulejackson-module-scala_32.13.5-jarThe Apache Software License, Version 2.0
      com.github.ben-manes.caffeinecaffeine2.9.3-jarApache License, Version 2.0
      com.github.ben-manes.caffeineguava2.9.3-jarApache License, Version 2.0
      com.github.ben-manes.caffeinejcache2.9.3-jarApache License, Version 2.0
      com.github.ben-manes.caffeinesimulator2.9.3-jarApache License, Version 2.0
      com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1-jarThe Apache Software License, Version 2.0
      com.google.appengineappengine-api-1.0-sdk1.9.98-jarApache License, Version 2.0, CDDL/GPLv2+CE, JSR-000107 JCACHE 2.9 Public Review - Updated Specification License
      com.google.code.gsongson2.9.1-jarApache-2.0
      com.graphql-javagraphql-java18.5-jarMIT
      com.h2databaseh22.1.214-jarMPL 2.0, EPL 1.0
      com.hazelcasthazelcast5.1.7-jarThe Apache Software License, Version 2.0
      com.hazelcasthazelcast-hibernate522.2.1-jarThe Hazelcast Community License
      com.hazelcasthazelcast-hibernate532.2.1-jarThe Hazelcast Community License
      com.hazelcasthazelcast-spring5.1.7-jarThe Apache Software License, Version 2.0
      com.ibm.db2jcc11.5.9.0-jarInternational Program License Agreement (IPLA)
      com.jayway.jsonpathjson-path2.7.0-jarThe Apache Software License, Version 2.0
      com.jayway.jsonpathjson-path-assert2.7.0-jarThe Apache Software License, Version 2.0
      com.microsoft.sqlservermssql-jdbc10.2.3.jre8-jarMIT License
      com.mysqlmysql-connector-j8.0.33-jarThe GNU General Public License, v2 with Universal FOSS Exception, v1.0
      com.oracle.database.haons21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.hasimplefan21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcojdbc1121.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcojdbc11-production21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcojdbc821.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcojdbc8-production21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcrsi21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcucp21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbcucp1121.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc11_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc8_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.nlsorai18n21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.observabilitydms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.observabilityojdbc11-observability21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.observabilityojdbc11dms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.observabilityojdbc8-observability21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.observabilityojdbc8dms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.r2dbcoracle-r2dbc0.4.0-jarUniversal Permissive License v1.0, Apache License, Version 2.0
      com.oracle.database.securityoraclepki21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.securityosdt_cert21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.securityosdt_core21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.xmlxdb21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.oracle.database.xmlxmlparserv221.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
      com.querydslquerydsl-apt5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-codegen5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-codegen-utils5.0.0-jar-
      com.querydslquerydsl-collections5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-core5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-guava5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-hibernate-search5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-jdo5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-jpa5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-jpa-codegen5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-kotlin5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-kotlin-codegen5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-lucene35.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-lucene45.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-lucene55.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-mongodb5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-scala5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-spatial5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-sql5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-sql-codegen5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-sql-spatial5.0.0-jarApache License, Version 2.0
      com.querydslquerydsl-sql-spring5.0.0-jarApache License, Version 2.0
      com.rabbitmqamqp-client5.14.3-jarAL 2.0, GPL v2, MPL 2.0
      com.rabbitmqstream-client0.5.0-jarASL 2.0, MPL 2.0
      com.samskivertjmustache1.15-jarThe (New) BSD License
      com.sendgridsendgrid-java4.9.3-jarThe MIT License (MIT)
      com.squareup.okhttp3logging-interceptor4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3mockwebserver4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okcurl4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okhttp4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okhttp-brotli4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okhttp-dnsoverhttps4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okhttp-sse4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okhttp-tls4.9.3-jarThe Apache Software License, Version 2.0
      com.squareup.okhttp3okhttp-urlconnection4.9.3-jarThe Apache Software License, Version 2.0
      com.sun.activationjakarta.activation1.2.2-jarEDL 1.0
      com.sun.mailjakarta.mail1.6.7-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0
      com.sun.xml.messaging.saajsaaj-impl1.5.3-jarEclipse Distribution License - v 1.0
      com.unboundidunboundid-ldapsdk6.0.10-jarApache License, Version 2, GNU General Public License version 2 (GPLv2), GNU Lesser General Public License version 2.1 (LGPLv2.1), UnboundID LDAP SDK Free Use License
      com.zaxxerHikariCP4.0.3-jarThe Apache Software License, Version 2.0
      commons-codeccommons-codec1.15-jarApache License, Version 2.0
      commons-poolcommons-pool1.6-jarThe Apache Software License, Version 2.0
      de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11-jarThe Apache Software License, Version 2.0
      io.dropwizard.metricsmetrics-annotation4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-caffeine4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-caffeine34.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-collectd4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-core4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-ehcache4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-graphite4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-healthchecks4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-httpasyncclient4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-httpclient4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-httpclient54.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jakarta-servlet4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jakarta-servlet64.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jakarta-servlets4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jcache4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jdbi4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jdbi34.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jersey24.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jersey34.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jersey314.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jetty104.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jetty114.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jetty124.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jetty12-ee104.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jetty94.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jmx4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-json4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-jvm4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-log4j24.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-logback4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-logback134.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-logback144.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-servlet4.2.22-jarApache License 2.0
      io.dropwizard.metricsmetrics-servlets4.2.22-jarApache License 2.0
      io.lettucelettuce-core6.1.10.RELEASE-jarApache License, Version 2.0
      io.micrometermicrometer-core1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-appoptics1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-atlas1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-azure-monitor1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-cloudwatch1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-cloudwatch21.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-datadog1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-dynatrace1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-elastic1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-ganglia1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-graphite1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-health1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-humio1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-influx1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-jmx1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-kairos1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-new-relic1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-opentsdb1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-otlp1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-prometheus1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-signalfx1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-stackdriver1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-statsd1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-registry-wavefront1.9.17-jarThe Apache Software License, Version 2.0
      io.micrometermicrometer-test1.9.17-jarThe Apache Software License, Version 2.0
      io.nettynetty-all4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-buffer4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-dns4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-haproxy4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-http4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-http24.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-memcache4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-mqtt4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-redis4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-smtp4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-socks4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-stomp4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-codec-xml4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-common4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-dev-tools4.1.101.Final-jar-
      io.nettynetty-example4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-handler4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-handler-proxy4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-handler-ssl-ocsp4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-resolver4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-resolver-dns4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-resolver-dns-classes-macos4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-resolver-dns-native-macos4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
      io.nettynetty-resolver-dns-native-macos4.1.101.Finalosx-x86_64jarApache License, Version 2.0
      io.nettynetty-resolver-dns-native-macos4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-tcnative2.0.61.Finallinux-aarch_64-fedorajarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative2.0.61.Finallinux-x86_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative2.0.61.Finallinux-x86_64-fedorajarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative2.0.61.Finalosx-x86_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-boringssl-static2.0.61.Finallinux-aarch_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-boringssl-static2.0.61.Finallinux-x86_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-boringssl-static2.0.61.Finalosx-aarch_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-boringssl-static2.0.61.Finalosx-x86_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-boringssl-static2.0.61.Finalwindows-x86_64jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-boringssl-static2.0.61.Final-jarThe Apache Software License, Version 2.0
      io.nettynetty-tcnative-classes2.0.61.Final-jarThe Apache Software License, Version 2.0
      io.nettynetty-transport4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-classes-epoll4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-classes-kqueue4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-native-epoll4.1.101.Finallinux-aarch_64jarApache License, Version 2.0
      io.nettynetty-transport-native-epoll4.1.101.Finallinux-x86_64jarApache License, Version 2.0
      io.nettynetty-transport-native-epoll4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-native-kqueue4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
      io.nettynetty-transport-native-kqueue4.1.101.Finalosx-x86_64jarApache License, Version 2.0
      io.nettynetty-transport-native-kqueue4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-native-unix-common4.1.101.Finallinux-aarch_64jarApache License, Version 2.0
      io.nettynetty-transport-native-unix-common4.1.101.Finallinux-x86_64jarApache License, Version 2.0
      io.nettynetty-transport-native-unix-common4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
      io.nettynetty-transport-native-unix-common4.1.101.Finalosx-x86_64jarApache License, Version 2.0
      io.nettynetty-transport-native-unix-common4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-rxtx4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-sctp4.1.101.Final-jarApache License, Version 2.0
      io.nettynetty-transport-udt4.1.101.Final-jarApache License, Version 2.0
      io.projectreactorreactor-core3.4.34-jarApache License, Version 2.0
      io.projectreactorreactor-test3.4.34-jarApache License, Version 2.0
      io.projectreactorreactor-tools3.4.34-jarApache License, Version 2.0
      io.projectreactor.addonsreactor-adapter3.4.10-jarApache License, Version 2.0
      io.projectreactor.addonsreactor-extra3.4.10-jarApache License, Version 2.0
      io.projectreactor.addonsreactor-pool0.2.12-jarThe Apache Software License, Version 2.0
      io.projectreactor.kafkareactor-kafka1.3.22-jarThe Apache Software License, Version 2.0
      io.projectreactor.kotlinreactor-kotlin-extensions1.1.10-jarThe Apache Software License, Version 2.0
      io.projectreactor.nettyreactor-netty1.0.39-jarThe Apache Software License, Version 2.0
      io.projectreactor.nettyreactor-netty-core1.0.39-jarThe Apache Software License, Version 2.0
      io.projectreactor.nettyreactor-netty-http1.0.39-jarThe Apache Software License, Version 2.0
      io.projectreactor.nettyreactor-netty-http-brave1.0.39-jarThe Apache Software License, Version 2.0
      io.projectreactor.rabbitmqreactor-rabbitmq1.5.6-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_caffeine0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_common0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_dropwizard0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_graphite_bridge0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_guava0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_hibernate0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_hotspot0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_httpserver0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_jetty0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_jetty_jdk80.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_log4j0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_log4j20.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_logback0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_pushgateway0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_servlet0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_servlet_jakarta0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_spring_boot0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_spring_web0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_tracer_otel0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_tracer_otel_agent0.15.0-jarThe Apache Software License, Version 2.0
      io.prometheussimpleclient_vertx0.15.0-jarThe Apache Software License, Version 2.0
      io.r2dbcr2dbc-h20.9.1.RELEASE-jarApache License 2.0
      io.r2dbcr2dbc-mssql0.9.0.RELEASE-jarApache License 2.0
      io.r2dbcr2dbc-pool0.9.2.RELEASE-jarApache License 2.0
      io.r2dbcr2dbc-proxy0.9.1.RELEASE-jarApache License 2.0
      io.r2dbcr2dbc-spi0.9.1.RELEASE-jarApache License 2.0
      io.reactivexrxjava1.3.8-jarThe Apache Software License, Version 2.0
      io.reactivexrxjava-reactive-streams1.2.1-jarThe Apache Software License, Version 2.0
      io.reactivex.rxjava2rxjava2.2.21-jarThe Apache Software License, Version 2.0
      io.rest-assuredjson-path4.5.1-jarApache 2.0
      io.rest-assuredjson-schema-validator4.5.1-jarApache 2.0
      io.rest-assuredkotlin-extensions4.5.1-jarApache 2.0
      io.rest-assuredrest-assured4.5.1-jarApache 2.0
      io.rest-assuredrest-assured-all4.5.1-jarApache 2.0
      io.rest-assuredrest-assured-common4.5.1-jarApache 2.0
      io.rest-assuredscala-support4.5.1-jarApache 2.0
      io.rest-assuredspring-commons4.5.1-jarApache 2.0
      io.rest-assuredspring-mock-mvc4.5.1-jarApache 2.0
      io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1-jarApache 2.0
      io.rest-assuredspring-web-test-client4.5.1-jarApache 2.0
      io.rest-assuredxml-path4.5.1-jarApache 2.0
      io.rest-assured.exampleskotlin-example4.5.1-jar-
      io.rest-assured.examplesrest-assured-itest-java4.5.1-jar-
      io.rest-assured.examplesscala-example4.5.1-jar-
      io.rest-assured.examplesscala-mock-mvc-example4.5.1-jar-
      io.rest-assured.examplesscalatra-example4.5.1-jar-
      io.rest-assured.examplesscalatra-webapp4.5.1-war-
      io.rest-assured.examplesspring-mvc-webapp4.5.1-war-
      io.rsocketrsocket-core1.1.3-jarThe Apache Software License, Version 2.0
      io.rsocketrsocket-load-balancer1.1.3-jarThe Apache Software License, Version 2.0
      io.rsocketrsocket-micrometer1.1.3-jarThe Apache Software License, Version 2.0
      io.rsocketrsocket-test1.1.3-jarThe Apache Software License, Version 2.0
      io.rsocketrsocket-transport-local1.1.3-jarThe Apache Software License, Version 2.0
      io.rsocketrsocket-transport-netty1.1.3-jarThe Apache Software License, Version 2.0
      io.spring.gradledependency-management-plugin1.0.15.RELEASE-jarThe Apache Software License, Version 2.0
      io.undertowundertow-core2.2.28.Final-jarApache License Version 2.0
      io.undertowundertow-servlet2.2.28.Final-jarApache License Version 2.0
      io.undertowundertow-websockets-jsr2.2.28.Final-jarApache License Version 2.0
      jakarta.activationjakarta.activation-api1.2.2-jarEDL 1.0
      jakarta.annotationjakarta.annotation-api1.3.5-jarEPL 2.0, GPL2 w/ CPE
      jakarta.jmsjakarta.jms-api2.0.3-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
      jakarta.jsonjakarta.json-api1.1.6-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
      jakarta.json.bindjakarta.json.bind-api1.0.2-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
      jakarta.mailjakarta.mail-api1.6.7-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0
      jakarta.management.j2eejakarta.management.j2ee-api1.1.4-jarEPL 2.0, GPL2 w/ CPE
      jakarta.persistencejakarta.persistence-api2.2.3-jarEclipse Public License v. 2.0, Eclipse Distribution License v. 1.0
      jakarta.servletjakarta.servlet-api4.0.4-jarEPL 2.0, GPL2 w/ CPE
      jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7-jarEPL 2.0, GPL2 w/ CPE
      jakarta.transactionjakarta.transaction-api1.3.3-jarEPL 2.0, GPL2 w/ CPE
      jakarta.validationjakarta.validation-api2.0.2-jarApache License 2.0
      jakarta.websocketjakarta.websocket-api1.1.2-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
      jakarta.ws.rsjakarta.ws.rs-api2.1.6-jarEPL 2.0, GPL2 w/ CPE
      jakarta.xml.bindjakarta.xml.bind-api2.3.3-jarEclipse Distribution License - v 1.0
      jakarta.xml.soapjakarta.xml.soap-api1.4.2-jarEclipse Distribution License - v 1.0
      jakarta.xml.wsjakarta.xml.ws-api2.3.3-jarEclipse Distribution License - v 1.0
      javax.activationjavax.activation-api1.2.0-jarCDDL/GPLv2+CE
      javax.annotationjavax.annotation-api1.3.2-jarCDDL + GPLv2 with classpath exception
      javax.cachecache-api1.1.1-jarApache License, Version 2.0
      javax.jmsjavax.jms-api2.0.1-jarCDDL + GPLv2 with classpath exception
      javax.jsonjavax.json-api1.1.4-jarDual license consisting of the CDDL v1.1 and GPL v2
      javax.json.bindjavax.json.bind-api1.0-jarDual license consisting of the CDDL v1.1 and GPL v2
      javax.mailjavax.mail-api1.6.2-jarCDDL/GPLv2+CE
      javax.moneymoney-api1.1-jarApache License, Version 2.0
      javax.persistencejavax.persistence-api2.2-jarEclipse Public License v1.0, Eclipse Distribution License v. 1.0
      javax.servletjavax.servlet-api4.0.1-jarCDDL + GPLv2 with classpath exception
      javax.servletjstl1.2-jar-
      javax.transactionjavax.transaction-api1.3-jarCDDL + GPLv2 with classpath exception
      javax.validationvalidation-api2.0.1.Final-jarApache License 2.0
      javax.websocketjavax.websocket-api1.1-jarDual license consisting of the CDDL v1.1 and GPL v2
      javax.xml.bindjaxb-api2.3.1-jarCDDL 1.1, GPL2 w/ CPE
      javax.xml.wsjaxws-api2.3.1-jarCDDL + GPLv2 with classpath exception
      jaxenjaxen1.2.0-jarBSD License 2.0
      junitjunit4.13.2-jarEclipse Public License 1.0
      net.bytebuddybyte-buddy1.12.23-jarApache License, Version 2.0
      net.bytebuddybyte-buddy-agent1.12.23-jarApache License, Version 2.0
      net.minidevjson-smart2.4.11-jarThe Apache Software License, Version 2.0
      net.sf.ehcacheehcache2.10.9.2-jarThe Apache Software License, Version 2.0
      net.sourceforge.htmlunithtmlunit2.60.0-jarApache License, Version 2.0
      net.sourceforge.jtdsjtds1.3.1-jarLGPL
      net.sourceforge.nekohtmlnekohtml1.9.22-jarThe Apache Software License, Version 2.0
      nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0-jarThe Apache Software License, Version 2.0
      org.apache.activemqactivemq-amqp5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-blueprint5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-broker5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-camel5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-client5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-console5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-http5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-jaas5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-jdbc-store5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-jms-pool5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-kahadb-store5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-karaf5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-leveldb-store5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-log4j-appender5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-mqtt5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-openwire-generator5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-openwire-legacy5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-osgi5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-partition5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-pool5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-ra5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-run5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-runtime-config5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-shiro5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-spring5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-stomp5.16.7-jarApache License, Version 2.0
      org.apache.activemqactivemq-web5.16.7-jarApache License, Version 2.0
      org.apache.activemqartemis-amqp-protocol2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-commons2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-core-client2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-jdbc-store2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-jms-client2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-jms-server2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-journal2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-quorum-api2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-selector2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-server2.19.1-jarApache License, Version 2.0
      org.apache.activemqartemis-service-extensions2.19.1-jarApache License, Version 2.0
      org.apache.commonscommons-dbcp22.9.0-jarApache License, Version 2.0
      org.apache.commonscommons-lang33.12.0-jarApache License, Version 2.0
      org.apache.commonscommons-pool22.11.1-jarApache License, Version 2.0
      org.apache.derbyderby10.14.2.0-jarApache 2
      org.apache.derbyderbyclient10.14.2.0-jarApache 2
      org.apache.derbyderbynet10.14.2.0-jarApache 2
      org.apache.derbyderbyoptionaltools10.14.2.0-jarApache 2
      org.apache.derbyderbytools10.14.2.0-jarApache 2
      org.apache.httpcomponentsfluent-hc4.5.14-jarApache License, Version 2.0
      org.apache.httpcomponentshttpasyncclient4.1.5-jarApache License, Version 2.0
      org.apache.httpcomponentshttpclient4.5.14-jarApache License, Version 2.0
      org.apache.httpcomponentshttpclient-cache4.5.14-jarApache License, Version 2.0
      org.apache.httpcomponentshttpclient-osgi4.5.14-jarApache License, Version 2.0
      org.apache.httpcomponentshttpclient-win4.5.14-jarApache License, Version 2.0
      org.apache.httpcomponentshttpcore4.4.16-jarApache License, Version 2.0
      org.apache.httpcomponentshttpcore-nio4.4.16-jarApache License, Version 2.0
      org.apache.httpcomponentshttpmime4.5.14-jarApache License, Version 2.0
      org.apache.httpcomponents.client5httpclient55.1.4-jarApache License, Version 2.0
      org.apache.httpcomponents.client5httpclient5-cache5.1.4-jarApache License, Version 2.0
      org.apache.httpcomponents.client5httpclient5-fluent5.1.4-jarApache License, Version 2.0
      org.apache.httpcomponents.client5httpclient5-win5.1.4-jarApache License, Version 2.0
      org.apache.httpcomponents.core5httpcore55.1.5-jarApache License, Version 2.0
      org.apache.httpcomponents.core5httpcore5-h25.1.5-jarApache License, Version 2.0
      org.apache.httpcomponents.core5httpcore5-reactive5.1.5-jarApache License, Version 2.0
      org.apache.johnzonjohnzon-core1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.johnzonjohnzon-jaxrs1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.johnzonjohnzon-jsonb1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.johnzonjohnzon-jsonb-extras1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.johnzonjohnzon-jsonschema1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.johnzonjohnzon-mapper1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.johnzonjohnzon-websocket1.2.21-jarThe Apache Software License, Version 2.0
      org.apache.kafkaconnect3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-api3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-basic-auth-extension3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-file3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-json3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-mirror3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-mirror-client3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-runtime3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkaconnect-transforms3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkagenerator3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-clients3.1.2testjarThe Apache License, Version 2.0
      org.apache.kafkakafka-clients3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-log4j-appender3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-metadata3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-raft3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-server-common3.1.2testjarThe Apache License, Version 2.0
      org.apache.kafkakafka-server-common3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-shell3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-storage3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-storage-api3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-streams3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-streams-scala_2.123.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-streams-scala_2.133.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-streams-test-utils3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka-tools3.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka_2.123.1.2testjarThe Apache License, Version 2.0
      org.apache.kafkakafka_2.123.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkakafka_2.133.1.2testjarThe Apache License, Version 2.0
      org.apache.kafkakafka_2.133.1.2-jarThe Apache License, Version 2.0
      org.apache.kafkatrogdor3.1.2-jarThe Apache License, Version 2.0
      org.apache.logging.log4jlog4j-1.2-api2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-api2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-appserver2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-cassandra2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-core2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-couchdb2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-docker2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-flume-ng2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-iostreams2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-jcl2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-jmx-gui2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-jpa2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-jpl2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-jul2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-kubernetes2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-layout-template-json2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-liquibase2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-mongodb32.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-mongodb42.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-slf4j-impl2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-slf4j18-impl2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-spring-boot2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-taglib2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-to-slf4j2.17.2-jarApache License, Version 2.0
      org.apache.logging.log4jlog4j-web2.17.2-jarApache License, Version 2.0
      org.apache.solrsolr-analysis-extras8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-analytics8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-cell8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-core8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-dataimporthandler8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-dataimporthandler-extras8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-gcs-repository8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-jaegertracer-configurator8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-langid8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-ltr8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-prometheus-exporter8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-s3-repository8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-solrj8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-test-framework8.11.2-jarApache License, Version 2.0
      org.apache.solrsolr-velocity8.11.2-jarApache License, Version 2.0
      org.apache.tomcattomcat-annotations-api9.0.83-jarApache License, Version 2.0
      org.apache.tomcattomcat-jdbc9.0.83-jarApache License, Version 2.0
      org.apache.tomcattomcat-jsp-api9.0.83-jarApache License, Version 2.0
      org.apache.tomcat.embedtomcat-embed-core9.0.83-jarApache License, Version 2.0
      org.apache.tomcat.embedtomcat-embed-el9.0.83-jarApache License, Version 2.0
      org.apache.tomcat.embedtomcat-embed-jasper9.0.83-jarApache License, Version 2.0
      org.apache.tomcat.embedtomcat-embed-websocket9.0.83-jarApache License, Version 2.0
      org.aspectjaspectjrt1.9.7-jarEclipse Public License - v 2.0
      org.aspectjaspectjtools1.9.7-jarEclipse Public License - v 2.0
      org.aspectjaspectjweaver1.9.7-jarEclipse Public License - v 2.0
      org.assertjassertj-core3.22.0-jarApache License, Version 2.0
      org.awaitilityawaitility4.2.0-jarApache 2.0
      org.awaitilityawaitility-groovy4.2.0-jarApache 2.0
      org.awaitilityawaitility-kotlin4.2.0-jarApache 2.0
      org.awaitilityawaitility-scala4.2.0-jarApache 2.0
      org.cache2kcache2k-api2.6.1.Final-jarApache 2
      org.cache2kcache2k-config2.6.1.Final-jarApache 2
      org.cache2kcache2k-core2.6.1.Final-jarApache 2
      org.cache2kcache2k-jcache2.6.1.Final-jarApache 2
      org.cache2kcache2k-micrometer2.6.1.Final-jarApache 2
      org.cache2kcache2k-spring2.6.1.Final-jarApache 2
      org.codehaus.groovygroovy3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-ant3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-astbuilder3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-bsf3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-cli-commons3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-cli-picocli3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-console3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-datetime3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-dateutil3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-docgenerator3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-groovydoc3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-groovysh3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-jaxb3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-jmx3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-json3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-jsr2233.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-macro3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-nio3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-servlet3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-sql3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-swing3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-templates3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-test3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-test-junit53.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-testng3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-xml3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.groovygroovy-yaml3.0.19-jarThe Apache Software License, Version 2.0
      org.codehaus.janinocommons-compiler3.1.10-jarBSD-3-Clause
      org.codehaus.janinocommons-compiler-jdk3.1.10-jarBSD-3-Clause
      org.codehaus.janinojanino3.1.10-jarBSD-3-Clause
      org.eclipse.jettyapache-jsp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyapache-jstl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyinfinispan-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-alpn-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-annotations9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-ant9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-continuation9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-deploy9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-distribution9.4.53.v20231009-tar.gzApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-distribution9.4.53.v20231009-zipApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-hazelcast9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-home9.4.53.v20231009-tar.gzApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-home9.4.53.v20231009-zipApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-http9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-http-spi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-io9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-jaas9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-jaspi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-jmx9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-jndi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-nosql9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-openid9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-plus9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-proxy9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-quickstart9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-reactive-httpclient1.1.15-jarApache License Version 2.0
      org.eclipse.jettyjetty-rewrite9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-security9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-servlet9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-servlets9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-spring9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-unixsocket9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-util9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-util-ajax9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-webapp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jettyjetty-xml9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.http2http2-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.http2http2-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.http2http2-hpack9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.http2http2-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
      org.ehcacheehcache3.10.8-jarThe Apache Software License, Version 2.0
      org.ehcacheehcache-clustered3.10.8-jarThe Apache Software License, Version 2.0
      org.ehcacheehcache-transactions3.10.8-jarThe Apache Software License, Version 2.0
      org.elasticsearchelasticsearch7.17.15-jarElastic License 2.0, Server Side Public License, v 1
      org.elasticsearch.clientelasticsearch-rest-client7.17.15-jarThe Apache Software License, Version 2.0
      org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15-jarThe Apache Software License, Version 2.0
      org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15-jarElastic License 2.0
      org.elasticsearch.clienttransport7.17.15-jarElastic License 2.0, Server Side Public License, v 1
      org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15-zipElastic License 2.0, Server Side Public License, v 1
      org.elasticsearch.plugintransport-netty4-client7.17.15-jarElastic License 2.0, Server Side Public License, v 1
      org.firebirdsql.jdbcjaybird4.0.9.java8-jarGNU Lesser General Public License, Modified BSD (3-clause) License
      org.firebirdsql.jdbcjaybird-jdk184.0.9.java8-jarGNU Lesser General Public License, Modified BSD (3-clause) License
      org.flywaydbflyway-core8.5.13-jarApache License, Version 2.0
      org.flywaydbflyway-firebird8.5.13-jarApache License, Version 2.0
      org.flywaydbflyway-mysql8.5.13-jarApache License, Version 2.0
      org.flywaydbflyway-sqlserver8.5.13-jarApache License, Version 2.0
      org.freemarkerfreemarker2.3.32-jarApache License, Version 2.0
      org.glassfishjakarta.el3.0.4-jarEPL 2.0, GPL2 w/ CPE
      org.glassfish.jaxbcodemodel2.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbcodemodel-annotation-compiler2.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbjaxb-jxc2.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbjaxb-runtime2.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbjaxb-xjc2.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbtxw22.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbtxwc22.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jaxbxsom2.3.9-jarEclipse Distribution License - v 1.0
      org.glassfish.jersey.bundlesjaxrs-ri2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.connectorsjersey-apache-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.connectorsjersey-grizzly-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.connectorsjersey-helidon-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.connectorsjersey-jdk-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.connectorsjersey-jetty-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.connectorsjersey-netty-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-grizzly2-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-jdk-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-jetty-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-jetty-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-netty-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-servlet-core2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containersjersey-container-simple-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.corejersey-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.corejersey-common2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0, Public Domain
      org.glassfish.jersey.corejersey-server2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0, Modified BSD
      org.glassfish.jersey.extjersey-bean-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-declarative-linking2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-entity-filtering2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-metainf-services2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-mvc2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-mvc-bean-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-mvc-freemarker2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-mvc-jsp2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-mvc-mustache2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-proxy-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-servlet-portability2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-spring42.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-spring52.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.extjersey-wadl-doclet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-cdi1x2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.cdijersey-weld2-se2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.microprofilejersey-mp-config2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.injectjersey-cdi2-se2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.injectjersey-hk22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-jaxb2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-json-binding2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-json-jackson2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0
      org.glassfish.jersey.mediajersey-media-json-jettison2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-json-processing2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-kryo2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-moxy2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-multipart2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.mediajersey-media-sse2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.securityoauth1-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.securityoauth1-server2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.securityoauth1-signature2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.securityoauth2-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35-pomEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
      org.glassfish.webjakarta.servlet.jsp.jstl1.2.6-jarEPL 2.0, GPL2 w/ CPE
      org.hamcresthamcrest2.2-jarBSD License 3
      org.hamcresthamcrest-core2.2-jarBSD License 3
      org.hamcresthamcrest-library2.2-jarBSD License 3
      org.hibernatehibernate-c3p05.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-core5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-ehcache5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-entitymanager5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-envers5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-hikaricp5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-java85.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-jcache5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-jpamodelgen5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-micrometer5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-proxool5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-spatial5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-testing5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernatehibernate-vibur5.6.15.Final-jarGNU Library General Public License v2.1 or later
      org.hibernate.validatorhibernate-validator6.2.5.Final-jarApache License 2.0
      org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Final-jarApache License 2.0
      org.hsqldbhsqldb2.5.2-jarHSQLDB License, a BSD open source license
      org.infinispaninfinispan-anchored-keys13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-api13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cachestore-jdbc13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cachestore-jpa13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cachestore-remote13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cachestore-rocksdb13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cachestore-sql13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cdi-common13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cdi-embedded13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cdi-remote13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-checkstyle13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cli-client13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-client-hotrod13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-client-rest13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-cloudevents-integration13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-clustered-counter13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-clustered-lock13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-commons13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-commons-test13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-component-processor13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-console0.15.5.Final-jarApache License 2.0
      org.infinispaninfinispan-core13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-extended-statistics13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-hibernate-cache-commons13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-hibernate-cache-spi13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-hibernate-cache-v5313.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-jboss-marshalling13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-jcache13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-jcache-commons13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-jcache-remote13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-key-value-store-client13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-marshaller-kryo13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-marshaller-protostuff13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-multimap13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-objectfilter13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-query13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-query-core13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-query-dsl13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-remote-query-client13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-remote-query-server13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-scripting13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-core13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-hotrod13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-memcached13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-rest13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-router13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-runtime13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-testdriver-core13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-testdriver-junit413.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-server-testdriver-junit513.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-spring5-common13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-spring5-embedded13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-spring5-remote13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-tasks13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-tasks-api13.0.20.Final-jarApache License 2.0
      org.infinispaninfinispan-tools13.0.20.Final-jar-
      org.infinispan.protostreamprotostream4.4.4.Final-jarApache License 2.0
      org.infinispan.protostreamprotostream-types4.4.4.Final-jarApache License 2.0
      org.influxdbinfluxdb-java2.22-jarThe MIT License (MIT)
      org.jboss.loggingjboss-logging3.4.3.Final-jarApache License, version 2.0
      org.jdomjdom22.0.6.1-jarSimilar to Apache License but with the acknowledgment clause removed
      org.jetbrains.kotlinkotlin-compiler1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-daemon-client1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-main-kts1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-osgi-bundle1.6.21-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinkotlin-reflect1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-script-runtime1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-script-util1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-scripting-common1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-scripting-jvm1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-stdlib1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-stdlib-common1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-stdlib-js1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test-annotations-common1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test-common1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test-js1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test-junit1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test-junit51.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinkotlin-test-testng1.6.21-jarThe Apache License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4-jarThe Apache Software License, Version 2.0
      org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4-jarThe Apache Software License, Version 2.0
      org.jolokiajolokia-core1.7.2-jarApache 2
      org.jooqjooq3.14.16-jarApache License, Version 2.0
      org.jooqjooq-codegen3.14.16-jarApache License, Version 2.0
      org.jooqjooq-kotlin3.14.16-jarApache License, Version 2.0
      org.jooqjooq-meta3.14.16-jarApache License, Version 2.0
      org.junit.jupiterjunit-jupiter5.8.2-jarEclipse Public License v2.0
      org.junit.jupiterjunit-jupiter-api5.8.2-jarEclipse Public License v2.0
      org.junit.jupiterjunit-jupiter-engine5.8.2-jarEclipse Public License v2.0
      org.junit.jupiterjunit-jupiter-migrationsupport5.8.2-jarEclipse Public License v2.0
      org.junit.jupiterjunit-jupiter-params5.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-commons1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-console1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-engine1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-jfr1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-launcher1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-reporting1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-runner1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-suite1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-suite-api1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-suite-commons1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-suite-engine1.8.2-jarEclipse Public License v2.0
      org.junit.platformjunit-platform-testkit1.8.2-jarEclipse Public License v2.0
      org.junit.vintagejunit-vintage-engine5.8.2-jarEclipse Public License v2.0
      org.liquibaseliquibase-cdi4.9.1-jarApache License, Version 2.0
      org.liquibaseliquibase-core4.9.1-jarApache License, Version 2.0
      org.mariadbr2dbc-mariadb1.1.2-jarApache License 2.0
      org.mariadb.jdbcmariadb-java-client3.1.4-jarLGPL-2.1
      org.messaginghubpooled-jms1.2.6-jarThe Apache License, Version 2.0
      org.mockitomockito-android4.5.1-jarThe MIT License
      org.mockitomockito-core4.5.1-jarThe MIT License
      org.mockitomockito-errorprone4.5.1-jarThe MIT License
      org.mockitomockito-inline4.5.1-jarThe MIT License
      org.mockitomockito-junit-jupiter4.5.1-jarThe MIT License
      org.mockitomockito-proxy4.5.1-jarThe MIT License
      org.mongodbbson4.6.1-jarThe Apache License, Version 2.0
      org.mongodbbson-record-codec4.6.1-jarThe Apache License, Version 2.0
      org.mongodbmongodb-driver-core4.6.1-jarThe Apache License, Version 2.0
      org.mongodbmongodb-driver-legacy4.6.1-jarThe Apache License, Version 2.0
      org.mongodbmongodb-driver-reactivestreams4.6.1-jarThe Apache License, Version 2.0
      org.mongodbmongodb-driver-sync4.6.1-jarThe Apache License, Version 2.0
      org.mortbay.jasperapache-el9.0.52-jarApache License Version 2.0
      org.mybatismybatis3.5.15-jarThe Apache Software License, Version 2.0
      org.mybatismybatis-spring2.1.2-jarThe Apache Software License, Version 2.0
      org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0-jarThe Apache Software License, Version 2.0
      org.mybatis.scriptingmybatis-freemarker1.2.4-jarThe Apache Software License, Version 2.0
      org.mybatis.scriptingmybatis-thymeleaf1.0.4-jarThe Apache Software License, Version 2.0
      org.mybatis.scriptingmybatis-velocity2.1.2-jarThe Apache Software License, Version 2.0
      org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2-jarThe Apache Software License, Version 2.0
      org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2-jarThe Apache Software License, Version 2.0
      org.neo4j.driverneo4j-java-driver4.4.12-jarApache License, Version 2
      org.postgresqlpostgresql42.3.8-jarBSD-2-Clause
      org.postgresqlr2dbc-postgresql0.9.2.RELEASE-jarApache License 2.0
      org.projectlomboklombok1.18.30-jarThe MIT License
      org.quartz-schedulerquartz2.3.2-jarThe Apache Software License, Version 2.0
      org.quartz-schedulerquartz-jobs2.3.2-jarThe Apache Software License, Version 2.0
      org.reactivestreamsreactive-streams1.0.4-jarMIT-0
      org.seleniumhq.seleniumhtmlunit-driver3.61.0-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumlift4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-api4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-chrome-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-chromium-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-devtools-v1004.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-devtools-v1014.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-devtools-v854.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-devtools-v994.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-edge-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-firefox-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-grid4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-http4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-ie-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-java4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-json4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-opera-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-remote-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-safari-driver4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-session-map-redis4.1.4-jarThe Apache Software License, Version 2.0
      org.seleniumhq.seleniumselenium-support4.1.4-jarThe Apache Software License, Version 2.0
      org.skyscreamerjsonassert1.5.1-jarThe Apache Software License, Version 2.0
      org.slf4jjcl-over-slf4j1.7.36-jarApache License, Version 2.0
      org.slf4jjul-to-slf4j1.7.36-jarMIT License
      org.slf4jlog4j-over-slf4j1.7.36-jarApache Software Licenses
      org.slf4jslf4j-api1.7.36-jarMIT License
      org.slf4jslf4j-ext1.7.36-jarMIT License
      org.slf4jslf4j-jcl1.7.36-jarMIT License
      org.slf4jslf4j-jdk141.7.36-jarMIT License
      org.slf4jslf4j-log4j121.7.36-jarMIT License
      org.slf4jslf4j-nop1.7.36-jarMIT License
      org.slf4jslf4j-simple1.7.36-jarMIT License
      org.springframeworkspring-aop5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-aspects5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-beans5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-context5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-context-indexer5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-context-support5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-core5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-expression5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-instrument5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-jcl5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-jdbc5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-jms5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-messaging5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-orm5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-oxm5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-r2dbc5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-test5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-tx5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-web5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-webflux5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-webmvc5.3.31-jarApache License, Version 2.0
      org.springframeworkspring-websocket5.3.31-jarApache License, Version 2.0
      org.springframework.amqpspring-amqp2.4.17-jarApache License, Version 2.0
      org.springframework.amqpspring-rabbit2.4.17-jarApache License, Version 2.0
      org.springframework.amqpspring-rabbit-junit2.4.17-jarApache License, Version 2.0
      org.springframework.amqpspring-rabbit-stream2.4.17-jarApache License, Version 2.0
      org.springframework.amqpspring-rabbit-test2.4.17-jarApache License, Version 2.0
      org.springframework.batchspring-batch-core4.3.10-jarThe Apache Software License, Version 2.0
      org.springframework.batchspring-batch-infrastructure4.3.10-jarThe Apache Software License, Version 2.0
      org.springframework.batchspring-batch-integration4.3.10-jarThe Apache Software License, Version 2.0
      org.springframework.batchspring-batch-test4.3.10-jarThe Apache Software License, Version 2.0
      org.springframework.bootspring-boot2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-actuator2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-actuator-autoconfigure2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-autoconfigure2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-autoconfigure-processor2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-buildpack-platform2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-configuration-metadata2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-configuration-processor2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-devtools2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-jarmode-layertools2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-loader2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-loader-tools2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-properties-migrator2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-activemq2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-actuator2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-amqp2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-aop2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-artemis2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-batch2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-cache2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-cassandra2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-couchbase2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-jdbc2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-jpa2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-ldap2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-mongodb2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-neo4j2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-r2dbc2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-redis2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-data-rest2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-freemarker2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-graphql2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-groovy-templates2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-hateoas2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-integration2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-jdbc2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-jersey2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-jetty2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-jooq2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-json2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-jta-atomikos2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-log4j22.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-logging2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-mail2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-mustache2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-oauth2-client2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-quartz2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-reactor-netty2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-rsocket2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-security2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-test2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-thymeleaf2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-tomcat2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-undertow2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-validation2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-web2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-web-services2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-webflux2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-starter-websocket2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-test2.7.18-jarApache License, Version 2.0
      org.springframework.bootspring-boot-test-autoconfigure2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-cassandra3.4.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-commons2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-couchbase4.4.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-elasticsearch4.4.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-envers2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-geode2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-jdbc2.4.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-jpa2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-keyvalue2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-ldap2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-mongodb3.4.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-neo4j6.3.18-jarThe Apache Software License, Version 2.0
      org.springframework.dataspring-data-r2dbc1.5.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-redis2.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-relational2.4.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-rest-core3.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-rest-hal-explorer3.7.18-jarApache License, Version 2.0
      org.springframework.dataspring-data-rest-webmvc3.7.18-jarApache License, Version 2.0
      org.springframework.experimentalspring-aot0.12.2-jarApache License, Version 2.0
      org.springframework.experimentalspring-native0.12.2-jarApache License, Version 2.0
      org.springframework.graphqlspring-graphql1.0.6-jarApache License, Version 2.0
      org.springframework.graphqlspring-graphql-test1.0.6-jarApache License, Version 2.0
      org.springframework.hateoasspring-hateoas1.5.6-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-amqp5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-core5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-event5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-feed5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-file5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-ftp5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-gemfire5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-groovy5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-http5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-ip5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-jdbc5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-jms5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-jmx5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-jpa5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-kafka5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-mail5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-mongodb5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-mqtt5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-r2dbc5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-redis5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-rmi5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-rsocket5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-scripting5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-security5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-sftp5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-stomp5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-stream5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-syslog5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-test5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-test-support5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-webflux5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-websocket5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-ws5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-xml5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-xmpp5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-zeromq5.5.20-jarApache License, Version 2.0
      org.springframework.integrationspring-integration-zookeeper5.5.20-jarApache License, Version 2.0
      org.springframework.kafkaspring-kafka2.8.11-jarApache License, Version 2.0
      org.springframework.kafkaspring-kafka-test2.8.11-jarApache License, Version 2.0
      org.springframework.ldapspring-ldap-core2.4.1-jarApache License, Version 2.0
      org.springframework.ldapspring-ldap-core-tiger2.4.1-jarApache License, Version 2.0
      org.springframework.ldapspring-ldap-ldif-core2.4.1-jarApache License, Version 2.0
      org.springframework.ldapspring-ldap-odm2.4.1-jarApache License, Version 2.0
      org.springframework.ldapspring-ldap-test2.4.1-jarApache License, Version 2.0
      org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
      org.springframework.restdocsspring-restdocs-core2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
      org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
      org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
      org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
      org.springframework.retryspring-retry1.3.4-jarApache 2.0
      org.springframework.securityspring-security-acl5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-aspects5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-cas5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-config5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-core5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-crypto5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-data5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-ldap5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-messaging5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-oauth2-client5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-oauth2-core5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-oauth2-jose5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-oauth2-resource-server5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-openid5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-remoting5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-rsocket5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-saml2-service-provider5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-taglibs5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-test5.7.11-jarApache License, Version 2.0
      org.springframework.securityspring-security-web5.7.11-jarApache License, Version 2.0
      org.springframework.sessionspring-session-core2.7.4-jarApache License, Version 2.0
      org.springframework.sessionspring-session-data-geode2.7.1-jarThe Apache Software License, Version 2.0
      org.springframework.sessionspring-session-data-mongodb2.7.4-jarApache License, Version 2.0
      org.springframework.sessionspring-session-data-redis2.7.4-jarApache License, Version 2.0
      org.springframework.sessionspring-session-hazelcast2.7.4-jarApache License, Version 2.0
      org.springframework.sessionspring-session-jdbc2.7.4-jarApache License, Version 2.0
      org.springframework.wsspring-ws-core3.1.8-jarApache License, Version 2.0
      org.springframework.wsspring-ws-security3.1.8-jarApache License, Version 2.0
      org.springframework.wsspring-ws-support3.1.8-jarApache License, Version 2.0
      org.springframework.wsspring-ws-test3.1.8-jarApache License, Version 2.0
      org.springframework.wsspring-xml3.1.8-jarApache License, Version 2.0
      org.thymeleafthymeleaf3.0.15.RELEASE-jarThe Apache Software License, Version 2.0
      org.thymeleafthymeleaf-spring53.0.15.RELEASE-jarThe Apache Software License, Version 2.0
      org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASE-jarThe Apache Software License, Version 2.0
      org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASE-jarThe Apache Software License, Version 2.0
      org.webjarswebjars-locator-core0.50-jarMIT
      org.xerialsqlite-jdbc3.36.0.3-jarThe Apache Software License, Version 2.0
      org.xmlunitxmlunit-assertj2.9.1-jarThe Apache Software License, Version 2.0
      org.xmlunitxmlunit-assertj32.9.1-jarThe Apache Software License, Version 2.0
      org.xmlunitxmlunit-core2.9.1-jarThe Apache Software License, Version 2.0
      org.xmlunitxmlunit-legacy2.9.1-jarThe BSD 3-Clause License
      org.xmlunitxmlunit-matchers2.9.1-jarThe Apache Software License, Version 2.0
      org.xmlunitxmlunit-placeholders2.9.1-jarThe Apache Software License, Version 2.0
      org.yamlsnakeyaml1.30-jarApache License, Version 2.0
      redis.clientsjedis3.8.0-jarMIT
      wsdl4jwsdl4j1.6.3-jarCPL
      +

      provided

      +

      The following is a list of provided dependencies in the DependencyManagement of this project. These dependencies can be included in the submodules to compile the submodule, but should be provided by default when using the library:

      + + + + + + + + + + + + + + + + + + +
      GroupIdArtifactIdVersionTypeLicense
      org.infinispaninfinispan-component-annotations13.0.20.FinaljarApache License 2.0
      org.infinispan.protostreamprotostream-processor4.4.4.FinaljarApache License 2.0
      +
      +
      +
      +
      + + + + diff --git a/ko/dependency-updates-aggregate-report.html b/ko/dependency-updates-aggregate-report.html new file mode 100644 index 0000000..40fa233 --- /dev/null +++ b/ko/dependency-updates-aggregate-report.html @@ -0,0 +1,44201 @@ + + + + + + + + + + mybatis-spring-native – Dependency Updates Aggregate Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's various dependencies.

      + + + + + + + + + + + + + + + + + + + + + +
      # of dependencies using the latest version available103
      # of dependencies where the next version available is smaller than an incremental version update3
      # of dependencies where the next version available is an incremental version update214
      # of dependencies where the next version available is a minor version update535
      # of dependencies where the next version available is a major version update313
      +

      Dependency Management

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      antlrantlr2.7.7jar20030911
      ch.qos.logbacklogback-access1.2.12jar1.2.131.4.14
      ch.qos.logbacklogback-classic1.2.12jar1.2.131.4.14
      ch.qos.logbacklogback-core1.2.12jar1.2.131.4.14
      com.atomikostransactions-jdbc4.0.6jar6.0.0
      com.atomikostransactions-jms4.0.6jar6.0.0
      com.atomikostransactions-jta4.0.6jar6.0.0
      com.couchbase.clientjava-client3.3.4jar3.5.3
      com.datastax.ossjava-driver-core4.14.1jar4.17.0
      com.datastax.ossjava-driver-core-shaded4.14.1jar4.17.0
      com.datastax.ossjava-driver-mapper-processor4.14.1jar4.17.0
      com.datastax.ossjava-driver-mapper-runtime4.14.1jar4.17.0
      com.datastax.ossjava-driver-metrics-micrometer4.14.1jar4.17.0
      com.datastax.ossjava-driver-metrics-microprofile4.14.1jar4.17.0
      com.datastax.ossjava-driver-query-builder4.14.1jar4.17.0
      com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1jar
      com.datastax.ossjava-driver-test-infra4.14.1jar4.17.0
      com.datastax.ossnative-protocol1.5.1jar
      com.fasterxmlclassmate1.5.1jar1.7.0
      com.fasterxml.jackson.corejackson-annotations2.13.5jar2.16.1
      com.fasterxml.jackson.corejackson-core2.13.5jar2.16.1
      com.fasterxml.jackson.corejackson-databind2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-all2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-objects2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-stree2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-afterburner2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-blackbird2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-guice2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-kotlin2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-mrbean2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-osgi2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-paranamer2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_32.13.5jar2.16.1
      com.github.ben-manes.caffeinecaffeine2.9.3jar3.1.8
      com.github.ben-manes.caffeineguava2.9.3jar3.1.8
      com.github.ben-manes.caffeinejcache2.9.3jar3.1.8
      com.github.ben-manes.caffeinesimulator2.9.3jar3.1.8
      com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1jar
      com.google.appengineappengine-api-1.0-sdk1.9.98jar2.0.24
      com.google.code.gsongson2.9.1jar2.10.1
      com.graphql-javagraphql-java18.5jar18.7230521-nf-execution
      com.h2databaseh22.1.214jar2.2.224
      com.hazelcasthazelcast5.1.7jar5.3.6
      com.hazelcasthazelcast-hibernate522.2.1jar
      com.hazelcasthazelcast-hibernate532.2.1jar2.3.05.1.0
      com.hazelcasthazelcast-spring5.1.7jar5.3.6
      com.ibm.db2jcc11.5.9.0jar
      com.jayway.jsonpathjson-path2.7.0jar2.9.0
      com.jayway.jsonpathjson-path-assert2.7.0jar2.9.0
      com.microsoft.sqlservermssql-jdbc10.2.3.jre8jar10.2.3.jre1712.6.0.jre11
      com.mysqlmysql-connector-j8.0.33jar8.3.0
      com.oracle.database.haons21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.hasimplefan21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc1121.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc11-production21.5.0.0pom21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc821.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc8-production21.5.0.0pom21.11.0.023.3.0.23.09
      com.oracle.database.jdbcrsi21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcucp21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcucp1121.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc11_g21.5.0.0jar21.11.0.0
      com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0jar21.11.0.0
      com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc8_g21.5.0.0jar21.11.0.0
      com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0jar21.11.0.0
      com.oracle.database.nlsorai18n21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.observabilitydms21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.observabilityojdbc11-observability21.5.0.0pom21.11.0.0
      com.oracle.database.observabilityojdbc11dms21.5.0.0jar21.11.0.0
      com.oracle.database.observabilityojdbc8-observability21.5.0.0pom21.11.0.0
      com.oracle.database.observabilityojdbc8dms21.5.0.0jar21.11.0.0
      com.oracle.database.r2dbcoracle-r2dbc0.4.0jar1.2.0
      com.oracle.database.securityoraclepki21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.securityosdt_cert21.5.0.0jar21.11.0.0
      com.oracle.database.securityosdt_core21.5.0.0jar21.11.0.0
      com.oracle.database.xmlxdb21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.xmlxmlparserv221.5.0.0jar21.11.0.023.3.0.23.09
      com.querydslquerydsl-apt5.0.0jar5.1.0
      com.querydslquerydsl-codegen5.0.0jar5.1.0
      com.querydslquerydsl-codegen-utils5.0.0jar
      com.querydslquerydsl-collections5.0.0jar5.1.0
      com.querydslquerydsl-core5.0.0jar5.1.0
      com.querydslquerydsl-guava5.0.0jar5.1.0
      com.querydslquerydsl-hibernate-search5.0.0jar5.1.0
      com.querydslquerydsl-jdo5.0.0jar5.1.0
      com.querydslquerydsl-jpa5.0.0jar5.1.0
      com.querydslquerydsl-jpa-codegen5.0.0jar5.1.0
      com.querydslquerydsl-kotlin5.0.0jar5.1.0
      com.querydslquerydsl-kotlin-codegen5.0.0jar5.1.0
      com.querydslquerydsl-lucene35.0.0jar5.1.0
      com.querydslquerydsl-lucene45.0.0jar5.1.0
      com.querydslquerydsl-lucene55.0.0jar5.1.0
      com.querydslquerydsl-mongodb5.0.0jar5.1.0
      com.querydslquerydsl-scala5.0.0jar5.1.0
      com.querydslquerydsl-spatial5.0.0jar5.1.0
      com.querydslquerydsl-sql5.0.0jar5.1.0
      com.querydslquerydsl-sql-codegen5.0.0jar5.1.0
      com.querydslquerydsl-sql-spatial5.0.0jar5.1.0
      com.querydslquerydsl-sql-spring5.0.0jar5.1.0
      com.rabbitmqamqp-client5.14.3jar5.20.0
      com.rabbitmqstream-client0.5.0jar0.15.0
      com.samskivertjmustache1.15jar1.16
      com.sendgridsendgrid-java4.9.3jar4.10.1
      com.squareup.okhttp3logging-interceptor4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3mockwebserver4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okcurl4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-brotli4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-dnsoverhttps4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-sse4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-tls4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-urlconnection4.9.3jar4.12.05.0.0-alpha.12
      com.sun.activationjakarta.activation1.2.2jar2.0.1
      com.sun.mailjakarta.mail1.6.7jar2.0.1
      com.sun.xml.messaging.saajsaaj-impl1.5.3jar3.0.3
      com.unboundidunboundid-ldapsdk6.0.10jar6.0.11
      com.zaxxerHikariCP4.0.3jar5.1.0
      commons-codeccommons-codec1.15jar1.16.1
      commons-poolcommons-pool1.6jar
      de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11jar3.5.44.12.2
      io.dropwizard.metricsmetrics-annotation4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-caffeine4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-caffeine34.2.22jar4.2.25
      io.dropwizard.metricsmetrics-collectd4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-core4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-ehcache4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-graphite4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-healthchecks4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-httpasyncclient4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-httpclient4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-httpclient54.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jakarta-servlet4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jakarta-servlet64.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jakarta-servlets4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jcache4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jdbi4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jdbi34.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jersey24.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jersey34.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jersey314.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty104.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty114.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty124.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty12-ee104.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty94.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jmx4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-json4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jvm4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-log4j24.2.22jar4.2.25
      io.dropwizard.metricsmetrics-logback4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-logback134.2.22jar4.2.25
      io.dropwizard.metricsmetrics-logback144.2.22jar4.2.25
      io.dropwizard.metricsmetrics-servlet4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-servlets4.2.22jar4.2.25
      io.lettucelettuce-core6.1.10.RELEASEjar6.3.1.RELEASE
      io.micrometermicrometer-core1.9.17jar1.12.2
      io.micrometermicrometer-registry-appoptics1.9.17jar1.12.2
      io.micrometermicrometer-registry-atlas1.9.17jar1.12.2
      io.micrometermicrometer-registry-azure-monitor1.9.17jar1.12.2
      io.micrometermicrometer-registry-cloudwatch1.9.17jar1.12.2
      io.micrometermicrometer-registry-cloudwatch21.9.17jar1.12.2
      io.micrometermicrometer-registry-datadog1.9.17jar1.12.2
      io.micrometermicrometer-registry-dynatrace1.9.17jar1.12.2
      io.micrometermicrometer-registry-elastic1.9.17jar1.12.2
      io.micrometermicrometer-registry-ganglia1.9.17jar1.12.2
      io.micrometermicrometer-registry-graphite1.9.17jar1.12.2
      io.micrometermicrometer-registry-health1.9.17jar1.12.2
      io.micrometermicrometer-registry-humio1.9.17jar1.12.2
      io.micrometermicrometer-registry-influx1.9.17jar1.12.2
      io.micrometermicrometer-registry-jmx1.9.17jar1.12.2
      io.micrometermicrometer-registry-kairos1.9.17jar1.12.2
      io.micrometermicrometer-registry-new-relic1.9.17jar1.12.2
      io.micrometermicrometer-registry-opentsdb1.9.17jar1.12.2
      io.micrometermicrometer-registry-otlp1.9.17jar1.12.2
      io.micrometermicrometer-registry-prometheus1.9.17jar1.12.2
      io.micrometermicrometer-registry-signalfx1.9.17jar1.12.2
      io.micrometermicrometer-registry-stackdriver1.9.17jar1.12.2
      io.micrometermicrometer-registry-statsd1.9.17jar1.12.2
      io.micrometermicrometer-registry-wavefront1.9.17jar1.12.2
      io.micrometermicrometer-test1.9.17jar1.12.2
      io.nettynetty-all4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-buffer4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-haproxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-http4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-http24.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-memcache4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-mqtt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-redis4.1.101.Finaljar4.1.106.Final
      io.nettynetty-codec-smtp4.1.101.Finaljar4.1.106.Final
      io.nettynetty-codec-socks4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-stomp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-xml4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-common4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-dev-tools4.1.101.Finaljar4.1.106.Final
      io.nettynetty-example4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-handler4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-handler-proxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-handler-ssl-ocsp4.1.101.Finaljar4.1.106.Final
      io.nettynetty-resolver4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-resolver-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-resolver-dns-classes-macos4.1.101.Finaljar4.1.106.Final
      io.nettynetty-resolver-dns-native-macos4.1.101.Finaljar4.1.106.Final
      io.nettynetty-tcnative2.0.61.Finallinux-x86_64jar2.0.62.Final
      io.nettynetty-tcnative-boringssl-static2.0.61.Finaljar2.0.62.Final
      io.nettynetty-tcnative-classes2.0.61.Finaljar2.0.62.Final
      io.nettynetty-transport4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-classes-epoll4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-classes-kqueue4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-native-epoll4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-native-kqueue4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-native-unix-common4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-rxtx4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-sctp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-udt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.projectreactorreactor-core3.4.34jar3.4.353.6.2
      io.projectreactorreactor-test3.4.34jar3.4.353.6.2
      io.projectreactorreactor-tools3.4.34jar3.4.353.6.2
      io.projectreactor.addonsreactor-adapter3.4.10jar3.5.1
      io.projectreactor.addonsreactor-extra3.4.10jar3.5.1
      io.projectreactor.addonsreactor-pool0.2.12jar1.0.5
      io.projectreactor.kafkareactor-kafka1.3.22jar
      io.projectreactor.kotlinreactor-kotlin-extensions1.1.10jar1.2.2
      io.projectreactor.nettyreactor-netty1.0.39jar1.0.411.1.15
      io.projectreactor.nettyreactor-netty-core1.0.39jar1.0.411.1.15
      io.projectreactor.nettyreactor-netty-http1.0.39jar1.0.411.1.15
      io.projectreactor.nettyreactor-netty-http-brave1.0.39jar1.0.411.1.15
      io.projectreactor.rabbitmqreactor-rabbitmq1.5.6jar
      io.prometheussimpleclient0.15.0jar0.16.0
      io.prometheussimpleclient_caffeine0.15.0jar0.16.0
      io.prometheussimpleclient_common0.15.0jar0.16.0
      io.prometheussimpleclient_dropwizard0.15.0jar0.16.0
      io.prometheussimpleclient_graphite_bridge0.15.0jar0.16.0
      io.prometheussimpleclient_guava0.15.0jar0.16.0
      io.prometheussimpleclient_hibernate0.15.0jar0.16.0
      io.prometheussimpleclient_hotspot0.15.0jar0.16.0
      io.prometheussimpleclient_httpserver0.15.0jar0.16.0
      io.prometheussimpleclient_jetty0.15.0jar0.16.0
      io.prometheussimpleclient_jetty_jdk80.15.0jar0.16.0
      io.prometheussimpleclient_log4j0.15.0jar0.16.0
      io.prometheussimpleclient_log4j20.15.0jar0.16.0
      io.prometheussimpleclient_logback0.15.0jar0.16.0
      io.prometheussimpleclient_pushgateway0.15.0jar0.16.0
      io.prometheussimpleclient_servlet0.15.0jar0.16.0
      io.prometheussimpleclient_servlet_jakarta0.15.0jar0.16.0
      io.prometheussimpleclient_spring_boot0.15.0jar0.16.0
      io.prometheussimpleclient_spring_web0.15.0jar0.16.0
      io.prometheussimpleclient_tracer_otel0.15.0jar0.16.0
      io.prometheussimpleclient_tracer_otel_agent0.15.0jar0.16.0
      io.prometheussimpleclient_vertx0.15.0jar0.16.0
      io.r2dbcr2dbc-h20.9.1.RELEASEjar1.0.0.RELEASE
      io.r2dbcr2dbc-mssql0.9.0.RELEASEjar0.9.0.SONATYPE-M41.0.2.RELEASE
      io.r2dbcr2dbc-pool0.9.2.RELEASEjar1.0.1.RELEASE
      io.r2dbcr2dbc-proxy0.9.1.RELEASEjar1.1.4.RELEASE
      io.r2dbcr2dbc-spi0.9.1.RELEASEjar1.0.0.RELEASE
      io.reactivexrxjava1.3.8jar
      io.reactivexrxjava-reactive-streams1.2.1jar
      io.reactivex.rxjava2rxjava2.2.21jar
      io.rest-assuredjson-path4.5.1jar5.4.0
      io.rest-assuredjson-schema-validator4.5.1jar5.4.0
      io.rest-assuredkotlin-extensions4.5.1jar5.4.0
      io.rest-assuredrest-assured4.5.1jar5.4.0
      io.rest-assuredrest-assured-all4.5.1jar5.4.0
      io.rest-assuredrest-assured-common4.5.1jar5.4.0
      io.rest-assuredscala-support4.5.1jar5.4.0
      io.rest-assuredspring-commons4.5.1jar5.4.0
      io.rest-assuredspring-mock-mvc4.5.1jar5.4.0
      io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1jar5.4.0
      io.rest-assuredspring-web-test-client4.5.1jar5.4.0
      io.rest-assuredxml-path4.5.1jar5.4.0
      io.rest-assured.exampleskotlin-example4.5.1jar
      io.rest-assured.examplesrest-assured-itest-java4.5.1jar
      io.rest-assured.examplesscala-example4.5.1jar
      io.rest-assured.examplesscala-mock-mvc-example4.5.1jar
      io.rest-assured.examplesscalatra-example4.5.1jar
      io.rest-assured.examplesscalatra-webapp4.5.1war
      io.rest-assured.examplesspring-mvc-webapp4.5.1war
      io.rsocketrsocket-core1.1.3jar1.1.4
      io.rsocketrsocket-load-balancer1.1.3jar1.1.4
      io.rsocketrsocket-micrometer1.1.3jar1.1.4
      io.rsocketrsocket-test1.1.3jar1.1.4
      io.rsocketrsocket-transport-local1.1.3jar1.1.4
      io.rsocketrsocket-transport-netty1.1.3jar1.1.4
      io.spring.gradledependency-management-plugin1.0.15.RELEASEjar1.1.4
      io.undertowundertow-core2.2.28.Finaljar2.3.10.Final
      io.undertowundertow-servlet2.2.28.Finaljar2.3.10.Final
      io.undertowundertow-websockets-jsr2.2.28.Finaljar2.3.10.Final
      jakarta.activationjakarta.activation-api1.2.2jar2.1.2
      jakarta.annotationjakarta.annotation-api1.3.5jar3.0.0-M1
      jakarta.jmsjakarta.jms-api2.0.3jar3.1.0
      jakarta.jsonjakarta.json-api1.1.6jar2.1.3
      jakarta.json.bindjakarta.json.bind-api1.0.2jar3.0.0
      jakarta.mailjakarta.mail-api1.6.7jar2.1.2
      jakarta.management.j2eejakarta.management.j2ee-api1.1.4jar
      jakarta.persistencejakarta.persistence-api2.2.3jar3.2.0-M1
      jakarta.servletjakarta.servlet-api4.0.4jar6.1.0-M1
      jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7jar3.0.0
      jakarta.transactionjakarta.transaction-api1.3.3jar2.0.1
      jakarta.validationjakarta.validation-api2.0.2jar3.1.0-M1
      jakarta.websocketjakarta.websocket-api1.1.2jar2.2.0-M1
      jakarta.ws.rsjakarta.ws.rs-api2.1.6jar3.1.0
      jakarta.xml.bindjakarta.xml.bind-api2.3.3jar4.0.1
      jakarta.xml.soapjakarta.xml.soap-api1.4.2jar3.0.1
      jakarta.xml.wsjakarta.xml.ws-api2.3.3jar4.0.1
      javax.activationjavax.activation-api1.2.0jar
      javax.annotationjavax.annotation-api1.3.2jar
      javax.cachecache-api1.1.1jar
      javax.jmsjavax.jms-api2.0.1jar
      javax.jsonjavax.json-api1.1.4jar
      javax.json.bindjavax.json.bind-api1.0jar
      javax.mailjavax.mail-api1.6.2jar
      javax.moneymoney-api1.1jar
      javax.persistencejavax.persistence-api2.2jar
      javax.servletjavax.servlet-api4.0.1jar
      javax.servletjstl1.2jar
      javax.transactionjavax.transaction-api1.3jar
      javax.validationvalidation-api2.0.1.Finaljar
      javax.websocketjavax.websocket-api1.1jar
      javax.xml.bindjaxb-api2.3.1jar2.4.0-b180830.0359
      javax.xml.wsjaxws-api2.3.1jar
      jaxenjaxen1.2.0jar2.0.0
      junitjunit4.13.2jar
      net.bytebuddybyte-buddy1.12.23jar1.14.11
      net.bytebuddybyte-buddy-agent1.12.23jar1.14.11
      net.minidevjson-smart2.4.11jar2.5.0
      net.sf.ehcacheehcache2.10.9.2jar
      net.sourceforge.htmlunithtmlunit2.60.0jar2.70.0
      net.sourceforge.jtdsjtds1.3.1jar
      net.sourceforge.nekohtmlnekohtml1.9.22jar
      nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0jar3.3.0
      org.apache.activemqactivemq-amqp5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-blueprint5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-broker5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-camel5.16.7jar
      org.apache.activemqactivemq-client5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-console5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-http5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-jaas5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-jdbc-store5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-jms-pool5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-kahadb-store5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-karaf5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-leveldb-store5.16.7jar
      org.apache.activemqactivemq-log4j-appender5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-mqtt5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-openwire-generator5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-openwire-legacy5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-osgi5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-partition5.16.7jar5.18.3
      org.apache.activemqactivemq-pool5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-ra5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-run5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-runtime-config5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-shiro5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-spring5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-stomp5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-web5.16.7jar5.18.36.0.1
      org.apache.activemqartemis-amqp-protocol2.19.1jar2.32.0
      org.apache.activemqartemis-commons2.19.1jar2.32.0
      org.apache.activemqartemis-core-client2.19.1jar2.32.0
      org.apache.activemqartemis-jdbc-store2.19.1jar2.32.0
      org.apache.activemqartemis-jms-client2.19.1jar2.32.0
      org.apache.activemqartemis-jms-server2.19.1jar2.32.0
      org.apache.activemqartemis-journal2.19.1jar2.32.0
      org.apache.activemqartemis-quorum-api2.19.1jar2.32.0
      org.apache.activemqartemis-selector2.19.1jar2.32.0
      org.apache.activemqartemis-server2.19.1jar2.32.0
      org.apache.activemqartemis-service-extensions2.19.1jar2.32.0
      org.apache.commonscommons-dbcp22.9.0jar2.11.0
      org.apache.commonscommons-lang33.12.0jar3.14.0
      org.apache.commonscommons-pool22.11.1jar2.12.0
      org.apache.derbyderby10.14.2.0jar10.17.1.0
      org.apache.derbyderbyclient10.14.2.0jar10.17.1.0
      org.apache.derbyderbynet10.14.2.0jar10.17.1.0
      org.apache.derbyderbyoptionaltools10.14.2.0jar10.17.1.0
      org.apache.derbyderbytools10.14.2.0jar10.17.1.0
      org.apache.httpcomponentsfluent-hc4.5.14jar
      org.apache.httpcomponentshttpasyncclient4.1.5jar
      org.apache.httpcomponentshttpclient4.5.14jar
      org.apache.httpcomponentshttpclient-cache4.5.14jar
      org.apache.httpcomponentshttpclient-osgi4.5.14jar
      org.apache.httpcomponentshttpclient-win4.5.14jar
      org.apache.httpcomponentshttpcore4.4.16jar
      org.apache.httpcomponentshttpcore-nio4.4.16jar
      org.apache.httpcomponentshttpmime4.5.14jar
      org.apache.httpcomponents.client5httpclient55.1.4jar5.4-alpha1
      org.apache.httpcomponents.client5httpclient5-cache5.1.4jar5.4-alpha1
      org.apache.httpcomponents.client5httpclient5-fluent5.1.4jar5.4-alpha1
      org.apache.httpcomponents.client5httpclient5-win5.1.4jar5.2.3
      org.apache.httpcomponents.core5httpcore55.1.5jar5.3-alpha1
      org.apache.httpcomponents.core5httpcore5-h25.1.5jar5.3-alpha1
      org.apache.httpcomponents.core5httpcore5-reactive5.1.5jar5.3-alpha1
      org.apache.johnzonjohnzon-core1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jaxrs1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jsonb1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jsonb-extras1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jsonschema1.2.21jar2.0.0
      org.apache.johnzonjohnzon-mapper1.2.21jar2.0.0
      org.apache.johnzonjohnzon-websocket1.2.21jar2.0.0
      org.apache.kafkaconnect3.1.2jar3.6.1
      org.apache.kafkaconnect-api3.1.2jar3.6.1
      org.apache.kafkaconnect-basic-auth-extension3.1.2jar3.6.1
      org.apache.kafkaconnect-file3.1.2jar3.6.1
      org.apache.kafkaconnect-json3.1.2jar3.6.1
      org.apache.kafkaconnect-mirror3.1.2jar3.6.1
      org.apache.kafkaconnect-mirror-client3.1.2jar3.6.1
      org.apache.kafkaconnect-runtime3.1.2jar3.6.1
      org.apache.kafkaconnect-transforms3.1.2jar3.6.1
      org.apache.kafkagenerator3.1.2jar3.6.1
      org.apache.kafkakafka-clients3.1.2jar3.6.1
      org.apache.kafkakafka-log4j-appender3.1.2jar3.6.1
      org.apache.kafkakafka-metadata3.1.2jar3.6.1
      org.apache.kafkakafka-raft3.1.2jar3.6.1
      org.apache.kafkakafka-server-common3.1.2jar3.6.1
      org.apache.kafkakafka-shell3.1.2jar3.6.1
      org.apache.kafkakafka-storage3.1.2jar3.6.1
      org.apache.kafkakafka-storage-api3.1.2jar3.6.1
      org.apache.kafkakafka-streams3.1.2jar3.6.1
      org.apache.kafkakafka-streams-scala_2.123.1.2jar3.6.1
      org.apache.kafkakafka-streams-scala_2.133.1.2jar3.6.1
      org.apache.kafkakafka-streams-test-utils3.1.2jar3.6.1
      org.apache.kafkakafka-tools3.1.2jar3.6.1
      org.apache.kafkakafka_2.123.1.2jar3.6.1
      org.apache.kafkakafka_2.133.1.2jar3.6.1
      org.apache.kafkatrogdor3.1.2jar3.6.1
      org.apache.logging.log4jlog4j-1.2-api2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-api2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-appserver2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-cassandra2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-core2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-couchdb2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-docker2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-flume-ng2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-iostreams2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-jcl2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-jmx-gui2.17.2jar2.22.03.0.0-alpha1
      org.apache.logging.log4jlog4j-jpa2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-jpl2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-jul2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-kubernetes2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-layout-template-json2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-liquibase2.17.2jar2.19.03.0.0-alpha1
      org.apache.logging.log4jlog4j-mongodb32.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-mongodb42.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-slf4j-impl2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-slf4j18-impl2.17.2jar2.18.0
      org.apache.logging.log4jlog4j-spring-boot2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-taglib2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-to-slf4j2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-web2.17.2jar2.22.13.0.0-alpha1
      org.apache.solrsolr-analysis-extras8.11.2jar8.11.39.4.1
      org.apache.solrsolr-analytics8.11.2jar8.11.39.4.1
      org.apache.solrsolr-cell8.11.2jar8.11.3
      org.apache.solrsolr-core8.11.2jar8.11.39.4.1
      org.apache.solrsolr-dataimporthandler8.11.2jar8.11.3
      org.apache.solrsolr-dataimporthandler-extras8.11.2jar8.11.3
      org.apache.solrsolr-gcs-repository8.11.2jar8.11.39.4.1
      org.apache.solrsolr-jaegertracer-configurator8.11.2jar8.11.39.4.1
      org.apache.solrsolr-langid8.11.2jar8.11.39.4.1
      org.apache.solrsolr-ltr8.11.2jar8.11.39.4.1
      org.apache.solrsolr-prometheus-exporter8.11.2jar8.11.39.4.1
      org.apache.solrsolr-s3-repository8.11.2jar8.11.39.4.1
      org.apache.solrsolr-solrj8.11.2jar8.11.39.4.1
      org.apache.solrsolr-test-framework8.11.2jar8.11.39.4.1
      org.apache.solrsolr-velocity8.11.2jar8.11.3
      org.apache.tomcattomcat-annotations-api9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcattomcat-jdbc9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcattomcat-jsp-api9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-core9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-el9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-jasper9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-websocket9.0.83jar9.0.8511.0.0-M16
      org.aspectjaspectjrt1.9.7jar1.9.21
      org.aspectjaspectjtools1.9.7jar1.9.21
      org.aspectjaspectjweaver1.9.7jar1.9.21
      org.assertjassertj-core3.22.0jar3.25.3
      org.awaitilityawaitility4.2.0jar
      org.awaitilityawaitility-groovy4.2.0jar
      org.awaitilityawaitility-kotlin4.2.0jar
      org.awaitilityawaitility-scala4.2.0jar
      org.cache2kcache2k-api2.6.1.Finaljar
      org.cache2kcache2k-config2.6.1.Finaljar
      org.cache2kcache2k-core2.6.1.Finaljar
      org.cache2kcache2k-jcache2.6.1.Finaljar
      org.cache2kcache2k-micrometer2.6.1.Finaljar
      org.cache2kcache2k-spring2.6.1.Finaljar
      org.codehaus.groovygroovy3.0.19jar3.0.20
      org.codehaus.groovygroovy-ant3.0.19jar3.0.20
      org.codehaus.groovygroovy-astbuilder3.0.19jar3.0.20
      org.codehaus.groovygroovy-bsf3.0.19jar3.0.20
      org.codehaus.groovygroovy-cli-commons3.0.19jar3.0.20
      org.codehaus.groovygroovy-cli-picocli3.0.19jar3.0.20
      org.codehaus.groovygroovy-console3.0.19jar3.0.20
      org.codehaus.groovygroovy-datetime3.0.19jar3.0.20
      org.codehaus.groovygroovy-dateutil3.0.19jar3.0.20
      org.codehaus.groovygroovy-docgenerator3.0.19jar3.0.20
      org.codehaus.groovygroovy-groovydoc3.0.19jar3.0.20
      org.codehaus.groovygroovy-groovysh3.0.19jar3.0.20
      org.codehaus.groovygroovy-jaxb3.0.19jar3.0.20
      org.codehaus.groovygroovy-jmx3.0.19jar3.0.20
      org.codehaus.groovygroovy-json3.0.19jar3.0.20
      org.codehaus.groovygroovy-jsr2233.0.19jar3.0.20
      org.codehaus.groovygroovy-macro3.0.19jar3.0.20
      org.codehaus.groovygroovy-nio3.0.19jar3.0.20
      org.codehaus.groovygroovy-servlet3.0.19jar3.0.20
      org.codehaus.groovygroovy-sql3.0.19jar3.0.20
      org.codehaus.groovygroovy-swing3.0.19jar3.0.20
      org.codehaus.groovygroovy-templates3.0.19jar3.0.20
      org.codehaus.groovygroovy-test3.0.19jar3.0.20
      org.codehaus.groovygroovy-test-junit53.0.19jar3.0.20
      org.codehaus.groovygroovy-testng3.0.19jar3.0.20
      org.codehaus.groovygroovy-xml3.0.19jar3.0.20
      org.codehaus.groovygroovy-yaml3.0.19jar3.0.20
      org.codehaus.janinocommons-compiler3.1.10jar3.1.12
      org.codehaus.janinocommons-compiler-jdk3.1.10jar3.1.12
      org.codehaus.janinojanino3.1.10jar3.1.12
      org.eclipse.jettyapache-jsp9.4.53.v20231009jar11.0.20
      org.eclipse.jettyapache-jstl9.4.53.v20231009jar11.0.0
      org.eclipse.jettyinfinispan-common9.4.53.v20231009jar11.0.20
      org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009jar11.0.20
      org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-alpn-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009jar
      org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009jar
      org.eclipse.jettyjetty-alpn-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-annotations9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-ant9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-continuation9.4.53.v20231009jar
      org.eclipse.jettyjetty-deploy9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-distribution9.4.53.v20231009zip11.0.0.beta1
      org.eclipse.jettyjetty-hazelcast9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-home9.4.53.v20231009zip12.0.6
      org.eclipse.jettyjetty-http9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-http-spi9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-io9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-jaas9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-jaspi9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-jmx9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-jndi9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-nosql9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-openid9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-plus9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-proxy9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-quickstart9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-reactive-httpclient1.1.15jar4.0.3
      org.eclipse.jettyjetty-rewrite9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-security9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-servlet9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-servlets9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-spring9.4.53.v20231009jar11.0.0.beta3
      org.eclipse.jettyjetty-unixsocket9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-util9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-util-ajax9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-webapp9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-xml9.4.53.v20231009jar12.0.6
      org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009jar12.0.6
      org.eclipse.jetty.http2http2-client9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-common9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-hpack9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-server9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009jar12.0.6
      org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158jar
      org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009jar
      org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009jar11.0.20
      org.ehcacheehcache3.10.8jar
      org.ehcacheehcache-clustered3.10.8jar
      org.ehcacheehcache-transactions3.10.8jar
      org.elasticsearchelasticsearch7.17.15jar7.17.188.12.1
      org.elasticsearch.clientelasticsearch-rest-client7.17.15jar7.17.188.12.1
      org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15jar7.17.188.12.1
      org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15jar7.17.188.0.0-alpha2
      org.elasticsearch.clienttransport7.17.15jar7.17.18
      org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15zip7.17.188.12.1
      org.elasticsearch.plugintransport-netty4-client7.17.15jar7.17.18
      org.firebirdsql.jdbcjaybird4.0.9.java8jar4.0.9.java114.0.10.java115.0.3.java11
      org.firebirdsql.jdbcjaybird-jdk184.0.9.java8jar4.0.10.java8
      org.flywaydbflyway-core8.5.13jar10.7.2
      org.flywaydbflyway-firebird8.5.13jar10.7.2
      org.flywaydbflyway-mysql8.5.13jar10.7.2
      org.flywaydbflyway-sqlserver8.5.13jar10.7.2
      org.freemarkerfreemarker2.3.32jar
      org.glassfishjakarta.el3.0.4jar5.0.0-M1
      org.glassfish.jaxbcodemodel2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbcodemodel-annotation-compiler2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbjaxb-jxc2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbjaxb-runtime2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbjaxb-xjc2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbtxw22.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbtxwc22.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbxsom2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jersey.bundlesjaxrs-ri2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-apache-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-grizzly-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-helidon-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-jdk-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-jetty-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-netty-connector2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-grizzly2-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-jdk-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-jetty-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-jetty-servlet2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-netty-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-servlet2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-servlet-core2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-simple-http2.35jar2.413.1.5
      org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35jar2.413.1.5
      org.glassfish.jersey.corejersey-client2.35jar2.413.1.5
      org.glassfish.jersey.corejersey-common2.35jar2.413.1.5
      org.glassfish.jersey.corejersey-server2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-bean-validation2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-declarative-linking2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-entity-filtering2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-metainf-services2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-bean-validation2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-freemarker2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-jsp2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-mustache2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-proxy-client2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-servlet-portability2.35jar2.413.0.0-M6
      org.glassfish.jersey.extjersey-spring42.35jar2.413.0.0-M6
      org.glassfish.jersey.extjersey-spring52.35jar2.413.0.0-M6
      org.glassfish.jersey.extjersey-wadl-doclet2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-weld2-se2.35jar2.413.1.5
      org.glassfish.jersey.ext.microprofilejersey-mp-config2.35jar2.413.1.5
      org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35jar2.413.1.5
      org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35jar2.413.1.5
      org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35jar2.413.1.5
      org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35jar2.413.1.5
      org.glassfish.jersey.injectjersey-cdi2-se2.35jar2.413.1.5
      org.glassfish.jersey.injectjersey-hk22.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-jaxb2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-binding2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-jackson2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-jettison2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-processing2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-kryo2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-moxy2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-multipart2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-sse2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth1-client2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth1-server2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth1-signature2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth2-client2.35jar2.413.1.5
      org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35jar2.413.1.5
      org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35pom2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35jar2.413.1.5
      org.glassfish.webjakarta.servlet.jsp.jstl1.2.6jar3.0.1
      org.hamcresthamcrest2.2jar
      org.hamcresthamcrest-core2.2jar
      org.hamcresthamcrest-library2.2jar
      org.hibernatehibernate-c3p05.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-core5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-ehcache5.6.15.Finaljar6.0.0.Alpha7
      org.hibernatehibernate-entitymanager5.6.15.Finaljar6.0.0.Alpha7
      org.hibernatehibernate-envers5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-hikaricp5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-java85.6.15.Finaljar6.0.0.Alpha7
      org.hibernatehibernate-jcache5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-jpamodelgen5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-micrometer5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-proxool5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-spatial5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-testing5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-vibur5.6.15.Finaljar6.4.4.Final
      org.hibernate.validatorhibernate-validator6.2.5.Finaljar8.0.1.Final
      org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Finaljar8.0.1.Final
      org.hsqldbhsqldb2.5.2jar2.7.2
      org.infinispaninfinispan-anchored-keys13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-jdbc13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-jpa13.0.20.Finaljar13.0.21.Final14.0.0.Dev02
      org.infinispaninfinispan-cachestore-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-rocksdb13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-sql13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cdi-common13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cdi-embedded13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cdi-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-checkstyle13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cli-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-client-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-client-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cloudevents-integration13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-clustered-counter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-clustered-lock13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-commons-test13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-component-annotations13.0.20.Finalprovidedjar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-component-processor13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-console0.15.5.Finaljar15.0.0.Dev05
      org.infinispaninfinispan-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-extended-statistics13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-hibernate-cache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-hibernate-cache-spi13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-hibernate-cache-v5313.0.20.Finaljar13.0.21.Final14.0.0.Dev02
      org.infinispaninfinispan-jboss-marshalling13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-jcache13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-jcache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-jcache-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-key-value-store-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-marshaller-kryo13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-marshaller-protostuff13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-multimap13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-objectfilter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-query13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-query-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-query-dsl13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-remote-query-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-remote-query-server13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-scripting13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-memcached13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-router13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-runtime13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-testdriver-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-testdriver-junit413.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-testdriver-junit513.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring5-common13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring5-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring5-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-tasks13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-tasks-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-tools13.0.20.Finaljar15.0.0.Dev08
      org.infinispan.protostreamprotostream4.4.4.Finaljar4.6.5.Final14.0.0.CR2
      org.infinispan.protostreamprotostream-processor4.4.4.Finalprovidedjar4.6.5.Final14.0.0.CR2
      org.infinispan.protostreamprotostream-types4.4.4.Finaljar4.6.5.Final14.0.0.CR2
      org.influxdbinfluxdb-java2.22jar2.24
      org.jboss.loggingjboss-logging3.4.3.Finaljar3.5.3.Final
      org.jdomjdom22.0.6.1jar
      org.jetbrains.kotlinkotlin-compiler1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-daemon-client1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-main-kts1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-osgi-bundle1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-reflect1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-script-runtime1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-script-util1.6.21jar1.8.22
      org.jetbrains.kotlinkotlin-scripting-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-scripting-jvm1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-js1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-annotations-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-js1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-junit1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-junit51.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-testng1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4jar1.8.0-RC2
      org.jolokiajolokia-core1.7.2jar
      org.jooqjooq3.14.16jar3.19.3
      org.jooqjooq-codegen3.14.16jar3.19.3
      org.jooqjooq-kotlin3.14.16jar3.19.3
      org.jooqjooq-meta3.14.16jar3.19.3
      org.junit.jupiterjunit-jupiter5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-api5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-engine5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-migrationsupport5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-params5.8.2jar5.10.2
      org.junit.platformjunit-platform-commons1.8.2jar1.10.2
      org.junit.platformjunit-platform-console1.8.2jar1.10.2
      org.junit.platformjunit-platform-engine1.8.2jar1.10.2
      org.junit.platformjunit-platform-jfr1.8.2jar1.10.2
      org.junit.platformjunit-platform-launcher1.8.2jar1.10.2
      org.junit.platformjunit-platform-reporting1.8.2jar1.10.2
      org.junit.platformjunit-platform-runner1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite-api1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite-commons1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite-engine1.8.2jar1.10.2
      org.junit.platformjunit-platform-testkit1.8.2jar1.10.2
      org.junit.vintagejunit-vintage-engine5.8.2jar5.10.2
      org.liquibaseliquibase-cdi4.9.1jar4.26.0
      org.liquibaseliquibase-core4.9.1jar4.26.0
      org.mariadbr2dbc-mariadb1.1.2jar1.1.4
      org.mariadb.jdbcmariadb-java-client3.1.4jar3.3.2
      org.messaginghubpooled-jms1.2.6jar3.1.5
      org.mockitomockito-android4.5.1jar4.11.05.10.0
      org.mockitomockito-core4.5.1jar4.11.05.10.0
      org.mockitomockito-errorprone4.5.1jar4.11.05.10.0
      org.mockitomockito-inline4.5.1jar4.11.05.2.0
      org.mockitomockito-junit-jupiter4.5.1jar4.11.05.10.0
      org.mockitomockito-proxy4.5.1jar4.11.05.10.0
      org.mongodbbson4.6.1jar4.11.15.0.0-beta0
      org.mongodbbson-record-codec4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-core4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-legacy4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-reactivestreams4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-sync4.6.1jar4.11.15.0.0-beta0
      org.mortbay.jasperapache-el9.0.52jar9.0.83.110.1.16
      org.mybatismybatis3.5.15jar
      org.mybatismybatis-spring2.1.2jar3.0.3
      org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jar
      org.mybatis.scriptingmybatis-freemarker1.2.4jar
      org.mybatis.scriptingmybatis-thymeleaf1.0.4jar
      org.mybatis.scriptingmybatis-velocity2.1.2jar
      org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2jar3.0.3
      org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2jar3.0.3
      org.mybatis.spring.nativemybatis-spring-native-core0.1.0-SNAPSHOTjar
      org.mybatis.spring.nativemybatis-spring-native-extensions0.1.0-SNAPSHOTjar
      org.neo4j.driverneo4j-java-driver4.4.12jar4.4.135.17.0
      org.postgresqlpostgresql42.3.8jar42.7.1
      org.postgresqlr2dbc-postgresql0.9.2.RELEASEjar0.9.3.RELEASE1.0.4.RELEASE
      org.projectlomboklombok1.18.30jar
      org.quartz-schedulerquartz2.3.2jar2.5.0-rc1
      org.quartz-schedulerquartz-jobs2.3.2jar2.5.0-rc1
      org.reactivestreamsreactive-streams1.0.4jar
      org.seleniumhq.seleniumhtmlunit-driver3.61.0jar3.64.04.13.0
      org.seleniumhq.seleniumlift4.1.4jar4.14.0
      org.seleniumhq.seleniumselenium-api4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-chrome-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-chromium-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-devtools-v1004.1.4jar4.2.2
      org.seleniumhq.seleniumselenium-devtools-v1014.1.4jar4.3.0
      org.seleniumhq.seleniumselenium-devtools-v854.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-devtools-v994.1.4jar
      org.seleniumhq.seleniumselenium-edge-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-firefox-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-grid4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-http4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-ie-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-java4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-json4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-opera-driver4.1.4jar4.4.0
      org.seleniumhq.seleniumselenium-remote-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-safari-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-session-map-redis4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-support4.1.4jar4.17.0
      org.skyscreamerjsonassert1.5.1jar
      org.slf4jjcl-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jjul-to-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jlog4j-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-api1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-ext1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-jcl1.7.36jar
      org.slf4jslf4j-jdk141.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-log4j121.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-nop1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-simple1.7.36jar1.8.0-beta42.1.0-alpha1
      org.springframeworkspring-aop5.3.31jar6.1.3
      org.springframeworkspring-aspects5.3.31jar6.1.3
      org.springframeworkspring-beans5.3.31jar6.1.3
      org.springframeworkspring-context5.3.31jar6.1.3
      org.springframeworkspring-context-indexer5.3.31jar6.1.3
      org.springframeworkspring-context-support5.3.31jar6.1.3
      org.springframeworkspring-core5.3.31jar6.1.3
      org.springframeworkspring-expression5.3.31jar6.1.3
      org.springframeworkspring-instrument5.3.31jar6.1.3
      org.springframeworkspring-jcl5.3.31jar6.1.3
      org.springframeworkspring-jdbc5.3.31jar6.1.3
      org.springframeworkspring-jms5.3.31jar6.1.3
      org.springframeworkspring-messaging5.3.31jar6.1.3
      org.springframeworkspring-orm5.3.31jar6.1.3
      org.springframeworkspring-oxm5.3.31jar6.1.3
      org.springframeworkspring-r2dbc5.3.31jar6.1.3
      org.springframeworkspring-test5.3.31jar6.1.3
      org.springframeworkspring-tx5.3.31jar6.1.3
      org.springframeworkspring-web5.3.31jar6.1.3
      org.springframeworkspring-webflux5.3.31jar6.1.3
      org.springframeworkspring-webmvc5.3.31jar6.1.3
      org.springframeworkspring-websocket5.3.31jar6.1.3
      org.springframework.amqpspring-amqp2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit-junit2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit-stream2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit-test2.4.17jar3.1.1
      org.springframework.batchspring-batch-core4.3.10jar5.1.0
      org.springframework.batchspring-batch-infrastructure4.3.10jar5.1.0
      org.springframework.batchspring-batch-integration4.3.10jar5.1.0
      org.springframework.batchspring-batch-test4.3.10jar5.1.0
      org.springframework.bootspring-boot2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-actuator2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-actuator-autoconfigure2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-autoconfigure2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-autoconfigure-processor2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-buildpack-platform2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-configuration-metadata2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-configuration-processor2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-devtools2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-jarmode-layertools2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-loader2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-loader-tools2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-properties-migrator2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-activemq2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-actuator2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-amqp2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-aop2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-artemis2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-batch2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-cache2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-cassandra2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-couchbase2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-jdbc2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-jpa2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-ldap2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-mongodb2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-neo4j2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-r2dbc2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-redis2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-rest2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-freemarker2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-graphql2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-groovy-templates2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-hateoas2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-integration2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jdbc2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jersey2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jetty2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jooq2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-json2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jta-atomikos2.7.18jar
      org.springframework.bootspring-boot-starter-log4j22.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-logging2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-mail2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-mustache2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-oauth2-client2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-quartz2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-reactor-netty2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-rsocket2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-security2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-test2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-thymeleaf2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-tomcat2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-undertow2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-validation2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-web2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-web-services2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-webflux2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-websocket2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-test2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-test-autoconfigure2.7.18jar3.3.0-M1
      org.springframework.dataspring-data-cassandra3.4.18jar4.2.2
      org.springframework.dataspring-data-commons2.7.18jar3.2.2
      org.springframework.dataspring-data-couchbase4.4.18jar5.2.2
      org.springframework.dataspring-data-elasticsearch4.4.18jar5.2.2
      org.springframework.dataspring-data-envers2.7.18jar3.2.2
      org.springframework.dataspring-data-geode2.7.18jar3.0.0-M6
      org.springframework.dataspring-data-jdbc2.4.18jar3.2.2
      org.springframework.dataspring-data-jpa2.7.18jar3.2.2
      org.springframework.dataspring-data-keyvalue2.7.18jar3.2.2
      org.springframework.dataspring-data-ldap2.7.18jar3.2.2
      org.springframework.dataspring-data-mongodb3.4.18jar4.2.2
      org.springframework.dataspring-data-neo4j6.3.18jar7.2.2
      org.springframework.dataspring-data-r2dbc1.5.18jar3.2.2
      org.springframework.dataspring-data-redis2.7.18jar3.2.2
      org.springframework.dataspring-data-relational2.4.18jar3.2.2
      org.springframework.dataspring-data-rest-core3.7.18jar4.2.2
      org.springframework.dataspring-data-rest-hal-explorer3.7.18jar4.2.2
      org.springframework.dataspring-data-rest-webmvc3.7.18jar4.2.2
      org.springframework.experimentalspring-aot0.12.2jar
      org.springframework.experimentalspring-native0.12.2jar
      org.springframework.graphqlspring-graphql1.0.6jar1.2.4
      org.springframework.graphqlspring-graphql-test1.0.6jar1.2.4
      org.springframework.hateoasspring-hateoas1.5.6jar2.2.0
      org.springframework.integrationspring-integration-amqp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-core5.5.20jar6.2.1
      org.springframework.integrationspring-integration-event5.5.20jar6.2.1
      org.springframework.integrationspring-integration-feed5.5.20jar6.2.1
      org.springframework.integrationspring-integration-file5.5.20jar6.2.1
      org.springframework.integrationspring-integration-ftp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-gemfire5.5.20jar6.0.0-M5
      org.springframework.integrationspring-integration-groovy5.5.20jar6.2.1
      org.springframework.integrationspring-integration-http5.5.20jar6.2.1
      org.springframework.integrationspring-integration-ip5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jdbc5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jms5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jmx5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jpa5.5.20jar6.2.1
      org.springframework.integrationspring-integration-kafka5.5.20jar6.2.1
      org.springframework.integrationspring-integration-mail5.5.20jar6.2.1
      org.springframework.integrationspring-integration-mongodb5.5.20jar6.2.1
      org.springframework.integrationspring-integration-mqtt5.5.20jar6.2.1
      org.springframework.integrationspring-integration-r2dbc5.5.20jar6.2.1
      org.springframework.integrationspring-integration-redis5.5.20jar6.2.1
      org.springframework.integrationspring-integration-rmi5.5.20jar
      org.springframework.integrationspring-integration-rsocket5.5.20jar6.2.1
      org.springframework.integrationspring-integration-scripting5.5.20jar6.2.1
      org.springframework.integrationspring-integration-security5.5.20jar6.2.1
      org.springframework.integrationspring-integration-sftp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-stomp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-stream5.5.20jar6.2.1
      org.springframework.integrationspring-integration-syslog5.5.20jar6.2.1
      org.springframework.integrationspring-integration-test5.5.20jar6.2.1
      org.springframework.integrationspring-integration-test-support5.5.20jar6.2.1
      org.springframework.integrationspring-integration-webflux5.5.20jar6.2.1
      org.springframework.integrationspring-integration-websocket5.5.20jar6.2.1
      org.springframework.integrationspring-integration-ws5.5.20jar6.2.1
      org.springframework.integrationspring-integration-xml5.5.20jar6.2.1
      org.springframework.integrationspring-integration-xmpp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-zeromq5.5.20jar6.2.1
      org.springframework.integrationspring-integration-zookeeper5.5.20jar6.2.1
      org.springframework.kafkaspring-kafka2.8.11jar2.9.133.1.1
      org.springframework.kafkaspring-kafka-test2.8.11jar2.9.133.1.1
      org.springframework.ldapspring-ldap-core2.4.1jar3.2.1
      org.springframework.ldapspring-ldap-core-tiger2.4.1jar3.0.0-M1
      org.springframework.ldapspring-ldap-ldif-core2.4.1jar3.2.1
      org.springframework.ldapspring-ldap-odm2.4.1jar3.2.1
      org.springframework.ldapspring-ldap-test2.4.1jar3.2.1
      org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-core2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASEjar3.0.1
      org.springframework.retryspring-retry1.3.4jar2.0.5
      org.springframework.securityspring-security-acl5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-aspects5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-cas5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-config5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-core5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-crypto5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-data5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-ldap5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-messaging5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-client5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-core5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-jose5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-resource-server5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-openid5.7.11jar5.8.96.0.0-M1
      org.springframework.securityspring-security-remoting5.7.11jar5.8.9
      org.springframework.securityspring-security-rsocket5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-saml2-service-provider5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-taglibs5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-test5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-web5.7.11jar5.8.96.3.0-M1
      org.springframework.sessionspring-session-core2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-data-geode2.7.1jar2.7.23.0.0-M5
      org.springframework.sessionspring-session-data-mongodb2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-data-redis2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-hazelcast2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-jdbc2.7.4jar3.3.0-M1
      org.springframework.wsspring-ws-core3.1.8jar4.0.10
      org.springframework.wsspring-ws-security3.1.8jar4.0.10
      org.springframework.wsspring-ws-support3.1.8jar4.0.10
      org.springframework.wsspring-ws-test3.1.8jar4.0.10
      org.springframework.wsspring-xml3.1.8jar4.0.10
      org.thymeleafthymeleaf3.0.15.RELEASEjar3.1.2.RELEASE
      org.thymeleafthymeleaf-spring53.0.15.RELEASEjar3.1.2.RELEASE
      org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASEjar
      org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASEjar3.1.2.RELEASE
      org.webjarswebjars-locator-core0.50jar0.55
      org.xerialsqlite-jdbc3.36.0.3jar3.45.1.0
      org.xmlunitxmlunit-assertj2.9.1jar
      org.xmlunitxmlunit-assertj32.9.1jar
      org.xmlunitxmlunit-core2.9.1jar
      org.xmlunitxmlunit-legacy2.9.1jar
      org.xmlunitxmlunit-matchers2.9.1jar
      org.xmlunitxmlunit-placeholders2.9.1jar
      org.yamlsnakeyaml1.30jar1.332.2
      redis.clientsjedis3.8.0jar3.10.05.2.0-alpha2
      wsdl4jwsdl4j1.6.3jar
      StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      +

      Dependencies

      +

      This project does not declare any dependencies.

      +

      Dependency Updates

      +

      +

      antlr:antlr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idantlr
      Artifact Idantlr
      Current Version2.7.7
      Scope
      Classifier
      Typejar
      Newer versions20030911 Latest Major
      +

      ch.qos.logback:logback-access

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idch.qos.logback
      Artifact Idlogback-access
      Current Version1.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.2.13 Latest Incremental
      1.3.0-alpha0
      1.3.0-alpha1
      1.3.0-alpha2
      1.3.0-alpha3
      1.3.0-alpha4
      1.3.0-alpha5
      1.3.0-alpha6
      1.3.0-alpha7
      1.3.0-alpha8
      1.3.0-alpha9
      1.3.0-alpha10
      1.3.0-alpha11
      1.3.0-alpha12
      1.3.0-alpha13
      1.3.0-alpha14
      1.3.0-alpha15
      1.3.0-alpha16
      1.3.0-beta0
      1.3.0
      1.3.1
      1.3.2
      1.3.3
      1.3.4
      1.3.5
      1.3.6
      1.3.7
      1.3.8
      1.3.9
      1.3.10
      1.3.11
      1.3.12
      1.3.13
      1.3.14
      1.4.0
      1.4.1
      1.4.2
      1.4.3
      1.4.4
      1.4.5
      1.4.6
      1.4.7
      1.4.8
      1.4.9
      1.4.10
      1.4.11
      1.4.12
      1.4.13
      1.4.14 Latest Minor
      +

      ch.qos.logback:logback-classic

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idch.qos.logback
      Artifact Idlogback-classic
      Current Version1.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.2.13 Latest Incremental
      1.3.0-alpha0
      1.3.0-alpha1
      1.3.0-alpha2
      1.3.0-alpha3
      1.3.0-alpha4
      1.3.0-alpha5
      1.3.0-alpha6
      1.3.0-alpha7
      1.3.0-alpha8
      1.3.0-alpha9
      1.3.0-alpha10
      1.3.0-alpha11
      1.3.0-alpha12
      1.3.0-alpha13
      1.3.0-alpha14
      1.3.0-alpha15
      1.3.0-alpha16
      1.3.0-beta0
      1.3.0
      1.3.1
      1.3.2
      1.3.3
      1.3.4
      1.3.5
      1.3.6
      1.3.7
      1.3.8
      1.3.9
      1.3.10
      1.3.11
      1.3.12
      1.3.13
      1.3.14
      1.4.0
      1.4.1
      1.4.2
      1.4.3
      1.4.4
      1.4.5
      1.4.6
      1.4.7
      1.4.8
      1.4.9
      1.4.10
      1.4.11
      1.4.12
      1.4.13
      1.4.14 Latest Minor
      +

      ch.qos.logback:logback-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idch.qos.logback
      Artifact Idlogback-core
      Current Version1.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.2.13 Latest Incremental
      1.3.0-alpha0
      1.3.0-alpha1
      1.3.0-alpha2
      1.3.0-alpha3
      1.3.0-alpha4
      1.3.0-alpha5
      1.3.0-alpha6
      1.3.0-alpha7
      1.3.0-alpha8
      1.3.0-alpha9
      1.3.0-alpha10
      1.3.0-alpha11
      1.3.0-alpha12
      1.3.0-alpha13
      1.3.0-alpha14
      1.3.0-alpha15
      1.3.0-alpha16
      1.3.0-beta0
      1.3.0
      1.3.1
      1.3.2
      1.3.3
      1.3.4
      1.3.5
      1.3.6
      1.3.7
      1.3.8
      1.3.9
      1.3.10
      1.3.11
      1.3.12
      1.3.13
      1.3.14
      1.4.0
      1.4.1
      1.4.2
      1.4.3
      1.4.4
      1.4.5
      1.4.6
      1.4.7
      1.4.8
      1.4.9
      1.4.10
      1.4.11
      1.4.12
      1.4.13
      1.4.14 Latest Minor
      +

      com.atomikos:transactions-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.atomikos
      Artifact Idtransactions-jdbc
      Current Version4.0.6
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      6.0.0M1
      6.0.0M2
      6.0.0 Latest Major
      +

      com.atomikos:transactions-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.atomikos
      Artifact Idtransactions-jms
      Current Version4.0.6
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      6.0.0M1
      6.0.0M2
      6.0.0 Latest Major
      +

      com.atomikos:transactions-jta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.atomikos
      Artifact Idtransactions-jta
      Current Version4.0.6
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      6.0.0M1
      6.0.0M2
      6.0.0 Latest Major
      +

      com.couchbase.client:java-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.couchbase.client
      Artifact Idjava-client
      Current Version3.3.4
      Scope
      Classifier
      Typejar
      Newer versions3.4.0
      3.4.1
      3.4.2
      3.4.3
      3.4.4
      3.4.5
      3.4.6
      3.4.7
      3.4.8
      3.4.9
      3.4.10
      3.4.11
      3.5.0
      3.5.1
      3.5.2
      3.5.3 Latest Minor
      +

      com.datastax.oss:java-driver-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-core
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-core-shaded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-core-shaded
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-mapper-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-mapper-processor
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-mapper-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-mapper-runtime
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-metrics-micrometer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-metrics-micrometer
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-metrics-microprofile

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-metrics-microprofile
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-query-builder

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-query-builder
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-shaded-guava

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-shaded-guava
      Current Version25.1-jre-graal-sub-1
      Scope
      Classifier
      Typejar
      +

      com.datastax.oss:java-driver-test-infra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-test-infra
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:native-protocol

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.datastax.oss
      Artifact Idnative-protocol
      Current Version1.5.1
      Scope
      Classifier
      Typejar
      +

      com.fasterxml:classmate

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml
      Artifact Idclassmate
      Current Version1.5.1
      Scope
      Classifier
      Typejar
      Newer versions1.6.0
      1.7.0 Latest Minor
      +

      com.fasterxml.jackson.core:jackson-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.core
      Artifact Idjackson-annotations
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.core:jackson-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.core
      Artifact Idjackson-core
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.core:jackson-databind

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.core
      Artifact Idjackson-databind
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-avro

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-avro
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-cbor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-cbor
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-csv

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-csv
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-ion

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-ion
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-properties

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-properties
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-protobuf
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-smile

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-smile
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-toml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-toml
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-xml
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-yaml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-yaml
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-eclipse-collections

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-eclipse-collections
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-guava
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hibernate4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hibernate4
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hibernate5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hibernate5
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hibernate5-jakarta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hibernate5-jakarta
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hppc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hppc
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jakarta-jsonp
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jaxrs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jaxrs
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jdk8
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-joda

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-joda
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-joda-money

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-joda-money
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-json-org

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-json-org
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jsr310

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jsr310
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jsr353

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jsr353
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-pcollections

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-pcollections
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-base
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-cbor-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-cbor-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-json-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-smile-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-smile-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-xml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-xml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-yaml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-yaml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-base

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-base
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-cbor-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-json-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-smile-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-xml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-yaml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-all

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-all
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-annotation-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-annotation-support
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-objects

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-objects
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-retrofit2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-retrofit2
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-stree

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-stree
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-afterburner

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-afterburner
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-blackbird

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-blackbird
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-guice

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-guice
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-jakarta-xmlbind-annotations
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-jaxb-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-jaxb-annotations
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-jsonSchema

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-jsonSchema
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-kotlin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-kotlin
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-mrbean

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-mrbean
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-no-ctor-deser

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-no-ctor-deser
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-osgi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-osgi
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-parameter-names

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-parameter-names
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-paranamer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-paranamer
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_2.11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_2.11
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_2.12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_2.12
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_2.13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_2.13
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_3
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.github.ben-manes.caffeine:caffeine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idcaffeine
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.ben-manes.caffeine:guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idguava
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.ben-manes.caffeine:jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idjcache
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.ben-manes.caffeine:simulator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idsimulator
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.mxab.thymeleaf.extras
      Artifact Idthymeleaf-extras-data-attribute
      Current Version2.0.1
      Scope
      Classifier
      Typejar
      +

      com.google.appengine:appengine-api-1.0-sdk

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.google.appengine
      Artifact Idappengine-api-1.0-sdk
      Current Version1.9.98
      Scope
      Classifier
      Typejar
      Newer versions2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.0.13
      2.0.14
      2.0.15
      2.0.16
      2.0.17
      2.0.19
      2.0.20
      2.0.21
      2.0.22
      2.0.23
      2.0.24 Latest Major
      +

      com.google.code.gson:gson

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.google.code.gson
      Artifact Idgson
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      Newer versions2.10
      2.10.1 Latest Minor
      +

      com.graphql-java:graphql-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.graphql-java
      Artifact Idgraphql-java
      Current Version18.5
      Scope
      Classifier
      Typejar
      Newer versions18.6
      18.7 Latest Minor
      19.0
      19.1
      19.2
      19.3
      19.4
      19.5
      19.6
      19.7
      19.8
      19.9
      20.0
      20.1
      20.2
      20.3
      20.4
      20.5
      20.6
      20.7
      21.0
      21.1
      21.2
      21.3
      2018-06-04T04-23-07
      2018-06-04T04-37-12
      2018-06-04T05-35-18-e5b324e
      2018-06-04T06-08-37-e5b324e
      2018-06-04T06-12-10-9e01eaa
      2018-06-04T06-18-26-
      2018-06-04T06-32-44-
      2018-06-04T06-49-40-474b470
      2018-06-04T11-42-58-352f0df
      2018-06-04T21-54-46-f3ede8b
      2018-06-04T22-33-28-a93fe6a
      2018-06-04T22-49-40-ad9c92a
      2018-06-05T00-30-43-5e542a9
      2018-06-05T05-02-26-ca6f7fa
      2018-06-12T07-15-39-50a2a13
      2018-06-13T01-43-44-50a2a13
      2018-06-16T10-13-54-f3af483
      2018-06-19T22-08-22-7270438
      2018-06-20T08-24-34-aa92267
      2018-06-21T06-20-30-6984d3b
      2018-06-24T21-45-32-a683b9e
      2018-06-25T00-43-57-d087b4a
      2018-06-25T02-16-07-639aff3
      2018-06-27T00-18-28-1e12da9
      2018-07-04T08-09-58-795c232
      2018-07-11T08-11-14-394ca2a
      2018-07-12T05-33-47-67d6257
      2018-07-12T11-44-24-8d02fc7
      2018-07-13T04-59-30-f72244a
      2018-07-27T07-38-22-2fe7914
      2018-07-27T07-39-10-901db94
      2018-07-27T10-32-58-4d45311
      2018-07-27T10-57-25-ad87047
      2018-07-27T12-45-31-5b44eff
      2018-07-28T00-19-13-5ea18ff
      2018-07-30T00-23-12-bfee885
      2018-07-30T07-03-52-6e1bc02
      2018-08-01T04-10-44-b8b248a
      2018-08-07T03-17-17-653d67f
      2018-08-07T03-26-20-3b4957b
      2018-08-07T05-26-11-b835941
      2018-08-07T05-28-06-4c0c33a
      2018-08-14T07-47-58-fd2454f
      2018-08-16T09-47-33-00a720f
      2018-08-20T08-16-01-b66eade
      2018-08-20T08-17-20-0deb127
      2018-08-20T08-17-43-df4775c
      2018-08-20T09-22-08-f02ee24
      2018-08-20T10-18-26-0adc5f8
      2018-08-23T21-16-30-141b8e4
      2018-08-28T23-42-26-f2f4b1f
      2018-08-28T23-42-56-5c7b9ef
      2018-08-28T23-43-42-d049882
      2018-08-29T06-42-12-24db46a
      2018-08-29T21-42-21-9ed2843
      2018-08-30T23-23-01-6c72aaf
      2018-08-30T23-23-36-0b5f286
      2018-09-03T01-10-42-4485074
      2018-09-08T05-14-26-03482af
      2018-09-08T07-01-35-b55f8a5
      2018-09-09T01-51-54-4c5aca5
      2018-09-12T11-52-41-a96e963
      2018-09-13T04-39-06-fdefa43
      2018-09-13T04-41-01-179fb2e
      2018-09-13T21-08-39-094ff85
      2018-09-13T21-13-06-e45bea8
      2018-09-16T01-27-46-27a6e44
      2018-09-16T01-27-54-eef571c
      2018-09-17T07-40-50-27a6e44
      2018-09-17T07-41-05-efbcf37
      2018-09-17T23-03-05-4363a82
      2018-09-18T21-31-05-de360a0
      2018-09-18T21-34-59-8a5fa0a
      2018-09-23T22-54-34-e6a97f6
      2018-09-27T10-23-49-6b14546
      2018-09-28T03-46-03-b031cfc
      2018-09-30T06-30-11-d526d04
      2018-10-02T04-01-30-af07d80
      2018-10-03T06-38-59-a46d462
      2018-10-03T07-03-19-80342b2
      2018-10-03T07-16-06-0d80418
      2018-10-08T21-25-58-ac9d5c6
      2018-10-09T07-07-16-78a6e4e
      2018-10-10T05-31-53-0466a3d
      2018-10-10T05-39-21-5cda03c
      2018-10-10T20-51-25-232373f
      2018-10-15T22-47-19-99aac04
      2018-10-16T04-11-52-46045a8
      2018-10-17T06-19-11-93e6150
      2018-10-17T09-47-16-c9ea5fc
      2018-10-17T23-50-56-d72f029
      2018-10-18T07-23-00-873bada
      2018-10-18T11-21-20-610a527
      2018-10-24T21-14-21-5e2c94f
      2018-10-24T21-16-55-25378bd
      2018-10-29T04-08-41-1f24856
      2018-10-31T23-42-59-ec9e3af
      2018-11-02T07-27-33-d0923be
      2018-11-03T12-19-57-9a2d4e9
      2018-11-04T23-23-23-129abec
      2018-11-05T04-59-34-c74b23e
      2018-11-05T23-39-38-cfc12d8
      2018-11-06T00-25-39-b0c4c3a
      2018-11-06T00-28-15-ec46cb6
      2018-11-07T03-10-42-5f13464
      2018-11-10T08-58-30-1e95abd
      2018-11-10T09-39-09-1f6095c
      2018-11-11T09-23-20-3dcabef
      2018-11-12T02-07-25-6ddb87f
      2018-11-15T21-34-13-6aa96be-ignored-chars
      2018-11-15T21-34-14-7110576-ignored-chars
      2018-11-16T06-01-41-51c05da-ignored-chars
      2018-11-16T06-01-54-efdaa48-ignored-chars
      2018-11-23T05-36-03-4ec08db
      2018-11-23T06-25-41-8885cd7
      2018-11-23T06-31-20-93e0f57
      2018-11-25T22-27-06-516a0c0
      2018-11-27T19-56-11-4dc1e0c
      2018-11-28T07-49-46-b808a72
      2018-11-28T08-13-20-3ada93e
      2018-12-01T05-52-33-9ba3c0e
      2018-12-02T00-31-14-9340660
      2018-12-02T00-56-57-305860d
      2018-12-02T00-57-27-28e493d
      2018-12-02T06-51-22-11cfd04
      2018-12-02T22-14-34-9e39066
      2018-12-03T06-08-55-17933ec
      2018-12-03T21-48-15-b292ab6
      2018-12-05T06-30-06-08a8613
      2018-12-07T11-12-28-9a3c8e8
      2018-12-12T01-03-50-8c7555b
      2018-12-15T05-16-49-88447e1
      2018-12-15T05-18-06-44627e4
      2018-12-20T04-16-45-68c7660
      2018-12-20T04-30-44-18a4425
      2018-12-20T04-32-18-c1600b6
      2018-12-20T05-49-26-50fe7e0
      2018-12-20T08-18-59-8e766d1
      2018-12-21T20-58-21-f24510d
      2018-12-21T21-00-05-9a6abf2
      2018-12-27T23-19-05-67fa4d9
      2018-12-28T20-03-39-0d707e9
      2018-12-29T10-59-26-1c3efb3
      2018-12-29T11-23-37-f0927ca
      2018-12-29T11-25-17-1648f54
      2018-12-29T11-37-31-7b494d1
      2018-12-29T18-59-16-f40ec83
      2018-12-29T20-24-09-8cc00d2
      2018-12-29T21-18-13-65a2c1d
      2018-12-29T21-26-21-e889103
      2018-12-29T22-10-43-33fcbc9
      2018-12-29T22-19-16-b85e315
      2018-12-29T22-55-27-8229b75
      2018-12-30T04-49-43-b422b88
      2019-01-01T05-12-10-d7fdfed
      2019-01-01T05-14-41-147d2be
      2019-01-02T07-00-24-b2bcb40
      2019-01-03T03-56-42-93f1c2f
      2019-01-03T22-57-19-e75b425
      2019-01-04T02-53-37-38a8606
      2019-01-04T03-07-40-a61f4ee
      2019-01-08T03-54-43-27471f7
      2019-01-08T05-36-31-8aaada8
      2019-01-08T05-54-26-5ecf32d
      2019-01-09T03-01-00-2790caa
      2019-01-10T02-59-04-828bf5c
      2019-01-10T22-02-11-9d62329
      2019-01-10T23-02-15-e7b431a
      2019-01-13T21-59-35-d037062
      2019-01-14T04-17-45-64a3c82
      2019-01-14T06-41-16-ead6ec2
      2019-01-14T07-14-22-fb0fa63
      2019-01-14T22-57-55-82be22b
      2019-01-15T02-21-27-1dfebed
      2019-01-15T23-05-22-e916b02
      2019-01-17T02-23-57-ecf8a08
      2019-01-18T05-18-40-0f5a890
      2019-01-18T07-01-10-c4bcd3a
      2019-01-22T00-33-57-c967dac
      2019-01-22T01-01-11-41d67d7
      2019-01-29T03-32-34-3d271c3
      2019-01-30T23-39-33-803f5cb
      2019-01-31T22-07-02-5a8b1fd
      2019-01-31T22-16-02-fc21117
      2019-01-31T22-31-13-065791a
      2019-01-31T22-35-43-b807e80
      2019-02-06T00-46-18-1ce5113
      2019-02-06T23-32-55-d73dacf
      2019-02-06T23-38-59-5f8c5bd
      2019-02-07T02-30-53-e310dc3
      2019-02-13T17-42-01-858250e
      2019-02-15T22-43-48-1231dde
      2019-02-18T02-52-52-13eb79a
      2019-02-20T00-59-31-9356c3d
      2019-02-28T01-17-35-b2cc1c2
      2019-03-05T02-16-05-6df6640
      2019-03-05T02-23-47-f40315b
      2019-03-07T03-51-32-45bf5af
      2019-03-07T04-21-43-cf62a7a
      2019-03-07T04-34-55-809a980
      2019-03-10T22-41-06-9808185
      2019-03-11T03-25-33-b3c91e8
      2019-03-11T03-25-55-fc95640
      2019-03-11T03-56-07-7f6f32b
      2019-03-11T03-58-13-4123998
      2019-03-11T04-12-00-65dea85
      2019-03-11T22-39-51-03dc939
      2019-03-11T22-40-03-cf1e838
      2019-03-11T22-42-37-93b7b58
      2019-03-11T22-46-27-52a7b6e
      2019-03-12T01-04-49-36b1c03
      2019-03-13T23-23-44-ef9d07d
      2019-03-14T00-26-07-5568795
      2019-03-14T03-40-10-806cfe7
      2019-03-15T01-33-39-648b896
      2019-03-15T01-33-47-61d57a62
      2019-03-15T05-03-21-75fb184
      2019-03-15T05-03-30-4d2c0d53
      2019-03-15T05-09-19-cbcee57
      2019-03-15T05-09-35-519fb887
      2019-03-15T05-33-44-d008832
      2019-03-19T00-28-22-88ffeb5
      2019-03-19T00-30-59-070c3a0
      2019-03-20T02-17-59-e1e7997
      2019-03-20T05-29-23-55f1989
      2019-03-20T05-29-55-cdd0cbc
      2019-03-22T02-07-23-a35079e
      2019-03-22T05-12-51-10376ba
      2019-03-25T02-33-40-0759b8d
      2019-03-25T23-57-28-8ba2d1d
      2019-04-03T06-16-20-800ea0d
      2019-04-08T02-06-59-636f7b5
      2019-04-08T08-27-21-a8a273f
      2019-04-09T05-25-48-8bae13f
      2019-04-09T05-29-53-bd9240c
      2019-04-30T06-16-13-21dff06
      2019-04-30T09-15-46-9214b60
      2019-05-01T03-50-43-fccc0c7
      2019-05-08T00-35-46-439e342
      2019-05-08T02-44-45-b370703
      2019-05-08T02-56-27-cca4316
      2019-05-14T05-01-24-4fd3721
      2019-05-14T05-11-27-400d008
      2019-05-15T02-49-32-f210154
      2019-05-20T06-48-36-6211b41
      2019-05-27T00-36-13-3a76c4a
      2019-05-27T04-13-44-5373f96
      2019-06-02T22-40-24-fcf767d
      2019-06-02T22-45-30-ca06d0e
      2019-06-02T22-56-37-9a61bfe
      2019-06-02T22-59-08-c73f438
      2019-06-03T06-53-20-dca93a9
      2019-06-07T06-51-35-dbd4e5c
      2019-06-11T03-20-45-0a2bd30
      2019-06-11T23-47-53-e00b023
      2019-06-12T00-11-29-b63be73
      2019-06-12T00-15-04-812b16c
      2019-06-12T00-38-53-8b078c6
      2019-06-12T00-39-55-a79e385
      2019-06-12T01-22-00-6020f87
      2019-06-12T01-25-50-0fec4be
      2019-06-12T01-37-10-19c6d0e
      2019-06-12T01-52-32-821241d
      2019-06-12T02-31-14-25c8232
      2019-06-12T04-51-56-e994f41
      2019-06-30T23-27-16-d762310
      2019-07-01T00-55-49-7d393f2
      2019-07-13T23-07-14-8c71e18
      2019-07-15T04-01-33-505aa81
      2019-07-15T07-36-13-5761d24
      2019-07-16T03-12-18-3cbc1ad
      2019-07-22T04-16-08-a7fbf74
      2019-07-22T04-17-57-f8658f2
      2019-07-22T04-25-03-527c587
      2019-07-24T03-34-24-2e1e989
      2019-07-31T05-09-08-4cadb88
      2019-07-31T05-58-03-755f534
      2019-08-01T04-03-44-e9b53f6
      2019-08-02T04-53-20-6063e7e
      2019-08-05T08-05-20-1a9005b
      2019-08-05T23-30-46-c454ba2
      2019-08-12T01-44-36-bf793cd
      2019-08-19T04-09-16-346d65a
      2019-08-20T01-08-54-018b57c
      2019-08-21T00-49-42-2e990d1
      2019-08-21T21-45-38-376b03f
      2019-08-22T10-09-42-a6c4461
      2019-08-22T10-31-28-7ab93b9
      2019-08-22T10-35-04-37f3ae0
      2019-08-22T10-39-43-a6c4461
      2019-08-27T06-31-52-a897adc
      2019-08-28T11-47-05-b9487a9
      2019-09-03T10-51-46-6c01c80
      2019-09-03T10-52-49-bfb284b
      2019-09-07T05-58-28-e5a610f
      2019-09-07T08-04-35-735ce06
      2019-09-07T08-05-59-ac5bc70
      2019-09-07T08-08-53-173312e
      2019-09-19T04-42-21-1ea2ed2
      2019-09-19T06-25-59-5c242a1
      2019-09-22T22-20-34-9e83320
      2019-10-08T22-47-44-e938ab4
      2019-10-16T01-41-26-24f5233
      2019-10-20T21-46-20-a0a5d63
      2019-10-20T22-57-19-d6296e0
      2019-10-21T00-35-45-a74776c
      2019-10-24T23-50-27-97bffda
      2019-10-25T04-33-32-40db9de
      2019-10-25T08-51-57-a634053
      2019-10-31T04-37-48-0919e71
      2019-11-06T22-52-38-81c2a0f
      2019-11-07T04-06-09-70d9412
      2019-11-19T08-52-32-b46beb9
      2019-12-09T21-46-06-1b79628
      2019-12-09T21-46-27-74aed1a
      2019-12-30T22-55-41-9417e85
      2019-12-30T23-36-38-9e904ca
      2019-12-31T02-25-35-a83995a
      2020-01-03T02-30-05-b8be7d1
      2020-01-03T02-30-51-fb97f3e
      2020-01-05T23-01-12-2ba4a8b
      2020-01-08T08-53-38-a2dcfd6
      2020-01-09T05-33-37-df2835b
      2020-01-13T02-25-12-b623055
      2020-01-13T03-23-46-bcdc138
      2020-01-13T03-38-11-52de81a
      2020-01-13T06-33-52-50c242d
      2020-01-14T00-59-12-593322d
      2020-01-14T02-17-18-b5692e4
      2020-01-14T02-57-52-8fe5e53
      2020-01-14T02-58-58-f430282
      2020-01-14T05-48-31-952f075
      2020-01-14T06-42-43-bef3ac2
      2020-01-14T06-45-04-f40e454
      2020-01-14T23-35-06-d42516c
      2020-01-16T00-18-31-4cf3bdd
      2020-01-16T01-18-01-fd13faf
      2020-01-16T23-47-31-4533d01
      2020-01-16T23-48-44-eb6755b
      2020-01-16T23-58-55-fd9ce3a
      2020-01-17T00-14-43-8a58c25
      2020-01-17T00-41-05-5d4d25f
      2020-01-17T00-44-53-21cdd1d
      2020-01-17T00-46-52-8b78178
      2020-01-17T02-41-10-578985f
      2020-01-24T03-11-44-8a5fe91
      2020-01-29T00-34-54-44d9c56
      2020-01-29T23-51-37-f82b53c
      2020-02-03T01-49-24-d4f9b63
      2020-02-04T03-00-21-0a40ca4
      2020-02-06T00-24-40-5b511b8
      2020-02-09T23-23-33-8f335b3
      2020-02-10T04-57-01-e33c252
      2020-02-10T23-53-32-cfd210b
      2020-02-12T22-54-17-101dc6c
      2020-02-29T00-26-15-cf90d4a
      2020-02-29T01-57-30-987fd78
      2020-04-01T09-48-46-c98ebf7
      2020-04-04T07-05-23-9eae9c1
      2020-04-29T07-25-05-1a7c11c
      2020-05-07T00-47-53-9f8cc8e
      2020-05-08T01-07-05-c8de10e
      2020-05-19T06-33-01-57ce5cf
      2020-05-19T23-15-09-be48433
      2020-05-19T23-56-49-f409b66
      2020-05-20T03-21-18-21d1479
      2020-05-20T06-07-21-2e391c1
      2020-05-20T06-36-40-2a443b4
      2020-05-20T06-55-13-453773f
      2020-05-20T07-22-07-0b49de6
      2020-05-20T23-03-10-d9d29d9
      2020-05-20T23-17-21-bbb92ac
      2020-05-20T23-42-54-8f4cd45
      2020-05-21T05-06-09-4e43ef7
      2020-05-21T05-19-49-bdc958e
      2020-05-21T05-21-25-427f493
      2020-05-21T05-53-50-341e22c
      2020-05-21T07-38-42-2acb557
      2020-05-21T08-33-51-0b611f2
      2020-05-21T10-50-06-0a18992
      2020-05-21T23-09-51-9eb260e
      2020-05-22T05-23-36-4fe702b
      2020-05-22T05-46-34-000eb52
      2020-05-24T06-42-08-c508ac3
      2020-05-25T00-16-35-ebd15e0
      2020-05-25T00-18-12-74b4855
      2020-05-26T01-36-28-7770701
      2020-05-26T04-31-46-81d3ce4
      2020-05-27T11-37-07-bb47f29
      2020-05-28T00-32-38-497d2ac
      2020-05-28T02-17-41-bc29b5f
      2020-05-28T05-56-25-f328040
      2020-05-29T04-10-05-3dfbf01
      2020-06-05T10-44-09-eff6106
      2020-06-07T01-00-15-98bb45a
      2020-06-07T01-08-08-a9f7932
      2020-06-07T01-09-40-d94eacc
      2020-06-16T23-03-22-403a837
      2020-06-19T06-05-35-10eeacc
      2020-06-22T08-53-48-3101f48
      2020-06-22T09-12-11-a0d327d
      2020-06-22T09-38-54-c40fc1d
      2020-06-29T07-38-53-4a0a7af
      2020-06-30T22-36-45-ce7fd42
      2020-07-03T00-47-06-d3032e7
      2020-07-03T01-10-37-bb87d8f
      2020-08-24T06-09-06-d3b6af0
      2020-08-25T03-42-48-443390b
      2020-08-25T04-35-08-bab2a91
      2020-08-25T04-49-03-31f3d3f
      2020-08-25T05-10-41-2ed520e
      2020-08-25T06-42-13-d40046e
      2020-08-25T06-43-04-baeb392
      2020-08-25T06-43-52-1607bdf
      2020-08-25T07-30-29-fd556cc
      2020-08-25T07-31-26-c27a9cd
      2020-08-25T07-36-16-26a012c
      2020-08-25T07-38-57-05deb85
      2020-08-25T08-08-25-8b22a39
      2020-08-25T15-37-52-a7117f8
      2020-08-31T04-32-29-6a56b3a
      2020-09-08T04-55-10-f64f1cd
      2020-09-08T04-55-19-30e680b
      2020-09-08T04-56-12-5c5798e
      2020-09-08T04-56-57-be01c7f
      2020-09-08T04-57-53-264cb12
      2020-09-08T23-57-06-7ee7602
      2020-09-10T23-56-06-6f9b54d
      2020-09-10T23-59-03-dcdea33
      2020-09-13T08-18-38-7fc94c5
      2020-09-13T08-19-45-0d97d9d
      2020-09-13T08-20-40-c3c48a2
      2020-09-13T09-05-14-4b66774
      2020-09-14T23-02-53-a9151d3
      2020-09-14T23-03-24-5ebd3ac
      2020-09-14T23-04-32-61a78fe
      2020-09-17T10-31-42-09111ae
      2020-09-19T01-23-44-97a3073
      2020-09-19T01-24-58-592215d
      2020-09-21T10-25-11-af83f79
      2020-09-21T10-26-13-58daf97
      2020-09-23T01-42-02-53999d6
      2020-10-01T08-02-28-3998b0d
      2020-10-01T08-12-16-06593e2
      2020-10-01T08-12-52-24e4b17
      2020-10-01T08-13-33-6eb4df2
      2020-10-01T08-15-11-6cc1974
      2020-10-01T20-49-20-d2ca93c
      2020-10-01T21-02-05-1852cb7
      2020-10-01T21-06-37-558aeaa
      2020-10-06T07-50-37-7a8e903
      2020-10-09T06-02-11-8e55666
      2020-10-09T06-03-45-4a893b0
      2020-10-15T08-28-25-6af9785
      2020-10-16T05-33-59-df5bbde
      2020-10-20T00-43-22-34f34fe
      2020-10-20T01-20-15-2b4457c
      2020-10-21T10-06-46-49bbbeb
      2020-10-25T05-02-24-a39aec8
      2020-10-27T16-39-54-0de364a
      2020-10-27T17-35-04-0de364a
      2020-11-01T02-27-21-3295066
      2020-11-02T04-11-46-9ba7606
      2020-11-02T04-33-43-dd5d4d8
      2020-11-02T23-55-44-d576991
      2020-11-03T02-03-16-cf89ea3
      2020-11-04T22-40-01-afaa9aa
      2020-11-05T07-48-24-3dd5e02
      2020-11-10T10-26-00-07ca7ee
      2020-11-10T11-49-19-a1c123d
      2020-11-10T22-37-49-c801fd8
      2020-11-11T00-55-26-17f0e27
      2020-11-13T21-13-26-fb86ee6
      2020-11-16T00-00-07-ff3f691
      2020-11-16T00-02-27-3dfeae3
      2020-11-24T02-56-06-432d5f0
      2020-11-24T23-36-57-43668fb
      2020-11-28T08-02-26-b01df74
      2020-11-28T08-17-17-be8025f
      2020-12-09T22-35-43-9803c10
      2020-12-12T02-26-00-5e61bb3
      2020-12-13T07-30-15-d1a4c15
      2020-12-21T21-14-06-a12f84b
      2021-01-27T06-23-16-986ee60
      2021-01-29T11-36-47-b874235
      2021-01-30T04-10-11-59cd870
      2021-01-31T07-23-49-4d37858
      2021-02-02T00-45-04-fcce8632
      2021-02-02T01-21-59-55cccb55
      2021-02-02T01-28-37-13467897
      2021-02-02T01-34-58-8d747c1
      2021-02-02T01-35-37-3bae3c26
      2021-02-02T02-54-22-7c559d8d
      2021-02-02T02-59-50-70c1c921
      2021-02-02T03-06-53-a7c2d205
      2021-02-02T03-08-48-040823c2
      2021-02-02T03-45-35-79a57f67
      2021-02-02T03-49-01-6bf9674d
      2021-02-02T04-19-10-0e6921e1
      2021-02-06T05-29-55-33cd6e60
      2021-02-09T05-22-20-b645925f
      2021-02-10T08-16-57-4dbf45fd
      2021-02-13T02-14-19-a9de9cec
      2021-02-13T23-17-27-86627c27
      2021-02-17T06-17-55-6ffdd2d5
      2021-02-27T05-24-51-419acbb4
      2021-02-28T10-07-29-dbfb40d9
      2021-02-28T11-48-01-dc2cdda7
      2021-03-18T23-19-42-52ebe904
      2021-03-19T00-06-52-e166c255
      2021-03-19T01-12-05-a24cd52a
      2021-03-21T22-31-57-479b7a43
      2021-03-22T20-02-28-3a701a0f
      2021-03-25T09-33-46-e4c16ebb
      2021-03-25T21-09-07-5bc917f7
      2021-03-28T09-04-54-b1b364be
      2021-03-29T04-07-12-b98161f0
      2021-03-29T04-35-54-5e2ceda5
      2021-03-29T04-41-52-39ea068d
      2021-03-29T05-11-02-d63bb6b6
      2021-03-29T05-12-42-e5e8847b
      2021-03-29T05-13-32-fdea5cfc
      2021-03-29T21-50-33-a37cde2a
      2021-03-30T02-09-41-e91c8894
      2021-03-30T02-27-57-dbf4b18b
      2021-03-30T02-57-48-22314931
      2021-04-09T04-37-57-b510f5e6
      2021-04-11T23-40-30-f362d619
      2021-04-11T23-42-01-1d16e703
      2021-04-11T23-42-55-656f4e35
      2021-04-11T23-47-53-93cc5158
      2021-04-19T03-51-46-d783ec7e
      2021-04-27T02-21-11-eb3afc27
      2021-04-28T06-28-49-4d52fd0e
      2021-05-03T08-53-12-8f1ec444
      230521-nf-execution Latest Major
      +

      com.h2database:h2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.h2database
      Artifact Idh2
      Current Version2.1.214
      Scope
      Classifier
      Typejar
      Newer versions2.2.220
      2.2.222
      2.2.224 Latest Minor
      +

      com.hazelcast:hazelcast

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.hazelcast
      Artifact Idhazelcast
      Current Version5.1.7
      Scope
      Classifier
      Typejar
      Newer versions5.2-BETA-1
      5.2.0
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3.0-BETA-1
      5.3.0-BETA-2
      5.3.0
      5.3.1
      5.3.2
      5.3.4
      5.3.5
      5.3.6 Latest Minor
      +

      com.hazelcast:hazelcast-hibernate52

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.hazelcast
      Artifact Idhazelcast-hibernate52
      Current Version2.2.1
      Scope
      Classifier
      Typejar
      +

      com.hazelcast:hazelcast-hibernate53

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.hazelcast
      Artifact Idhazelcast-hibernate53
      Current Version2.2.1
      Scope
      Classifier
      Typejar
      Newer versions2.3.0 Latest Minor
      5.0.0
      5.1.0 Latest Major
      +

      com.hazelcast:hazelcast-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.hazelcast
      Artifact Idhazelcast-spring
      Current Version5.1.7
      Scope
      Classifier
      Typejar
      Newer versions5.2-BETA-1
      5.2.0
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3.0-BETA-1
      5.3.0-BETA-2
      5.3.0
      5.3.1
      5.3.2
      5.3.4
      5.3.5
      5.3.6 Latest Minor
      +

      com.ibm.db2:jcc

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.ibm.db2
      Artifact Idjcc
      Current Version11.5.9.0
      Scope
      Classifier
      Typejar
      +

      com.jayway.jsonpath:json-path

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.jayway.jsonpath
      Artifact Idjson-path
      Current Version2.7.0
      Scope
      Classifier
      Typejar
      Newer versions2.8.0
      2.9.0 Latest Minor
      +

      com.jayway.jsonpath:json-path-assert

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.jayway.jsonpath
      Artifact Idjson-path-assert
      Current Version2.7.0
      Scope
      Classifier
      Typejar
      Newer versions2.8.0
      2.9.0 Latest Minor
      +

      com.microsoft.sqlserver:mssql-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idcom.microsoft.sqlserver
      Artifact Idmssql-jdbc
      Current Version10.2.3.jre8
      Scope
      Classifier
      Typejar
      Newer versions10.2.3.jre11
      10.2.3.jre17 Latest Subincremental
      11.1.0-SNAPSHOT.jre8-preview
      11.1.0-SNAPSHOT.jre11-preview
      11.1.0-SNAPSHOT.jre17-preview
      11.1.0.jre8-preview
      11.1.0.jre11-preview
      11.1.0.jre17-preview
      11.1.1.jre8-preview
      11.1.1.jre11-preview
      11.1.1.jre17-preview
      11.1.1.jre18-preview
      11.1.2.jre8-preview
      11.1.2.jre11-preview
      11.1.2.jre17-preview
      11.1.2.jre18-preview
      11.2.0.jre8
      11.2.0.jre11
      11.2.0.jre17
      11.2.0.jre18
      11.2.1.jre8
      11.2.1.jre11
      11.2.1.jre17
      11.2.1.jre18
      11.2.2.jre8
      11.2.2.jre11
      11.2.2.jre17
      11.2.2.jre18
      11.2.3.jre8
      11.2.3.jre11
      11.2.3.jre17
      11.2.3.jre18
      12.1.0.jre8-preview
      12.1.0.jre11-preview
      12.2.0.jre8
      12.2.0.jre11
      12.3.0.jre8-preview
      12.3.0.jre11-preview
      12.3.0.jre17-preview
      12.3.0.jre20-preview
      12.3.1.jre8-preview
      12.3.1.jre11-preview
      12.4.0.jre8
      12.4.0.jre8-preview
      12.4.0.jre11
      12.4.0.jre11-preview
      12.4.1.jre8
      12.4.1.jre11
      12.4.2.jre8
      12.4.2.jre11
      12.5.0.jre8-preview
      12.5.0.jre11-preview
      12.6.0.jre8
      12.6.0.jre11 Latest Major
      +

      com.mysql:mysql-connector-j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.mysql
      Artifact Idmysql-connector-j
      Current Version8.0.33
      Scope
      Classifier
      Typejar
      Newer versions8.1.0
      8.2.0
      8.3.0 Latest Minor
      +

      com.oracle.database.ha:ons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.ha
      Artifact Idons
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.ha:simplefan

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.ha
      Artifact Idsimplefan
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc11
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc11-production

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc11-production
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc8
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc8-production

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc8-production
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:rsi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idrsi
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ucp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Iducp
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ucp11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Iducp11
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc.debug:ojdbc11-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc11-observability-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11-observability-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc11_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc11dms_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11dms_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8-observability-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8-observability-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8dms_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8dms_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.nls:orai18n

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.nls
      Artifact Idorai18n
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.observability:dms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Iddms
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.observability:ojdbc11-observability

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc11-observability
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.observability:ojdbc11dms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc11dms
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.observability:ojdbc8-observability

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc8-observability
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.observability:ojdbc8dms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc8dms
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.r2dbc:oracle-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.oracle.database.r2dbc
      Artifact Idoracle-r2dbc
      Current Version0.4.0
      Scope
      Classifier
      Typejar
      Newer versions1.0.0
      1.1.0
      1.1.1
      1.2.0 Latest Major
      +

      com.oracle.database.security:oraclepki

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.security
      Artifact Idoraclepki
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.security:osdt_cert

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.security
      Artifact Idosdt_cert
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.security:osdt_core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.security
      Artifact Idosdt_core
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.xml:xdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.xml
      Artifact Idxdb
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.xml:xmlparserv2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.xml
      Artifact Idxmlparserv2
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.querydsl:querydsl-apt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-apt
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-codegen-utils

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.querydsl
      Artifact Idquerydsl-codegen-utils
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      +

      com.querydsl:querydsl-collections

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-collections
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-core
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-guava
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-hibernate-search

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-hibernate-search
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-jdo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-jdo
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-jpa
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-jpa-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-jpa-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-kotlin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-kotlin
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-kotlin-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-kotlin-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-lucene3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-lucene3
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-lucene4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-lucene4
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-lucene5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-lucene5
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-mongodb
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-scala

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-scala
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-spatial

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-spatial
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql-spatial

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql-spatial
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql-spring
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.rabbitmq:amqp-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.rabbitmq
      Artifact Idamqp-client
      Current Version5.14.3
      Scope
      Classifier
      Typejar
      Newer versions5.15.0
      5.16.0
      5.16.1
      5.17.0
      5.17.1
      5.18.0
      5.19.0
      5.20.0 Latest Minor
      +

      com.rabbitmq:stream-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.rabbitmq
      Artifact Idstream-client
      Current Version0.5.0
      Scope
      Classifier
      Typejar
      Newer versions0.6.0
      0.7.0
      0.8.0
      0.9.0
      0.10.0
      0.11.0
      0.12.0
      0.13.0
      0.14.0
      0.15.0 Latest Minor
      +

      com.samskivert:jmustache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.samskivert
      Artifact Idjmustache
      Current Version1.15
      Scope
      Classifier
      Typejar
      Newer versions1.16 Latest Minor
      +

      com.sendgrid:sendgrid-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.sendgrid
      Artifact Idsendgrid-java
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0
      4.10.1 Latest Minor
      +

      com.squareup.okhttp3:logging-interceptor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idlogging-interceptor
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:mockwebserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idmockwebserver
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okcurl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokcurl
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-brotli

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-brotli
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-dnsoverhttps

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-dnsoverhttps
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-sse

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-sse
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-tls

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-tls
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-urlconnection

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-urlconnection
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.sun.activation:jakarta.activation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.sun.activation
      Artifact Idjakarta.activation
      Current Version1.2.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-rc1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1 Latest Major
      +

      com.sun.mail:jakarta.mail

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.sun.mail
      Artifact Idjakarta.mail
      Current Version1.6.7
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0-RC4
      2.0.0-RC5
      2.0.0-RC6
      2.0.0
      2.0.1 Latest Major
      +

      com.sun.xml.messaging.saaj:saaj-impl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.sun.xml.messaging.saaj
      Artifact Idsaaj-impl
      Current Version1.5.3
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0
      2.0.1
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      com.unboundid:unboundid-ldapsdk

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idcom.unboundid
      Artifact Idunboundid-ldapsdk
      Current Version6.0.10
      Scope
      Classifier
      Typejar
      Newer versions6.0.11 Latest Incremental
      +

      com.zaxxer:HikariCP

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.zaxxer
      Artifact IdHikariCP
      Current Version4.0.3
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0 Latest Major
      +

      commons-codec:commons-codec

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcommons-codec
      Artifact Idcommons-codec
      Current Version1.15
      Scope
      Classifier
      Typejar
      Newer versions1.16.0
      1.16.1 Latest Minor
      +

      commons-pool:commons-pool

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcommons-pool
      Artifact Idcommons-pool
      Current Version1.6
      Scope
      Classifier
      Typejar
      +

      de.flapdoodle.embed:de.flapdoodle.embed.mongo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idde.flapdoodle.embed
      Artifact Idde.flapdoodle.embed.mongo
      Current Version3.4.11
      Scope
      Classifier
      Typejar
      Newer versions3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4 Latest Minor
      4.0.0-beta
      4.0.1-beta
      4.0.2-beta
      4.0.3-beta
      4.0.4-beta
      4.0.5-beta
      4.0.6-beta
      4.0.7-beta
      4.0.8-beta
      4.0.9-beta
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.2.0
      4.3.0
      4.3.1
      4.3.2
      4.3.3
      4.4.0
      4.4.1
      4.5.0
      4.5.1
      4.6.0
      4.6.1
      4.6.2
      4.6.3
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.9.0
      4.9.1
      4.9.2
      4.9.3
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1
      4.12.0
      4.12.1
      4.12.2 Latest Major
      +

      io.dropwizard.metrics:metrics-annotation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-annotation
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-caffeine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-caffeine
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-caffeine3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-caffeine3
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-collectd

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-collectd
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-core
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-ehcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-ehcache
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-graphite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-graphite
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-healthchecks

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-healthchecks
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-httpasyncclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-httpasyncclient
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-httpclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-httpclient
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-httpclient5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-httpclient5
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jakarta-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jakarta-servlet
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jakarta-servlet6

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jakarta-servlet6
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jakarta-servlets

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jakarta-servlets
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jcache
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jdbi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jdbi
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jdbi3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jdbi3
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jersey2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jersey2
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jersey3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jersey3
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jersey31

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jersey31
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty10

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty10
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty11
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty12
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty12-ee10

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty12-ee10
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty9

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty9
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jmx
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-json
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jvm
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-log4j2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-log4j2
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-logback

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-logback
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-logback13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-logback13
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-logback14

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-logback14
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-servlet
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-servlets

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-servlets
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.lettuce:lettuce-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.lettuce
      Artifact Idlettuce-core
      Current Version6.1.10.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions6.2.0.RELEASE
      6.2.1.RELEASE
      6.2.2.RELEASE
      6.2.3.RELEASE
      6.2.4.RELEASE
      6.2.5.RELEASE
      6.2.6.RELEASE
      6.2.7.RELEASE
      6.3.0.RELEASE
      6.3.1.RELEASE Latest Minor
      +

      io.micrometer:micrometer-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-core
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-appoptics

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-appoptics
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-atlas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-atlas
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-azure-monitor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-azure-monitor
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-cloudwatch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-cloudwatch
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-cloudwatch2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-cloudwatch2
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-datadog

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-datadog
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-dynatrace

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-dynatrace
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-elastic

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-elastic
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-ganglia

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-ganglia
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-graphite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-graphite
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-health

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-health
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-humio

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-humio
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-influx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-influx
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-jmx
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-kairos

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-kairos
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-new-relic

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-new-relic
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-opentsdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-opentsdb
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-otlp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-otlp
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-prometheus

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-prometheus
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-signalfx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-signalfx
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-stackdriver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-stackdriver
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-statsd

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-statsd
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-wavefront

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-wavefront
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-test
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.netty:netty-all

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-all
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-buffer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-buffer
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-dns

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-dns
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-haproxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-haproxy
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-http
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-http2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-http2
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-memcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-memcache
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-mqtt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-mqtt
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-redis
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-codec-smtp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-smtp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-codec-socks

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-socks
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-stomp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-stomp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-xml
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-common
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-dev-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-dev-tools
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-example

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-example
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-handler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-handler
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-handler-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-handler-proxy
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-handler-ssl-ocsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-handler-ssl-ocsp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-resolver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-resolver-dns

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver-dns
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-resolver-dns-classes-macos

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver-dns-classes-macos
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-resolver-dns-native-macos

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver-dns-native-macos
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-tcnative

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-tcnative
      Current Version2.0.61.Final
      Scope
      Classifierlinux-x86_64
      Typejar
      Newer versions2.0.62.Final Latest Incremental
      +

      io.netty:netty-tcnative-boringssl-static

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-tcnative-boringssl-static
      Current Version2.0.61.Final
      Scope
      Classifier
      Typejar
      Newer versions2.0.62.Final Latest Incremental
      +

      io.netty:netty-tcnative-classes

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-tcnative-classes
      Current Version2.0.61.Final
      Scope
      Classifier
      Typejar
      Newer versions2.0.62.Final Latest Incremental
      +

      io.netty:netty-transport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-classes-epoll

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-classes-epoll
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-classes-kqueue

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-classes-kqueue
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-native-epoll

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-native-epoll
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-native-kqueue

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-native-kqueue
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-native-unix-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-native-unix-common
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-rxtx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-rxtx
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-sctp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-sctp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-udt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-udt
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.projectreactor:reactor-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor
      Artifact Idreactor-core
      Current Version3.4.34
      Scope
      Classifier
      Typejar
      Newer versions3.4.35 Latest Incremental
      3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4
      3.5.5
      3.5.6
      3.5.7
      3.5.8
      3.5.9
      3.5.10
      3.5.11
      3.5.12
      3.5.13
      3.5.14
      3.6.0-M1
      3.6.0-M2
      3.6.0-M3
      3.6.0-RC1
      3.6.0
      3.6.1
      3.6.2 Latest Minor
      +

      io.projectreactor:reactor-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor
      Artifact Idreactor-test
      Current Version3.4.34
      Scope
      Classifier
      Typejar
      Newer versions3.4.35 Latest Incremental
      3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4
      3.5.5
      3.5.6
      3.5.7
      3.5.8
      3.5.9
      3.5.10
      3.5.11
      3.5.12
      3.5.13
      3.5.14
      3.6.0-M1
      3.6.0-M2
      3.6.0-M3
      3.6.0-RC1
      3.6.0
      3.6.1
      3.6.2 Latest Minor
      +

      io.projectreactor:reactor-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor
      Artifact Idreactor-tools
      Current Version3.4.34
      Scope
      Classifier
      Typejar
      Newer versions3.4.35 Latest Incremental
      3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4
      3.5.5
      3.5.6
      3.5.7
      3.5.8
      3.5.9
      3.5.10
      3.5.11
      3.5.12
      3.5.13
      3.5.14
      3.6.0-M1
      3.6.0-M2
      3.6.0-M3
      3.6.0-RC1
      3.6.0
      3.6.1
      3.6.2 Latest Minor
      +

      io.projectreactor.addons:reactor-adapter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.projectreactor.addons
      Artifact Idreactor-adapter
      Current Version3.4.10
      Scope
      Classifier
      Typejar
      Newer versions3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1 Latest Minor
      +

      io.projectreactor.addons:reactor-extra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.projectreactor.addons
      Artifact Idreactor-extra
      Current Version3.4.10
      Scope
      Classifier
      Typejar
      Newer versions3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1 Latest Minor
      +

      io.projectreactor.addons:reactor-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.projectreactor.addons
      Artifact Idreactor-pool
      Current Version0.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.0.0-M1
      1.0.0-M3
      1.0.0-M4
      1.0.0-M5
      1.0.0-M6
      1.0.0-RC1
      1.0.0
      1.0.1
      1.0.2
      1.0.3
      1.0.4
      1.0.5 Latest Major
      +

      io.projectreactor.kafka:reactor-kafka

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.projectreactor.kafka
      Artifact Idreactor-kafka
      Current Version1.3.22
      Scope
      Classifier
      Typejar
      +

      io.projectreactor.kotlin:reactor-kotlin-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.projectreactor.kotlin
      Artifact Idreactor-kotlin-extensions
      Current Version1.1.10
      Scope
      Classifier
      Typejar
      Newer versions1.2.0-M1
      1.2.0-M3
      1.2.0-M4
      1.2.0-M5
      1.2.0-M6
      1.2.0-RC1
      1.2.0
      1.2.1
      1.2.2 Latest Minor
      +

      io.projectreactor.netty:reactor-netty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.netty:reactor-netty-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty-core
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.netty:reactor-netty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty-http
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.netty:reactor-netty-http-brave

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty-http-brave
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.rabbitmq:reactor-rabbitmq

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.projectreactor.rabbitmq
      Artifact Idreactor-rabbitmq
      Current Version1.5.6
      Scope
      Classifier
      Typejar
      +

      io.prometheus:simpleclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_caffeine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_caffeine
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_common
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_dropwizard

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_dropwizard
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_graphite_bridge

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_graphite_bridge
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_guava
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_hibernate

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_hibernate
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_hotspot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_hotspot
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_httpserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_httpserver
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_jetty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_jetty
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_jetty_jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_jetty_jdk8
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_log4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_log4j
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_log4j2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_log4j2
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_logback

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_logback
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_pushgateway

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_pushgateway
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_servlet
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_servlet_jakarta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_servlet_jakarta
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_spring_boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_spring_boot
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_spring_web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_spring_web
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_tracer_otel

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_tracer_otel
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_tracer_otel_agent

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_tracer_otel_agent
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_vertx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_vertx
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.r2dbc:r2dbc-h2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-h2
      Current Version0.9.1.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.M6
      1.0.0.M7
      1.0.0.RC1
      1.0.0.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-mssql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idio.r2dbc
      Artifact Idr2dbc-mssql
      Current Version0.9.0.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions0.9.0.SONATYPE-M4 Latest Subincremental
      1.0.0.M6
      1.0.0.M7
      1.0.0.RC1
      1.0.0.RELEASE
      1.0.1.RELEASE
      1.0.2.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-pool
      Current Version0.9.2.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.RC1
      1.0.0.RELEASE
      1.0.1.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-proxy
      Current Version0.9.1.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.M7
      1.0.0.RELEASE
      1.0.1.RELEASE
      1.1.0.RELEASE
      1.1.1.RELEASE
      1.1.2.RELEASE
      1.1.3.RELEASE
      1.1.4.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-spi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-spi
      Current Version0.9.1.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.M4
      1.0.0.M5
      1.0.0.M6
      1.0.0.M7
      1.0.0.RELEASE Latest Major
      +

      io.reactivex:rxjava

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.reactivex
      Artifact Idrxjava
      Current Version1.3.8
      Scope
      Classifier
      Typejar
      +

      io.reactivex:rxjava-reactive-streams

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.reactivex
      Artifact Idrxjava-reactive-streams
      Current Version1.2.1
      Scope
      Classifier
      Typejar
      +

      io.reactivex.rxjava2:rxjava

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.reactivex.rxjava2
      Artifact Idrxjava
      Current Version2.2.21
      Scope
      Classifier
      Typejar
      +

      io.rest-assured:json-path

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idjson-path
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:json-schema-validator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idjson-schema-validator
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:kotlin-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idkotlin-extensions
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:rest-assured

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idrest-assured
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:rest-assured-all

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idrest-assured-all
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:rest-assured-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idrest-assured-common
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:scala-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idscala-support
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-commons
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-mock-mvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-mock-mvc
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-mock-mvc-kotlin-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-mock-mvc-kotlin-extensions
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-web-test-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-web-test-client
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:xml-path

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idxml-path
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured.examples:kotlin-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idkotlin-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:rest-assured-itest-java

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idrest-assured-itest-java
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scala-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscala-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scala-mock-mvc-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscala-mock-mvc-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scalatra-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscalatra-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scalatra-webapp

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscalatra-webapp
      Current Version4.5.1
      Scope
      Classifier
      Typewar
      +

      io.rest-assured.examples:spring-mvc-webapp

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idspring-mvc-webapp
      Current Version4.5.1
      Scope
      Classifier
      Typewar
      +

      io.rsocket:rsocket-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-core
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-load-balancer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-load-balancer
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-micrometer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-micrometer
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-test
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-transport-local

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-transport-local
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-transport-netty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-transport-netty
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.spring.gradle:dependency-management-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.spring.gradle
      Artifact Iddependency-management-plugin
      Current Version1.0.15.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4 Latest Minor
      +

      io.undertow:undertow-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.undertow
      Artifact Idundertow-core
      Current Version2.2.28.Final
      Scope
      Classifier
      Typejar
      Newer versions2.3.0.Alpha1
      2.3.0.Alpha2
      2.3.0.Beta1
      2.3.0.Final
      2.3.1.Final
      2.3.2.Final
      2.3.3.Final
      2.3.4.Final
      2.3.5.Final
      2.3.6.Final
      2.3.7.Final
      2.3.8.Final
      2.3.9.Final
      2.3.10.Final Latest Minor
      +

      io.undertow:undertow-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.undertow
      Artifact Idundertow-servlet
      Current Version2.2.28.Final
      Scope
      Classifier
      Typejar
      Newer versions2.3.0.Alpha1
      2.3.0.Alpha2
      2.3.0.Beta1
      2.3.0.Final
      2.3.1.Final
      2.3.2.Final
      2.3.3.Final
      2.3.4.Final
      2.3.5.Final
      2.3.6.Final
      2.3.7.Final
      2.3.8.Final
      2.3.9.Final
      2.3.10.Final Latest Minor
      +

      io.undertow:undertow-websockets-jsr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.undertow
      Artifact Idundertow-websockets-jsr
      Current Version2.2.28.Final
      Scope
      Classifier
      Typejar
      Newer versions2.3.0.Alpha1
      2.3.0.Alpha2
      2.3.0.Beta1
      2.3.0.Final
      2.3.1.Final
      2.3.2.Final
      2.3.3.Final
      2.3.4.Final
      2.3.5.Final
      2.3.6.Final
      2.3.7.Final
      2.3.8.Final
      2.3.9.Final
      2.3.10.Final Latest Minor
      +

      jakarta.activation:jakarta.activation-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.activation
      Artifact Idjakarta.activation-api
      Current Version1.2.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-rc1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1
      2.1.0-RC1
      2.1.0-RC2
      2.1.0
      2.1.1
      2.1.2 Latest Major
      +

      jakarta.annotation:jakarta.annotation-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.annotation
      Artifact Idjakarta.annotation-api
      Current Version1.3.5
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0
      2.1.0-B1
      2.1.0
      2.1.1
      3.0.0-M1 Latest Major
      +

      jakarta.jms:jakarta.jms-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.jms
      Artifact Idjakarta.jms-api
      Current Version2.0.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0
      3.1.0 Latest Major
      +

      jakarta.json:jakarta.json-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.json
      Artifact Idjakarta.json-api
      Current Version1.1.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1
      2.0.2
      2.1.0-RC1
      2.1.0
      2.1.1
      2.1.2
      2.1.3 Latest Major
      +

      jakarta.json.bind:jakarta.json.bind-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.json.bind
      Artifact Idjakarta.json.bind-api
      Current Version1.0.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0
      3.0.0-RC1
      3.0.0 Latest Major
      +

      jakarta.mail:jakarta.mail-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.mail
      Artifact Idjakarta.mail-api
      Current Version1.6.7
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0-RC4
      2.0.0-RC5
      2.0.0-RC6
      2.0.0
      2.0.1
      2.1.0-RC1
      2.1.0-RC2
      2.1.0
      2.1.1
      2.1.2 Latest Major
      +

      jakarta.management.j2ee:jakarta.management.j2ee-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjakarta.management.j2ee
      Artifact Idjakarta.management.j2ee-api
      Current Version1.1.4
      Scope
      Classifier
      Typejar
      +

      jakarta.persistence:jakarta.persistence-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.persistence
      Artifact Idjakarta.persistence-api
      Current Version2.2.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.2.0-B01
      3.2.0-B02
      3.2.0-M1 Latest Major
      +

      jakarta.servlet:jakarta.servlet-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.servlet
      Artifact Idjakarta.servlet-api
      Current Version4.0.4
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0
      6.0.0
      6.1.0-M1 Latest Major
      +

      jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.servlet.jsp.jstl
      Artifact Idjakarta.servlet.jsp.jstl-api
      Current Version1.2.7
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0
      3.0.0 Latest Major
      +

      jakarta.transaction:jakarta.transaction-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.transaction
      Artifact Idjakarta.transaction-api
      Current Version1.3.3
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1-RC1
      2.0.1 Latest Major
      +

      jakarta.validation:jakarta.validation-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.validation
      Artifact Idjakarta.validation-api
      Current Version2.0.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0
      3.0.1
      3.0.2
      3.1.0-M1 Latest Major
      +

      jakarta.websocket:jakarta.websocket-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.websocket
      Artifact Idjakarta.websocket-api
      Current Version1.1.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0-RC1
      2.0.0
      2.1.0
      2.1.1
      2.2.0-M1 Latest Major
      +

      jakarta.ws.rs:jakarta.ws.rs-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.ws.rs
      Artifact Idjakarta.ws.rs-api
      Current Version2.1.6
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0
      3.1.0 Latest Major
      +

      jakarta.xml.bind:jakarta.xml.bind-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.xml.bind
      Artifact Idjakarta.xml.bind-api
      Current Version2.3.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0-RC2
      3.0.0-RC3
      3.0.0
      3.0.1
      4.0.0-RC1
      4.0.0-RC2
      4.0.0-RC3
      4.0.0
      4.0.1 Latest Major
      +

      jakarta.xml.soap:jakarta.xml.soap-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.xml.soap
      Artifact Idjakarta.xml.soap-api
      Current Version1.4.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1 Latest Major
      +

      jakarta.xml.ws:jakarta.xml.ws-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.xml.ws
      Artifact Idjakarta.xml.ws-api
      Current Version2.3.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0-RC2
      3.0.0-RC3
      3.0.0
      3.0.1
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1 Latest Major
      +

      javax.activation:javax.activation-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.activation
      Artifact Idjavax.activation-api
      Current Version1.2.0
      Scope
      Classifier
      Typejar
      +

      javax.annotation:javax.annotation-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.annotation
      Artifact Idjavax.annotation-api
      Current Version1.3.2
      Scope
      Classifier
      Typejar
      +

      javax.cache:cache-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.cache
      Artifact Idcache-api
      Current Version1.1.1
      Scope
      Classifier
      Typejar
      +

      javax.jms:javax.jms-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.jms
      Artifact Idjavax.jms-api
      Current Version2.0.1
      Scope
      Classifier
      Typejar
      +

      javax.json:javax.json-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.json
      Artifact Idjavax.json-api
      Current Version1.1.4
      Scope
      Classifier
      Typejar
      +

      javax.json.bind:javax.json.bind-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.json.bind
      Artifact Idjavax.json.bind-api
      Current Version1.0
      Scope
      Classifier
      Typejar
      +

      javax.mail:javax.mail-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.mail
      Artifact Idjavax.mail-api
      Current Version1.6.2
      Scope
      Classifier
      Typejar
      +

      javax.money:money-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.money
      Artifact Idmoney-api
      Current Version1.1
      Scope
      Classifier
      Typejar
      +

      javax.persistence:javax.persistence-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.persistence
      Artifact Idjavax.persistence-api
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      javax.servlet:javax.servlet-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.servlet
      Artifact Idjavax.servlet-api
      Current Version4.0.1
      Scope
      Classifier
      Typejar
      +

      javax.servlet:jstl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.servlet
      Artifact Idjstl
      Current Version1.2
      Scope
      Classifier
      Typejar
      +

      javax.transaction:javax.transaction-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.transaction
      Artifact Idjavax.transaction-api
      Current Version1.3
      Scope
      Classifier
      Typejar
      +

      javax.validation:validation-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.validation
      Artifact Idvalidation-api
      Current Version2.0.1.Final
      Scope
      Classifier
      Typejar
      +

      javax.websocket:javax.websocket-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.websocket
      Artifact Idjavax.websocket-api
      Current Version1.1
      Scope
      Classifier
      Typejar
      +

      javax.xml.bind:jaxb-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idjavax.xml.bind
      Artifact Idjaxb-api
      Current Version2.3.1
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0427
      2.4.0-b180830.0359 Latest Minor
      +

      javax.xml.ws:jaxws-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.xml.ws
      Artifact Idjaxws-api
      Current Version2.3.1
      Scope
      Classifier
      Typejar
      +

      jaxen:jaxen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjaxen
      Artifact Idjaxen
      Current Version1.2.0
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-beta-1
      2.0.0 Latest Major
      +

      junit:junit

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjunit
      Artifact Idjunit
      Current Version4.13.2
      Scope
      Classifier
      Typejar
      +

      net.bytebuddy:byte-buddy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.bytebuddy
      Artifact Idbyte-buddy
      Current Version1.12.23
      Scope
      Classifier
      Typejar
      Newer versions1.13.0
      1.14.0
      1.14.1
      1.14.2
      1.14.3
      1.14.4
      1.14.5
      1.14.6
      1.14.7
      1.14.8
      1.14.9
      1.14.10
      1.14.11 Latest Minor
      +

      net.bytebuddy:byte-buddy-agent

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.bytebuddy
      Artifact Idbyte-buddy-agent
      Current Version1.12.23
      Scope
      Classifier
      Typejar
      Newer versions1.13.0
      1.14.0
      1.14.1
      1.14.2
      1.14.3
      1.14.4
      1.14.5
      1.14.6
      1.14.7
      1.14.8
      1.14.9
      1.14.10
      1.14.11 Latest Minor
      +

      net.minidev:json-smart

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.minidev
      Artifact Idjson-smart
      Current Version2.4.11
      Scope
      Classifier
      Typejar
      Newer versions2.5.0 Latest Minor
      +

      net.sf.ehcache:ehcache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.sf.ehcache
      Artifact Idehcache
      Current Version2.10.9.2
      Scope
      Classifier
      Typejar
      +

      net.sourceforge.htmlunit:htmlunit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.sourceforge.htmlunit
      Artifact Idhtmlunit
      Current Version2.60.0
      Scope
      Classifier
      Typejar
      Newer versions2.61.0
      2.62.0
      2.63.0
      2.64.0
      2.65.0
      2.65.1
      2.66.0
      2.67.0
      2.68.0
      2.69.0
      2.70.0 Latest Minor
      +

      net.sourceforge.jtds:jtds

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.sourceforge.jtds
      Artifact Idjtds
      Current Version1.3.1
      Scope
      Classifier
      Typejar
      +

      net.sourceforge.nekohtml:nekohtml

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.sourceforge.nekohtml
      Artifact Idnekohtml
      Current Version1.9.22
      Scope
      Classifier
      Typejar
      +

      nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnz.net.ultraq.thymeleaf
      Artifact Idthymeleaf-layout-dialect
      Current Version3.0.0
      Scope
      Classifier
      Typejar
      Newer versions3.1.0
      3.2.0
      3.2.1
      3.3.0 Latest Minor
      +

      org.apache.activemq:activemq-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-amqp
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-blueprint

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-blueprint
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-broker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-broker
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-camel

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.activemq
      Artifact Idactivemq-camel
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      +

      org.apache.activemq:activemq-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-client
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-console
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-http
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-jaas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-jaas
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-jdbc-store

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-jdbc-store
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-jms-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-jms-pool
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-kahadb-store

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-kahadb-store
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-karaf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-karaf
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-leveldb-store

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.activemq
      Artifact Idactivemq-leveldb-store
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      +

      org.apache.activemq:activemq-log4j-appender

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-log4j-appender
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-mqtt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-mqtt
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-openwire-generator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-openwire-generator
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-openwire-legacy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-openwire-legacy
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-osgi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-osgi
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-partition

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-partition
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      +

      org.apache.activemq:activemq-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-pool
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-ra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-ra
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-run

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-run
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-runtime-config

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-runtime-config
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-shiro

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-shiro
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-spring
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-stomp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-stomp
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-web
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:artemis-amqp-protocol

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-amqp-protocol
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-commons
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-core-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-core-client
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-jdbc-store

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-jdbc-store
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-jms-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-jms-client
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-jms-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-jms-server
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-journal

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-journal
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-quorum-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-quorum-api
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-selector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-selector
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-server
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-service-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-service-extensions
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.commons:commons-dbcp2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.commons
      Artifact Idcommons-dbcp2
      Current Version2.9.0
      Scope
      Classifier
      Typejar
      Newer versions2.10.0
      2.11.0 Latest Minor
      +

      org.apache.commons:commons-lang3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.commons
      Artifact Idcommons-lang3
      Current Version3.12.0
      Scope
      Classifier
      Typejar
      Newer versions3.13.0
      3.14.0 Latest Minor
      +

      org.apache.commons:commons-pool2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.commons
      Artifact Idcommons-pool2
      Current Version2.11.1
      Scope
      Classifier
      Typejar
      Newer versions2.12.0 Latest Minor
      +

      org.apache.derby:derby

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderby
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbyclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbyclient
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbynet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbynet
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbyoptionaltools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbyoptionaltools
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbytools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbytools
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.httpcomponents:fluent-hc

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idfluent-hc
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpasyncclient

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpasyncclient
      Current Version4.1.5
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient-cache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient-cache
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient-osgi

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient-osgi
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient-win

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient-win
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpcore

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpcore
      Current Version4.4.16
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpcore-nio

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpcore-nio
      Current Version4.4.16
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpmime

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpmime
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents.client5:httpclient5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.3-alpha1
      5.3
      5.3.1
      5.4-alpha1 Latest Minor
      +

      org.apache.httpcomponents.client5:httpclient5-cache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5-cache
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.3-alpha1
      5.3
      5.3.1
      5.4-alpha1 Latest Minor
      +

      org.apache.httpcomponents.client5:httpclient5-fluent

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5-fluent
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.3-alpha1
      5.3
      5.3.1
      5.4-alpha1 Latest Minor
      +

      org.apache.httpcomponents.client5:httpclient5-win

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5-win
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3 Latest Minor
      +

      org.apache.httpcomponents.core5:httpcore5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.core5
      Artifact Idhttpcore5
      Current Version5.1.5
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-alpha2
      5.2-beta1
      5.2-beta2
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3-alpha1 Latest Minor
      +

      org.apache.httpcomponents.core5:httpcore5-h2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.core5
      Artifact Idhttpcore5-h2
      Current Version5.1.5
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-alpha2
      5.2-beta1
      5.2-beta2
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3-alpha1 Latest Minor
      +

      org.apache.httpcomponents.core5:httpcore5-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.core5
      Artifact Idhttpcore5-reactive
      Current Version5.1.5
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-alpha2
      5.2-beta1
      5.2-beta2
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3-alpha1 Latest Minor
      +

      org.apache.johnzon:johnzon-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-core
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jaxrs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jaxrs
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jsonb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jsonb
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jsonb-extras

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jsonb-extras
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jsonschema

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jsonschema
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-mapper

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-mapper
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-websocket
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.kafka:connect

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-api
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-basic-auth-extension

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-basic-auth-extension
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-file

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-file
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-json
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-mirror

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-mirror
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-mirror-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-mirror-client
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-runtime
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-transforms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-transforms
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:generator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idgenerator
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-clients

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-clients
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-log4j-appender

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-log4j-appender
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-metadata

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-metadata
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-raft

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-raft
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-server-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-server-common
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-shell

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-shell
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-storage

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-storage
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-storage-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-storage-api
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams-scala_2.12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams-scala_2.12
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams-scala_2.13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams-scala_2.13
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams-test-utils

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams-test-utils
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-tools
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka_2.12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka_2.12
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka_2.13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka_2.13
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:trogdor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idtrogdor
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.logging.log4j:log4j-1.2-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-1.2-api
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-api
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-appserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-appserver
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-cassandra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-cassandra
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-core
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-couchdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-couchdb
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-docker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-docker
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-flume-ng

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-flume-ng
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-iostreams

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-iostreams
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-jcl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jcl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-jmx-gui

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jmx-gui
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.22.0 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jpa
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-jpl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jpl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-jul

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jul
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-kubernetes

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-kubernetes
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-layout-template-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-layout-template-json
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-liquibase

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-liquibase
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-mongodb3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-mongodb3
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-mongodb4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-mongodb4
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-slf4j-impl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-slf4j-impl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-slf4j18-impl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-slf4j18-impl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0 Latest Minor
      +

      org.apache.logging.log4j:log4j-spring-boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-spring-boot
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-spring-cloud-config-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-spring-cloud-config-client
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-taglib

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-taglib
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-to-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-to-slf4j
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-web
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.solr:solr-analysis-extras

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-analysis-extras
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-analytics

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-analytics
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-cell

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-cell
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.solr:solr-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-core
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-dataimporthandler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-dataimporthandler
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.solr:solr-dataimporthandler-extras

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-dataimporthandler-extras
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.solr:solr-gcs-repository

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-gcs-repository
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-jaegertracer-configurator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-jaegertracer-configurator
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-langid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-langid
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-ltr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-ltr
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-prometheus-exporter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-prometheus-exporter
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-s3-repository

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-s3-repository
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-solrj

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-solrj
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-test-framework

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-test-framework
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-velocity

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-velocity
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.tomcat:tomcat-annotations-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat
      Artifact Idtomcat-annotations-api
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat:tomcat-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat
      Artifact Idtomcat-jdbc
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat:tomcat-jsp-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat
      Artifact Idtomcat-jsp-api
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-core
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-el

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-el
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-jasper

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-jasper
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-websocket
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.aspectj:aspectjrt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.aspectj
      Artifact Idaspectjrt
      Current Version1.9.7
      Scope
      Classifier
      Typejar
      Newer versions1.9.8.M1
      1.9.8.RC1
      1.9.8.RC2
      1.9.8.RC3
      1.9.8
      1.9.9
      1.9.9.1
      1.9.19
      1.9.20
      1.9.20.1
      1.9.21.M1
      1.9.21.RC1
      1.9.21 Latest Incremental
      +

      org.aspectj:aspectjtools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.aspectj
      Artifact Idaspectjtools
      Current Version1.9.7
      Scope
      Classifier
      Typejar
      Newer versions1.9.8.M1
      1.9.8.RC1
      1.9.8.RC2
      1.9.8.RC3
      1.9.8
      1.9.9
      1.9.9.1
      1.9.19
      1.9.20
      1.9.20.1
      1.9.21.M1
      1.9.21.RC1
      1.9.21 Latest Incremental
      +

      org.aspectj:aspectjweaver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.aspectj
      Artifact Idaspectjweaver
      Current Version1.9.7
      Scope
      Classifier
      Typejar
      Newer versions1.9.8.M1
      1.9.8.RC1
      1.9.8.RC2
      1.9.8.RC3
      1.9.8
      1.9.9
      1.9.9.1
      1.9.19
      1.9.20
      1.9.20.1
      1.9.21.M1
      1.9.21.RC1
      1.9.21 Latest Incremental
      +

      org.assertj:assertj-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.assertj
      Artifact Idassertj-core
      Current Version3.22.0
      Scope
      Classifier
      Typejar
      Newer versions3.23.0
      3.23.1
      3.24.0
      3.24.1
      3.24.2
      3.25.0
      3.25.1
      3.25.2
      3.25.3 Latest Minor
      +

      org.awaitility:awaitility

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.awaitility:awaitility-groovy

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility-groovy
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.awaitility:awaitility-kotlin

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility-kotlin
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.awaitility:awaitility-scala

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility-scala
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-api
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-config

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-config
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-core
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-jcache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-jcache
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-micrometer

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-micrometer
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-spring

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-spring
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.codehaus.groovy:groovy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-ant

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-ant
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-astbuilder

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-astbuilder
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-bsf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-bsf
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-cli-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-cli-commons
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-cli-picocli

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-cli-picocli
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-console
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-datetime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-datetime
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-dateutil

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-dateutil
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-docgenerator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-docgenerator
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-groovydoc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-groovydoc
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-groovysh

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-groovysh
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-jaxb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-jaxb
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-jmx
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-json
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-jsr223

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-jsr223
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-macro

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-macro
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-nio

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-nio
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-servlet
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-sql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-sql
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-swing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-swing
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-templates

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-templates
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-test
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-test-junit5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-test-junit5
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-testng

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-testng
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-xml
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-yaml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-yaml
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.janino:commons-compiler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.janino
      Artifact Idcommons-compiler
      Current Version3.1.10
      Scope
      Classifier
      Typejar
      Newer versions3.1.11
      3.1.12 Latest Incremental
      +

      org.codehaus.janino:commons-compiler-jdk

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.janino
      Artifact Idcommons-compiler-jdk
      Current Version3.1.10
      Scope
      Classifier
      Typejar
      Newer versions3.1.11
      3.1.12 Latest Incremental
      +

      org.codehaus.janino:janino

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.janino
      Artifact Idjanino
      Current Version3.1.10
      Scope
      Classifier
      Typejar
      Newer versions3.1.11
      3.1.12 Latest Incremental
      +

      org.eclipse.jetty:apache-jsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idapache-jsp
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:apache-jstl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idapache-jstl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0 Latest Major
      +

      org.eclipse.jetty:infinispan-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idinfinispan-common
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:infinispan-embedded-query

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idinfinispan-embedded-query
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:infinispan-remote-query

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idinfinispan-remote-query
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-conscrypt-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-conscrypt-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-conscrypt-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-conscrypt-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-java-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-java-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-java-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-java-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-openjdk8-client

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-openjdk8-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty:jetty-alpn-openjdk8-server

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-openjdk8-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty:jetty-alpn-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-annotations
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-ant

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-ant
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-continuation

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-continuation
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty:jetty-deploy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-deploy
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-distribution

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-distribution
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typezip
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      11.0.0-alpha0
      11.0.0.beta1 Latest Major
      +

      org.eclipse.jetty:jetty-hazelcast

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-hazelcast
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-home

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-home
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typezip
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-http
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-http-spi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-http-spi
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-io

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-io
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-jaas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jaas
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-jaspi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jaspi
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jmx
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-jndi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jndi
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-nosql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-nosql
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-openid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-openid
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-plus

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-plus
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-proxy
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-quickstart

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-quickstart
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-reactive-httpclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-reactive-httpclient
      Current Version1.1.15
      Scope
      Classifier
      Typejar
      Newer versions2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      4.0.0.beta0
      4.0.0.beta1
      4.0.0
      4.0.1
      4.0.2
      4.0.3 Latest Major
      +

      org.eclipse.jetty:jetty-rewrite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-rewrite
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-security
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-servlet
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-servlets

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-servlets
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-spring
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3 Latest Major
      +

      org.eclipse.jetty:jetty-unixsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-unixsocket
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-util

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-util
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-util-ajax

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-util-ajax
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-webapp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-webapp
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-xml
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty.fcgi:fcgi-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.fcgi
      Artifact Idfcgi-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.fcgi:fcgi-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.fcgi
      Artifact Idfcgi-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.gcloud:jetty-gcloud-session-manager

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.gcloud
      Artifact Idjetty-gcloud-session-manager
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty.http2:http2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-common
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-hpack

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-hpack
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-http-client-transport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-http-client-transport
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.memcached:jetty-memcached-sessions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.memcached
      Artifact Idjetty-memcached-sessions
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty.orbit:javax.servlet.jsp

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.orbit
      Artifact Idjavax.servlet.jsp
      Current Version2.2.0.v201112011158
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.osgi:jetty-httpservice

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-httpservice
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.osgi:jetty-osgi-boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-osgi-boot
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.osgi:jetty-osgi-boot-jsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-osgi-boot-jsp
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.osgi:jetty-osgi-boot-warurl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-osgi-boot-warurl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.websocket:javax-websocket-client-impl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idjavax-websocket-client-impl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:javax-websocket-server-impl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idjavax-websocket-server-impl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-api
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-client

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-common

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-common
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-server

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-servlet
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.ehcache:ehcache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ehcache
      Artifact Idehcache
      Current Version3.10.8
      Scope
      Classifier
      Typejar
      +

      org.ehcache:ehcache-clustered

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ehcache
      Artifact Idehcache-clustered
      Current Version3.10.8
      Scope
      Classifier
      Typejar
      +

      org.ehcache:ehcache-transactions

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ehcache
      Artifact Idehcache-transactions
      Current Version3.10.8
      Scope
      Classifier
      Typejar
      +

      org.elasticsearch:elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch
      Artifact Idelasticsearch
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.client:elasticsearch-rest-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idelasticsearch-rest-client
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.client:elasticsearch-rest-client-sniffer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idelasticsearch-rest-client-sniffer
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.client:elasticsearch-rest-high-level-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idelasticsearch-rest-high-level-client
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2 Latest Major
      +

      org.elasticsearch.client:transport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idtransport
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      +

      org.elasticsearch.distribution.integ-test-zip:elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.distribution.integ-test-zip
      Artifact Idelasticsearch
      Current Version7.17.15
      Scope
      Classifier
      Typezip
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.plugin:transport-netty4-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.plugin
      Artifact Idtransport-netty4-client
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      +

      org.firebirdsql.jdbc:jaybird

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idorg.firebirdsql.jdbc
      Artifact Idjaybird
      Current Version4.0.9.java8
      Scope
      Classifier
      Typejar
      Newer versions4.0.9.java11 Latest Subincremental
      4.0.10.java7
      4.0.10.java8
      4.0.10.java11 Latest Incremental
      5.0.0.java8-beta-1
      5.0.0.java8
      5.0.0.java11-beta-1
      5.0.0.java11
      5.0.1.java8
      5.0.1.java11
      5.0.2.java8
      5.0.2.java11
      5.0.3.java8
      5.0.3.java11 Latest Major
      +

      org.firebirdsql.jdbc:jaybird-jdk18

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.firebirdsql.jdbc
      Artifact Idjaybird-jdk18
      Current Version4.0.9.java8
      Scope
      Classifier
      Typejar
      Newer versions4.0.10.java8 Latest Incremental
      +

      org.flywaydb:flyway-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-core
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.flywaydb:flyway-firebird

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-firebird
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.flywaydb:flyway-mysql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-mysql
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.flywaydb:flyway-sqlserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-sqlserver
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.freemarker:freemarker

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.freemarker
      Artifact Idfreemarker
      Current Version2.3.32
      Scope
      Classifier
      Typejar
      +

      org.glassfish:jakarta.el

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.glassfish
      Artifact Idjakarta.el
      Current Version3.0.4
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      5.0.0-M1 Latest Major
      +

      org.glassfish.jaxb:codemodel

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idcodemodel
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:codemodel-annotation-compiler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idcodemodel-annotation-compiler
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:jaxb-jxc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idjaxb-jxc
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:jaxb-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idjaxb-runtime
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:jaxb-xjc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idjaxb-xjc
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:txw2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idtxw2
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:txwc2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idtxwc2
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:xsom

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idxsom
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jersey.bundles:jaxrs-ri

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.bundles
      Artifact Idjaxrs-ri
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-apache-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-apache-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-grizzly-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-grizzly-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-helidon-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-helidon-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-jdk-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-jdk-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-jetty-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-jetty-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-netty-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-netty-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-grizzly2-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-grizzly2-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-grizzly2-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-grizzly2-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-jdk-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-jdk-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-jetty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-jetty-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-jetty-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-jetty-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-netty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-netty-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-servlet-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-servlet-core
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-simple-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-simple-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers.glassfish:jersey-gf-ejb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers.glassfish
      Artifact Idjersey-gf-ejb
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.core:jersey-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.core
      Artifact Idjersey-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.core:jersey-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.core
      Artifact Idjersey-common
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.core:jersey-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.core
      Artifact Idjersey-server
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-bean-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-bean-validation
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-declarative-linking

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-declarative-linking
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-entity-filtering

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-entity-filtering
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-metainf-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-metainf-services
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-bean-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-bean-validation
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-freemarker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-freemarker
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-jsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-jsp
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-mustache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-mustache
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-proxy-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-proxy-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-servlet-portability

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-servlet-portability
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6 Latest Major
      +

      org.glassfish.jersey.ext:jersey-spring4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-spring4
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6 Latest Major
      +

      org.glassfish.jersey.ext:jersey-spring5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-spring5
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6 Latest Major
      +

      org.glassfish.jersey.ext:jersey-wadl-doclet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-wadl-doclet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi-rs-inject

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi-rs-inject
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-ban-custom-hk2-binding

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-ban-custom-hk2-binding
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-transaction

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-transaction
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-validation
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-weld2-se

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-weld2-se
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.microprofile:jersey-mp-config

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.microprofile
      Artifact Idjersey-mp-config
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.microprofile:jersey-mp-rest-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.microprofile
      Artifact Idjersey-mp-rest-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.rx:jersey-rx-client-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.rx
      Artifact Idjersey-rx-client-guava
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.rx
      Artifact Idjersey-rx-client-rxjava
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.rx
      Artifact Idjersey-rx-client-rxjava2
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.inject:jersey-cdi2-se

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.inject
      Artifact Idjersey-cdi2-se
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.inject:jersey-hk2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.inject
      Artifact Idjersey-hk2
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-jaxb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-jaxb
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-binding

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-binding
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-jackson

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-jackson
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-jettison

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-jettison
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-processing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-processing
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-kryo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-kryo
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-moxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-moxy
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-multipart

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-multipart
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-sse

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-sse
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth1-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth1-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth1-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth1-server
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth1-signature

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth1-signature
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth2-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework:jersey-test-framework-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework
      Artifact Idjersey-test-framework-core
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework:jersey-test-framework-util

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework
      Artifact Idjersey-test-framework-util
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-bundle
      Current Version2.35
      Scope
      Classifier
      Typepom
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-external

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-external
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-grizzly2
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-inmemory

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-inmemory
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-jdk-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-jetty
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-simple

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-simple
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.web:jakarta.servlet.jsp.jstl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.glassfish.web
      Artifact Idjakarta.servlet.jsp.jstl
      Current Version1.2.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0
      3.0.0
      3.0.1 Latest Major
      +

      org.hamcrest:hamcrest

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.hamcrest
      Artifact Idhamcrest
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      org.hamcrest:hamcrest-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.hamcrest
      Artifact Idhamcrest-core
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      org.hamcrest:hamcrest-library

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.hamcrest
      Artifact Idhamcrest-library
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      org.hibernate:hibernate-c3p0

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-c3p0
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-core
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-ehcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-ehcache
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7 Latest Major
      +

      org.hibernate:hibernate-entitymanager

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-entitymanager
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7 Latest Major
      +

      org.hibernate:hibernate-envers

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-envers
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-hikaricp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-hikaricp
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-java8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-java8
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7 Latest Major
      +

      org.hibernate:hibernate-jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-jcache
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-jpamodelgen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-jpamodelgen
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-micrometer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-micrometer
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-proxool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-proxool
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-spatial

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-spatial
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-testing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-testing
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-vibur

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-vibur
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate.validator:hibernate-validator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate.validator
      Artifact Idhibernate-validator
      Current Version6.2.5.Final
      Scope
      Classifier
      Typejar
      Newer versions7.0.0.Alpha1
      7.0.0.Alpha2
      7.0.0.Alpha3
      7.0.0.Alpha4
      7.0.0.Alpha5
      7.0.0.Alpha6
      7.0.0.CR1
      7.0.0.Final
      7.0.1.Final
      7.0.2.Final
      7.0.3.Final
      7.0.4.Final
      7.0.5.Final
      8.0.0.Alpha1
      8.0.0.Alpha2
      8.0.0.Alpha3
      8.0.0.CR1
      8.0.0.CR2
      8.0.0.CR3
      8.0.0.Final
      8.0.1.Final Latest Major
      +

      org.hibernate.validator:hibernate-validator-annotation-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate.validator
      Artifact Idhibernate-validator-annotation-processor
      Current Version6.2.5.Final
      Scope
      Classifier
      Typejar
      Newer versions7.0.0.Alpha1
      7.0.0.Alpha2
      7.0.0.Alpha3
      7.0.0.Alpha4
      7.0.0.Alpha5
      7.0.0.Alpha6
      7.0.0.CR1
      7.0.0.Final
      7.0.1.Final
      7.0.2.Final
      7.0.3.Final
      7.0.4.Final
      7.0.5.Final
      8.0.0.Alpha1
      8.0.0.Alpha2
      8.0.0.Alpha3
      8.0.0.CR1
      8.0.0.CR2
      8.0.0.CR3
      8.0.0.Final
      8.0.1.Final Latest Major
      +

      org.hsqldb:hsqldb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.hsqldb
      Artifact Idhsqldb
      Current Version2.5.2
      Scope
      Classifier
      Typejar
      Newer versions2.6.0
      2.6.1
      2.7.0
      2.7.1
      2.7.2 Latest Minor
      +

      org.infinispan:infinispan-anchored-keys

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-anchored-keys
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-api
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-jdbc
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-jpa
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.Dev01
      14.0.0.Dev02 Latest Major
      +

      org.infinispan:infinispan-cachestore-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-rocksdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-rocksdb
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-sql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-sql
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cdi-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cdi-common
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cdi-embedded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cdi-embedded
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cdi-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cdi-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-checkstyle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-checkstyle
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cli-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cli-client
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-client-hotrod

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-client-hotrod
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-client-rest

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-client-rest
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cloudevents-integration

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cloudevents-integration
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-clustered-counter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-clustered-counter
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-clustered-lock

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-clustered-lock
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-commons
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-commons-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-commons-test
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-component-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-component-annotations
      Current Version13.0.20.Final
      Scopeprovided
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-component-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-component-processor
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-console
      Current Version0.15.5.Final
      Scope
      Classifier
      Typejar
      Newer versions14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      15.0.0.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05 Latest Major
      +

      org.infinispan:infinispan-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-extended-statistics

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-extended-statistics
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-hibernate-cache-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-hibernate-cache-commons
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-hibernate-cache-spi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-hibernate-cache-spi
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-hibernate-cache-v53

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-hibernate-cache-v53
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.Dev01
      14.0.0.Dev02 Latest Major
      +

      org.infinispan:infinispan-jboss-marshalling

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jboss-marshalling
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jcache
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-jcache-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jcache-commons
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-jcache-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jcache-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-key-value-store-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-key-value-store-client
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-marshaller-kryo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-kryo
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-marshaller-kryo-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-kryo-bundle
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-marshaller-protostuff

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-protostuff
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-marshaller-protostuff-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-protostuff-bundle
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-multimap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-multimap
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-objectfilter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-objectfilter
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-query

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-query
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-query-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-query-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-query-dsl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-query-dsl
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-remote-query-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-remote-query-client
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-remote-query-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-remote-query-server
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-scripting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-scripting
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-hotrod

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-hotrod
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-memcached

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-memcached
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-rest

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-rest
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-router

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-router
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-runtime
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-testdriver-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-testdriver-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-testdriver-junit4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-testdriver-junit4
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-testdriver-junit5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-testdriver-junit5
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-spring-boot-starter-embedded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring-boot-starter-embedded
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring-boot-starter-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring-boot-starter-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring5-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring5-common
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring5-embedded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring5-embedded
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring5-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring5-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-tasks

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-tasks
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-tasks-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-tasks-api
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-tools
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan.protostream:protostream

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.infinispan.protostream
      Artifact Idprotostream
      Current Version4.4.4.Final
      Scope
      Classifier
      Typejar
      Newer versions4.5.0.CR1
      4.5.0.Final
      4.5.0.Dev01
      4.5.0.Dev02
      4.5.0.Dev03
      4.5.0.Dev04
      4.5.0.Dev05
      4.5.1.Final
      4.6.0.Final
      4.6.1.Final
      4.6.2.Final
      4.6.3.Final
      4.6.4.Final
      4.6.5.Final Latest Minor
      5.0.0.Dev01
      14.0.0.CR2 Latest Major
      +

      org.infinispan.protostream:protostream-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.infinispan.protostream
      Artifact Idprotostream-processor
      Current Version4.4.4.Final
      Scopeprovided
      Classifier
      Typejar
      Newer versions4.5.0.CR1
      4.5.0.Final
      4.5.0.Dev01
      4.5.0.Dev02
      4.5.0.Dev03
      4.5.0.Dev04
      4.5.0.Dev05
      4.5.1.Final
      4.6.0.Final
      4.6.1.Final
      4.6.2.Final
      4.6.3.Final
      4.6.4.Final
      4.6.5.Final Latest Minor
      5.0.0.Dev01
      14.0.0.CR2 Latest Major
      +

      org.infinispan.protostream:protostream-types

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.infinispan.protostream
      Artifact Idprotostream-types
      Current Version4.4.4.Final
      Scope
      Classifier
      Typejar
      Newer versions4.5.0.CR1
      4.5.0.Final
      4.5.0.Dev01
      4.5.0.Dev02
      4.5.0.Dev03
      4.5.0.Dev04
      4.5.0.Dev05
      4.5.1.Final
      4.6.0.Final
      4.6.1.Final
      4.6.2.Final
      4.6.3.Final
      4.6.4.Final
      4.6.5.Final Latest Minor
      5.0.0.Dev01
      14.0.0.CR2 Latest Major
      +

      org.influxdb:influxdb-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.influxdb
      Artifact Idinfluxdb-java
      Current Version2.22
      Scope
      Classifier
      Typejar
      Newer versions2.23
      2.24 Latest Minor
      +

      org.jboss.logging:jboss-logging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jboss.logging
      Artifact Idjboss-logging
      Current Version3.4.3.Final
      Scope
      Classifier
      Typejar
      Newer versions3.5.0.Final
      3.5.1.Final
      3.5.2.Final
      3.5.3.Final Latest Minor
      +

      org.jdom:jdom2

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.jdom
      Artifact Idjdom2
      Current Version2.0.6.1
      Scope
      Classifier
      Typejar
      +

      org.jetbrains.kotlin:kotlin-compiler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-compiler
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-compiler-embeddable

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-compiler-embeddable
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-daemon-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-daemon-client
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-main-kts

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-main-kts
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-osgi-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-osgi-bundle
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-reflect

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-reflect
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-script-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-script-runtime
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-script-util

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-script-util
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22 Latest Minor
      +

      org.jetbrains.kotlin:kotlin-scripting-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-scripting-ide-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-ide-services
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-scripting-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-jvm
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-scripting-jvm-host

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-jvm-host
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-jdk7

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-jdk7
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-jdk8
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-js

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-js
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-annotations-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-annotations-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-js

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-js
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-junit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-junit
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-junit5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-junit5
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-testng

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-testng
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-android

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-android
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-core
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-core-jvm
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-debug
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-guava
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-javafx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-javafx
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-jdk8
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-jdk9

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-jdk9
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-play-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-play-services
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-reactive
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-reactor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-reactor
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-rx2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-rx2
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-rx3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-rx3
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-slf4j
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-swing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-swing
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-test
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-test-jvm
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jolokia:jolokia-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.jolokia
      Artifact Idjolokia-core
      Current Version1.7.2
      Scope
      Classifier
      Typejar
      +

      org.jooq:jooq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.jooq:jooq-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq-codegen
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.jooq:jooq-kotlin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq-kotlin
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.jooq:jooq-meta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq-meta
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.junit.jupiter:junit-jupiter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-api
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-engine
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-migrationsupport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-migrationsupport
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-params

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-params
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-commons
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-console
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-engine
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-jfr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-jfr
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-launcher

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-launcher
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-reporting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-reporting
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-runner

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-runner
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite-api
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite-commons
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite-engine
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-testkit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-testkit
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.vintage:junit-vintage-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.vintage
      Artifact Idjunit-vintage-engine
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.liquibase:liquibase-cdi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.liquibase
      Artifact Idliquibase-cdi
      Current Version4.9.1
      Scope
      Classifier
      Typejar
      Newer versions4.10.0
      4.11.0
      4.12.0
      4.13.0
      4.14.0
      4.15.0
      4.16.0
      4.16.1
      4.17.0
      4.17.1
      4.17.2
      4.18.0
      4.19.0
      4.19.1
      4.20.0
      4.21.0
      4.21.1
      4.22.0
      4.23.0
      4.23.1
      4.23.2
      4.24.0
      4.25.0
      4.25.1
      4.26.0 Latest Minor
      +

      org.liquibase:liquibase-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.liquibase
      Artifact Idliquibase-core
      Current Version4.9.1
      Scope
      Classifier
      Typejar
      Newer versions4.10.0
      4.11.0
      4.12.0
      4.13.0
      4.14.0
      4.15.0
      4.16.0
      4.16.1
      4.17.0
      4.17.1
      4.17.2
      4.18.0
      4.19.0
      4.19.1
      4.20.0
      4.21.0
      4.21.1
      4.22.0
      4.23.0
      4.23.1
      4.23.2
      4.24.0
      4.25.0
      4.25.1
      4.26.0 Latest Minor
      +

      org.mariadb:r2dbc-mariadb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.mariadb
      Artifact Idr2dbc-mariadb
      Current Version1.1.2
      Scope
      Classifier
      Typejar
      Newer versions1.1.3
      1.1.4 Latest Incremental
      +

      org.mariadb.jdbc:mariadb-java-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mariadb.jdbc
      Artifact Idmariadb-java-client
      Current Version3.1.4
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.3.0
      3.3.1
      3.3.2 Latest Minor
      +

      org.messaginghub:pooled-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.messaginghub
      Artifact Idpooled-jms
      Current Version1.2.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      3.0.0
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.mockito:mockito-android

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-android
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-core
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-errorprone

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-errorprone
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-inline

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-inline
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0 Latest Major
      +

      org.mockito:mockito-junit-jupiter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-junit-jupiter
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-proxy
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mongodb:bson

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idbson
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:bson-record-codec

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idbson-record-codec
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-core
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-legacy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-legacy
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-reactivestreams

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-reactivestreams
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-sync

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-sync
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mortbay.jasper:apache-el

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.mortbay.jasper
      Artifact Idapache-el
      Current Version9.0.52
      Scope
      Classifier
      Typejar
      Newer versions9.0.83
      9.0.83.1 Latest Incremental
      10.0.0-M5
      10.0.0-M7
      10.0.0-M10
      10.0.0-1-M7
      10.0.2
      10.0.7
      10.0.10
      10.0.14
      10.0.27
      10.1.0-M16
      10.1.1
      10.1.5
      10.1.7
      10.1.16 Latest Major
      +

      org.mybatis:mybatis

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis
      Artifact Idmybatis
      Current Version3.5.15
      Scope
      Classifier
      Typejar
      +

      org.mybatis:mybatis-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.mybatis
      Artifact Idmybatis-spring
      Current Version2.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      org.mybatis.dynamic-sql:mybatis-dynamic-sql

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.dynamic-sql
      Artifact Idmybatis-dynamic-sql
      Current Version1.5.0
      Scope
      Classifier
      Typejar
      +

      org.mybatis.scripting:mybatis-freemarker

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.scripting
      Artifact Idmybatis-freemarker
      Current Version1.2.4
      Scope
      Classifier
      Typejar
      +

      org.mybatis.scripting:mybatis-thymeleaf

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.scripting
      Artifact Idmybatis-thymeleaf
      Current Version1.0.4
      Scope
      Classifier
      Typejar
      +

      org.mybatis.scripting:mybatis-velocity

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.scripting
      Artifact Idmybatis-velocity
      Current Version2.1.2
      Scope
      Classifier
      Typejar
      +

      org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.mybatis.spring.boot
      Artifact Idmybatis-spring-boot-autoconfigure
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      org.mybatis.spring.boot:mybatis-spring-boot-starter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.mybatis.spring.boot
      Artifact Idmybatis-spring-boot-starter
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      org.mybatis.spring.native:mybatis-spring-native-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.spring.native
      Artifact Idmybatis-spring-native-core
      Current Version0.1.0-SNAPSHOT
      Scope
      Classifier
      Typejar
      +

      org.mybatis.spring.native:mybatis-spring-native-extensions

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.spring.native
      Artifact Idmybatis-spring-native-extensions
      Current Version0.1.0-SNAPSHOT
      Scope
      Classifier
      Typejar
      +

      org.neo4j.driver:neo4j-java-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.neo4j.driver
      Artifact Idneo4j-java-driver
      Current Version4.4.12
      Scope
      Classifier
      Typejar
      Newer versions4.4.13 Latest Incremental
      5.0.0-alpha01
      5.0.0-alpha02
      5.0.0-alpha03
      5.0.0-beta01
      5.0.0
      5.1.0
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0
      5.11.0
      5.12.0
      5.13.0
      5.14.0
      5.15.0
      5.16.0
      5.17.0 Latest Major
      +

      org.postgresql:postgresql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.postgresql
      Artifact Idpostgresql
      Current Version42.3.8
      Scope
      Classifier
      Typejar
      Newer versions42.4.0
      42.4.1
      42.4.2
      42.4.3
      42.5.0
      42.5.1
      42.5.2
      42.5.3
      42.5.4
      42.6.0
      42.7.0
      42.7.1 Latest Minor
      +

      org.postgresql:r2dbc-postgresql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.postgresql
      Artifact Idr2dbc-postgresql
      Current Version0.9.2.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions0.9.3.RELEASE Latest Incremental
      1.0.0.RC1
      1.0.0.RELEASE
      1.0.1.RELEASE
      1.0.2.RELEASE
      1.0.3.RELEASE
      1.0.4.RELEASE Latest Major
      +

      org.projectlombok:lombok

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.projectlombok
      Artifact Idlombok
      Current Version1.18.30
      Scope
      Classifier
      Typejar
      +

      org.quartz-scheduler:quartz

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.quartz-scheduler
      Artifact Idquartz
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-rc1
      2.4.0-rc2
      2.5.0-rc1 Latest Minor
      +

      org.quartz-scheduler:quartz-jobs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.quartz-scheduler
      Artifact Idquartz-jobs
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-rc1
      2.4.0-rc2
      2.5.0-rc1 Latest Minor
      +

      org.reactivestreams:reactive-streams

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.reactivestreams
      Artifact Idreactive-streams
      Current Version1.0.4
      Scope
      Classifier
      Typejar
      +

      org.seleniumhq.selenium:htmlunit-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idhtmlunit-driver
      Current Version3.61.0
      Scope
      Classifier
      Typejar
      Newer versions3.62.0
      3.63.0
      3.64.0 Latest Minor
      4.5.0
      4.5.2
      4.6.0
      4.7.0
      4.7.2
      4.8.0
      4.8.1
      4.8.1.1
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.13.0 Latest Major
      +

      org.seleniumhq.selenium:lift

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idlift
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-api
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-chrome-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-chrome-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-chromium-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-chromium-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v100

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v100
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v101

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v101
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v85

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v85
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v99

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v99
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      +

      org.seleniumhq.selenium:selenium-edge-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-edge-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-firefox-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-firefox-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-grid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-grid
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-http
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-ie-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-ie-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-java
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-json
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-opera-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-opera-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-remote-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-remote-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-safari-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-safari-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-session-map-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-session-map-jdbc
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-session-map-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-session-map-redis
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-support
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.skyscreamer:jsonassert

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.skyscreamer
      Artifact Idjsonassert
      Current Version1.5.1
      Scope
      Classifier
      Typejar
      +

      org.slf4j:jcl-over-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idjcl-over-slf4j
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:jul-to-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idjul-to-slf4j
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:log4j-over-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idlog4j-over-slf4j
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-api
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-ext

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-ext
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-jcl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.slf4j
      Artifact Idslf4j-jcl
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      +

      org.slf4j:slf4j-jdk14

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-jdk14
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-log4j12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-log4j12
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-nop

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-nop
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-simple

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-simple
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.springframework:spring-aop

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-aop
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-aspects

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-aspects
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-beans

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-beans
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-context

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-context
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-context-indexer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-context-indexer
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-context-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-context-support
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-core
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-expression

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-expression
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-instrument

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-instrument
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-jcl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-jcl
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-jdbc
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-jms
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-messaging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-messaging
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-orm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-orm
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-oxm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-oxm
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-r2dbc
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-test
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-tx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-tx
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-web
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-webflux

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-webflux
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-webmvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-webmvc
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-websocket
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework.amqp:spring-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-amqp
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit-junit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit-junit
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit-stream

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit-stream
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit-test
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.batch:spring-batch-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-core
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.batch:spring-batch-infrastructure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-infrastructure
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.batch:spring-batch-integration

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-integration
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.batch:spring-batch-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-test
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.boot:spring-boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-actuator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-actuator
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-actuator-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-actuator-autoconfigure
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-autoconfigure
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-autoconfigure-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-autoconfigure-processor
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-buildpack-platform

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-buildpack-platform
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-configuration-metadata

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-configuration-metadata
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-configuration-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-configuration-processor
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-devtools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-devtools
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-jarmode-layertools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-jarmode-layertools
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-loader

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-loader
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-loader-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-loader-tools
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-properties-migrator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-properties-migrator
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-activemq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-activemq
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-actuator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-actuator
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-amqp
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-aop

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-aop
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-artemis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-artemis
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-batch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-batch
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-cache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-cache
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-cassandra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-cassandra
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-cassandra-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-cassandra-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-couchbase

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-couchbase
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-couchbase-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-couchbase-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-elasticsearch
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-jdbc
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-jpa
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-ldap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-ldap
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-mongodb
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-mongodb-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-mongodb-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-neo4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-neo4j
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-r2dbc
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-redis
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-redis-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-redis-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-rest

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-rest
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-freemarker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-freemarker
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-graphql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-graphql
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-groovy-templates

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-groovy-templates
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-hateoas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-hateoas
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-integration

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-integration
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jdbc
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jersey

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jersey
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jetty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jetty
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jooq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jooq
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-json
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jta-atomikos

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jta-atomikos
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      +

      org.springframework.boot:spring-boot-starter-log4j2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-log4j2
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-logging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-logging
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-mail

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-mail
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-mustache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-mustache
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-oauth2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-oauth2-client
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-oauth2-resource-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-oauth2-resource-server
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-quartz

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-quartz
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-reactor-netty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-reactor-netty
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-rsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-rsocket
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-security
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-test
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-thymeleaf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-thymeleaf
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-tomcat

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-tomcat
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-undertow

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-undertow
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-validation
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-web
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-web-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-web-services
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-webflux

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-webflux
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-websocket
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-test
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-test-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-test-autoconfigure
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.data:spring-data-cassandra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-cassandra
      Current Version3.4.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-commons
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-couchbase

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-couchbase
      Current Version4.4.18
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      5.0.10
      5.0.11
      5.0.12
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0
      5.1.1
      5.1.2
      5.1.3
      5.1.4
      5.1.5
      5.1.6
      5.1.7
      5.1.8
      5.2.0-M1
      5.2.0-M2
      5.2.0-M3
      5.2.0-RC1
      5.2.0
      5.2.1
      5.2.2 Latest Major
      +

      org.springframework.data:spring-data-elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-elasticsearch
      Current Version4.4.18
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      5.0.10
      5.0.11
      5.0.12
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0
      5.1.1
      5.1.2
      5.1.3
      5.1.4
      5.1.5
      5.1.6
      5.1.7
      5.1.8
      5.2.0-M1
      5.2.0-M2
      5.2.0-M3
      5.2.0-RC1
      5.2.0
      5.2.1
      5.2.2 Latest Major
      +

      org.springframework.data:spring-data-envers

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-envers
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-geode

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-geode
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6 Latest Major
      +

      org.springframework.data:spring-data-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-jdbc
      Current Version2.4.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-jpa
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-keyvalue

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-keyvalue
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-ldap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-ldap
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-mongodb
      Current Version3.4.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-neo4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-neo4j
      Current Version6.3.18
      Scope
      Classifier
      Typejar
      Newer versions7.0.0-M1
      7.0.0-M2
      7.0.0-M3
      7.0.0-M4
      7.0.0-M5
      7.0.0-M6
      7.0.0-RC1
      7.0.0-RC2
      7.0.0
      7.0.1
      7.0.2
      7.0.3
      7.0.4
      7.0.5
      7.0.6
      7.0.7
      7.0.8
      7.0.9
      7.0.10
      7.0.11
      7.0.12
      7.1.0-M1
      7.1.0-M2
      7.1.0-M3
      7.1.0-RC1
      7.1.0
      7.1.1
      7.1.2
      7.1.3
      7.1.4
      7.1.5
      7.1.6
      7.1.7
      7.1.8
      7.2.0-M1
      7.2.0-M2
      7.2.0-M3
      7.2.0-RC1
      7.2.0
      7.2.1
      7.2.2 Latest Major
      +

      org.springframework.data:spring-data-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-r2dbc
      Current Version1.5.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-redis
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-relational

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-relational
      Current Version2.4.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-rest-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-rest-core
      Current Version3.7.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-rest-hal-explorer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-rest-hal-explorer
      Current Version3.7.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-rest-webmvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-rest-webmvc
      Current Version3.7.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.experimental:spring-aot

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.experimental
      Artifact Idspring-aot
      Current Version0.12.2
      Scope
      Classifier
      Typejar
      +

      org.springframework.experimental:spring-native

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.experimental
      Artifact Idspring-native
      Current Version0.12.2
      Scope
      Classifier
      Typejar
      +

      org.springframework.graphql:spring-graphql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.graphql
      Artifact Idspring-graphql
      Current Version1.0.6
      Scope
      Classifier
      Typejar
      Newer versions1.1.0-M1
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.2.0-M1
      1.2.0-RC1
      1.2.0
      1.2.1
      1.2.2
      1.2.3
      1.2.4 Latest Minor
      +

      org.springframework.graphql:spring-graphql-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.graphql
      Artifact Idspring-graphql-test
      Current Version1.0.6
      Scope
      Classifier
      Typejar
      Newer versions1.1.0-M1
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.2.0-M1
      1.2.0-RC1
      1.2.0
      1.2.1
      1.2.2
      1.2.3
      1.2.4 Latest Minor
      +

      org.springframework.hateoas:spring-hateoas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.hateoas
      Artifact Idspring-hateoas
      Current Version1.5.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0-M2
      2.0.0-M3
      2.0.0-M4
      2.0.0-M5
      2.0.0-M6
      2.0.0-RC1
      2.0.0-RC2
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.1.0-M1
      2.1.0-RC1
      2.1.0
      2.1.1
      2.1.2
      2.1.3
      2.2.0-M1
      2.2.0-M2
      2.2.0-RC1
      2.2.0 Latest Major
      +

      org.springframework.integration:spring-integration-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-amqp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-core
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-event

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-event
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-feed

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-feed
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-file

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-file
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-ftp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-ftp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-gemfire

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-gemfire
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5 Latest Major
      +

      org.springframework.integration:spring-integration-groovy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-groovy
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-http
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-ip

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-ip
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jdbc
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jms
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jmx
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jpa
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-kafka

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-kafka
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-mail

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-mail
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-mongodb
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-mqtt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-mqtt
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-r2dbc
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-redis
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-rmi

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-rmi
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      +

      org.springframework.integration:spring-integration-rsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-rsocket
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-scripting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-scripting
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-security
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-sftp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-sftp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-stomp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-stomp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-stream

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-stream
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-syslog

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-syslog
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-test
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-test-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-test-support
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-webflux

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-webflux
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-websocket
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-ws

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-ws
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-xml
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-xmpp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-xmpp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-zeromq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-zeromq
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-zookeeper

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-zookeeper
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.kafka:spring-kafka

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.kafka
      Artifact Idspring-kafka
      Current Version2.8.11
      Scope
      Classifier
      Typejar
      Newer versions2.9.0-M1
      2.9.0-RC1
      2.9.0
      2.9.1
      2.9.2
      2.9.3
      2.9.4
      2.9.5
      2.9.6
      2.9.7
      2.9.8
      2.9.9
      2.9.10
      2.9.11
      2.9.12
      2.9.13 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.kafka:spring-kafka-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.kafka
      Artifact Idspring-kafka-test
      Current Version2.8.11
      Scope
      Classifier
      Typejar
      Newer versions2.9.0-M1
      2.9.0-RC1
      2.9.0
      2.9.1
      2.9.2
      2.9.3
      2.9.4
      2.9.5
      2.9.6
      2.9.7
      2.9.8
      2.9.9
      2.9.10
      2.9.11
      2.9.12
      2.9.13 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-core
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-core-tiger

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-core-tiger
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1 Latest Major
      +

      org.springframework.ldap:spring-ldap-ldif-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-ldif-core
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-odm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-odm
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-test
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-asciidoctor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-asciidoctor
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-core
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-mockmvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-mockmvc
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-restassured

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-restassured
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-webtestclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-webtestclient
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.retry:spring-retry

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.retry
      Artifact Idspring-retry
      Current Version1.3.4
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0-RC1
      2.0.0-RC2
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5 Latest Major
      +

      org.springframework.security:spring-security-acl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-acl
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-aspects

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-aspects
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-cas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-cas
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-config

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-config
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-core
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-crypto

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-crypto
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-data

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-data
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-ldap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-ldap
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-messaging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-messaging
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-client
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-core
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-jose

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-jose
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-resource-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-resource-server
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-openid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-openid
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1 Latest Major
      +

      org.springframework.security:spring-security-remoting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-remoting
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      +

      org.springframework.security:spring-security-rsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-rsocket
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-saml2-service-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-saml2-service-provider
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-taglibs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-taglibs
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-test
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-web
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-core
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-data-geode

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-data-geode
      Current Version2.7.1
      Scope
      Classifier
      Typejar
      Newer versions2.7.2 Latest Incremental
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5 Latest Major
      +

      org.springframework.session:spring-session-data-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-data-mongodb
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-data-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-data-redis
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-hazelcast

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-hazelcast
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-jdbc
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.ws:spring-ws-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-core
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-ws-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-security
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-ws-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-support
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-ws-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-test
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-xml
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.thymeleaf:thymeleaf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.thymeleaf
      Artifact Idthymeleaf
      Current Version3.0.15.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.1.0.M1
      3.1.0.M2
      3.1.0.M3
      3.1.0.RC1
      3.1.0.RC2
      3.1.0.RELEASE
      3.1.1.RELEASE
      3.1.2.RELEASE Latest Minor
      +

      org.thymeleaf:thymeleaf-spring5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.thymeleaf
      Artifact Idthymeleaf-spring5
      Current Version3.0.15.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.1.0.M1
      3.1.0.M2
      3.1.0.M3
      3.1.0.RC1
      3.1.0.RC2
      3.1.0.RELEASE
      3.1.1.RELEASE
      3.1.2.RELEASE Latest Minor
      +

      org.thymeleaf.extras:thymeleaf-extras-java8time

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.thymeleaf.extras
      Artifact Idthymeleaf-extras-java8time
      Current Version3.0.4.RELEASE
      Scope
      Classifier
      Typejar
      +

      org.thymeleaf.extras:thymeleaf-extras-springsecurity5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.thymeleaf.extras
      Artifact Idthymeleaf-extras-springsecurity5
      Current Version3.0.5.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.1.0.M1
      3.1.0.RC1
      3.1.0.RC2
      3.1.0.RELEASE
      3.1.1.RELEASE
      3.1.2.RELEASE Latest Minor
      +

      org.webjars:webjars-locator-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.webjars
      Artifact Idwebjars-locator-core
      Current Version0.50
      Scope
      Classifier
      Typejar
      Newer versions0.51
      0.52
      0.53
      0.54
      0.55 Latest Minor
      +

      org.xerial:sqlite-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.xerial
      Artifact Idsqlite-jdbc
      Current Version3.36.0.3
      Scope
      Classifier
      Typejar
      Newer versions3.39.2.0
      3.39.2.1
      3.39.3.0
      3.39.4.0
      3.39.4.1
      3.40.0.0
      3.40.1.0
      3.41.0.0
      3.41.0.1
      3.41.2.0
      3.41.2.1
      3.41.2.2
      3.42.0.0
      3.42.0.1
      3.43.0.0
      3.43.2.0
      3.43.2.1
      3.43.2.2
      3.44.0.0
      3.44.1.0
      3.45.0.0
      3.45.1.0 Latest Minor
      +

      org.xmlunit:xmlunit-assertj

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-assertj
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-assertj3

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-assertj3
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-core
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-legacy

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-legacy
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-matchers

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-matchers
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-placeholders

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-placeholders
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.yaml:snakeyaml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.yaml
      Artifact Idsnakeyaml
      Current Version1.30
      Scope
      Classifier
      Typejar
      Newer versions1.31
      1.32
      1.33 Latest Minor
      2.0
      2.1
      2.2 Latest Major
      +

      redis.clients:jedis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idredis.clients
      Artifact Idjedis
      Current Version3.8.0
      Scope
      Classifier
      Typejar
      Newer versions3.9.0
      3.10.0 Latest Minor
      4.0.0-beta1
      4.0.0-beta2
      4.0.0-beta3
      4.0.0-beta4
      4.0.0-RC1
      4.0.0-rc2
      4.0.0
      4.0.1
      4.1.0
      4.1.1
      4.2.0-m1
      4.2.0-rc1
      4.2.0
      4.2.1
      4.2.2
      4.2.3
      4.3.0-m1
      4.3.0-m2
      4.3.0
      4.3.1
      4.3.2
      4.4.0-m1
      4.4.0-m2
      4.4.0-rc1
      4.4.0
      4.4.1
      4.4.2
      4.4.3
      4.4.4
      4.4.5
      4.4.6
      5.0.0-alpha1
      5.0.0-alpha2
      5.0.0-beta1
      5.0.0-beta2
      5.0.0
      5.0.1
      5.0.2
      5.1.0
      5.2.0-alpha2 Latest Major
      +

      wsdl4j:wsdl4j

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idwsdl4j
      Artifact Idwsdl4j
      Current Version1.6.3
      Scope
      Classifier
      Typejar
      +
      +
      +
      +
      + + + + diff --git a/ko/dependency-updates-report.html b/ko/dependency-updates-report.html new file mode 100644 index 0000000..2ebfac8 --- /dev/null +++ b/ko/dependency-updates-report.html @@ -0,0 +1,44132 @@ + + + + + + + + + + mybatis-spring-native-docs – Dependency Updates Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's various dependencies.

      + + + + + + + + + + + + + + + + + + + + + +
      # of dependencies using the latest version available101
      # of dependencies where the next version available is smaller than an incremental version update3
      # of dependencies where the next version available is an incremental version update214
      # of dependencies where the next version available is a minor version update535
      # of dependencies where the next version available is a major version update313
      +

      Dependency Management

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      antlrantlr2.7.7jar20030911
      ch.qos.logbacklogback-access1.2.12jar1.2.131.4.14
      ch.qos.logbacklogback-classic1.2.12jar1.2.131.4.14
      ch.qos.logbacklogback-core1.2.12jar1.2.131.4.14
      com.atomikostransactions-jdbc4.0.6jar6.0.0
      com.atomikostransactions-jms4.0.6jar6.0.0
      com.atomikostransactions-jta4.0.6jar6.0.0
      com.couchbase.clientjava-client3.3.4jar3.5.3
      com.datastax.ossjava-driver-core4.14.1jar4.17.0
      com.datastax.ossjava-driver-core-shaded4.14.1jar4.17.0
      com.datastax.ossjava-driver-mapper-processor4.14.1jar4.17.0
      com.datastax.ossjava-driver-mapper-runtime4.14.1jar4.17.0
      com.datastax.ossjava-driver-metrics-micrometer4.14.1jar4.17.0
      com.datastax.ossjava-driver-metrics-microprofile4.14.1jar4.17.0
      com.datastax.ossjava-driver-query-builder4.14.1jar4.17.0
      com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1jar
      com.datastax.ossjava-driver-test-infra4.14.1jar4.17.0
      com.datastax.ossnative-protocol1.5.1jar
      com.fasterxmlclassmate1.5.1jar1.7.0
      com.fasterxml.jackson.corejackson-annotations2.13.5jar2.16.1
      com.fasterxml.jackson.corejackson-core2.13.5jar2.16.1
      com.fasterxml.jackson.corejackson-databind2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5jar2.16.1
      com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5jar2.16.1
      com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-all2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-objects2.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5jar2.16.1
      com.fasterxml.jackson.jrjackson-jr-stree2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-afterburner2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-blackbird2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-guice2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-kotlin2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-mrbean2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-osgi2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-paranamer2.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5jar2.16.1
      com.fasterxml.jackson.modulejackson-module-scala_32.13.5jar2.16.1
      com.github.ben-manes.caffeinecaffeine2.9.3jar3.1.8
      com.github.ben-manes.caffeineguava2.9.3jar3.1.8
      com.github.ben-manes.caffeinejcache2.9.3jar3.1.8
      com.github.ben-manes.caffeinesimulator2.9.3jar3.1.8
      com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1jar
      com.google.appengineappengine-api-1.0-sdk1.9.98jar2.0.24
      com.google.code.gsongson2.9.1jar2.10.1
      com.graphql-javagraphql-java18.5jar18.7230521-nf-execution
      com.h2databaseh22.1.214jar2.2.224
      com.hazelcasthazelcast5.1.7jar5.3.6
      com.hazelcasthazelcast-hibernate522.2.1jar
      com.hazelcasthazelcast-hibernate532.2.1jar2.3.05.1.0
      com.hazelcasthazelcast-spring5.1.7jar5.3.6
      com.ibm.db2jcc11.5.9.0jar
      com.jayway.jsonpathjson-path2.7.0jar2.9.0
      com.jayway.jsonpathjson-path-assert2.7.0jar2.9.0
      com.microsoft.sqlservermssql-jdbc10.2.3.jre8jar10.2.3.jre1712.6.0.jre11
      com.mysqlmysql-connector-j8.0.33jar8.3.0
      com.oracle.database.haons21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.hasimplefan21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc1121.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc11-production21.5.0.0pom21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc821.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcojdbc8-production21.5.0.0pom21.11.0.023.3.0.23.09
      com.oracle.database.jdbcrsi21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcucp21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbcucp1121.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc11_g21.5.0.0jar21.11.0.0
      com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0jar21.11.0.0
      com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0pom21.11.0.0
      com.oracle.database.jdbc.debugojdbc8_g21.5.0.0jar21.11.0.0
      com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0jar21.11.0.0
      com.oracle.database.nlsorai18n21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.observabilitydms21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.observabilityojdbc11-observability21.5.0.0pom21.11.0.0
      com.oracle.database.observabilityojdbc11dms21.5.0.0jar21.11.0.0
      com.oracle.database.observabilityojdbc8-observability21.5.0.0pom21.11.0.0
      com.oracle.database.observabilityojdbc8dms21.5.0.0jar21.11.0.0
      com.oracle.database.r2dbcoracle-r2dbc0.4.0jar1.2.0
      com.oracle.database.securityoraclepki21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.securityosdt_cert21.5.0.0jar21.11.0.0
      com.oracle.database.securityosdt_core21.5.0.0jar21.11.0.0
      com.oracle.database.xmlxdb21.5.0.0jar21.11.0.023.3.0.23.09
      com.oracle.database.xmlxmlparserv221.5.0.0jar21.11.0.023.3.0.23.09
      com.querydslquerydsl-apt5.0.0jar5.1.0
      com.querydslquerydsl-codegen5.0.0jar5.1.0
      com.querydslquerydsl-codegen-utils5.0.0jar
      com.querydslquerydsl-collections5.0.0jar5.1.0
      com.querydslquerydsl-core5.0.0jar5.1.0
      com.querydslquerydsl-guava5.0.0jar5.1.0
      com.querydslquerydsl-hibernate-search5.0.0jar5.1.0
      com.querydslquerydsl-jdo5.0.0jar5.1.0
      com.querydslquerydsl-jpa5.0.0jar5.1.0
      com.querydslquerydsl-jpa-codegen5.0.0jar5.1.0
      com.querydslquerydsl-kotlin5.0.0jar5.1.0
      com.querydslquerydsl-kotlin-codegen5.0.0jar5.1.0
      com.querydslquerydsl-lucene35.0.0jar5.1.0
      com.querydslquerydsl-lucene45.0.0jar5.1.0
      com.querydslquerydsl-lucene55.0.0jar5.1.0
      com.querydslquerydsl-mongodb5.0.0jar5.1.0
      com.querydslquerydsl-scala5.0.0jar5.1.0
      com.querydslquerydsl-spatial5.0.0jar5.1.0
      com.querydslquerydsl-sql5.0.0jar5.1.0
      com.querydslquerydsl-sql-codegen5.0.0jar5.1.0
      com.querydslquerydsl-sql-spatial5.0.0jar5.1.0
      com.querydslquerydsl-sql-spring5.0.0jar5.1.0
      com.rabbitmqamqp-client5.14.3jar5.20.0
      com.rabbitmqstream-client0.5.0jar0.15.0
      com.samskivertjmustache1.15jar1.16
      com.sendgridsendgrid-java4.9.3jar4.10.1
      com.squareup.okhttp3logging-interceptor4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3mockwebserver4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okcurl4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-brotli4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-dnsoverhttps4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-sse4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-tls4.9.3jar4.12.05.0.0-alpha.12
      com.squareup.okhttp3okhttp-urlconnection4.9.3jar4.12.05.0.0-alpha.12
      com.sun.activationjakarta.activation1.2.2jar2.0.1
      com.sun.mailjakarta.mail1.6.7jar2.0.1
      com.sun.xml.messaging.saajsaaj-impl1.5.3jar3.0.3
      com.unboundidunboundid-ldapsdk6.0.10jar6.0.11
      com.zaxxerHikariCP4.0.3jar5.1.0
      commons-codeccommons-codec1.15jar1.16.1
      commons-poolcommons-pool1.6jar
      de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11jar3.5.44.12.2
      io.dropwizard.metricsmetrics-annotation4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-caffeine4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-caffeine34.2.22jar4.2.25
      io.dropwizard.metricsmetrics-collectd4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-core4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-ehcache4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-graphite4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-healthchecks4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-httpasyncclient4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-httpclient4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-httpclient54.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jakarta-servlet4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jakarta-servlet64.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jakarta-servlets4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jcache4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jdbi4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jdbi34.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jersey24.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jersey34.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jersey314.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty104.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty114.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty124.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty12-ee104.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jetty94.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jmx4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-json4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-jvm4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-log4j24.2.22jar4.2.25
      io.dropwizard.metricsmetrics-logback4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-logback134.2.22jar4.2.25
      io.dropwizard.metricsmetrics-logback144.2.22jar4.2.25
      io.dropwizard.metricsmetrics-servlet4.2.22jar4.2.25
      io.dropwizard.metricsmetrics-servlets4.2.22jar4.2.25
      io.lettucelettuce-core6.1.10.RELEASEjar6.3.1.RELEASE
      io.micrometermicrometer-core1.9.17jar1.12.2
      io.micrometermicrometer-registry-appoptics1.9.17jar1.12.2
      io.micrometermicrometer-registry-atlas1.9.17jar1.12.2
      io.micrometermicrometer-registry-azure-monitor1.9.17jar1.12.2
      io.micrometermicrometer-registry-cloudwatch1.9.17jar1.12.2
      io.micrometermicrometer-registry-cloudwatch21.9.17jar1.12.2
      io.micrometermicrometer-registry-datadog1.9.17jar1.12.2
      io.micrometermicrometer-registry-dynatrace1.9.17jar1.12.2
      io.micrometermicrometer-registry-elastic1.9.17jar1.12.2
      io.micrometermicrometer-registry-ganglia1.9.17jar1.12.2
      io.micrometermicrometer-registry-graphite1.9.17jar1.12.2
      io.micrometermicrometer-registry-health1.9.17jar1.12.2
      io.micrometermicrometer-registry-humio1.9.17jar1.12.2
      io.micrometermicrometer-registry-influx1.9.17jar1.12.2
      io.micrometermicrometer-registry-jmx1.9.17jar1.12.2
      io.micrometermicrometer-registry-kairos1.9.17jar1.12.2
      io.micrometermicrometer-registry-new-relic1.9.17jar1.12.2
      io.micrometermicrometer-registry-opentsdb1.9.17jar1.12.2
      io.micrometermicrometer-registry-otlp1.9.17jar1.12.2
      io.micrometermicrometer-registry-prometheus1.9.17jar1.12.2
      io.micrometermicrometer-registry-signalfx1.9.17jar1.12.2
      io.micrometermicrometer-registry-stackdriver1.9.17jar1.12.2
      io.micrometermicrometer-registry-statsd1.9.17jar1.12.2
      io.micrometermicrometer-registry-wavefront1.9.17jar1.12.2
      io.micrometermicrometer-test1.9.17jar1.12.2
      io.nettynetty-all4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-buffer4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-haproxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-http4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-http24.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-memcache4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-mqtt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-redis4.1.101.Finaljar4.1.106.Final
      io.nettynetty-codec-smtp4.1.101.Finaljar4.1.106.Final
      io.nettynetty-codec-socks4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-stomp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-codec-xml4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-common4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-dev-tools4.1.101.Finaljar4.1.106.Final
      io.nettynetty-example4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-handler4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-handler-proxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-handler-ssl-ocsp4.1.101.Finaljar4.1.106.Final
      io.nettynetty-resolver4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-resolver-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-resolver-dns-classes-macos4.1.101.Finaljar4.1.106.Final
      io.nettynetty-resolver-dns-native-macos4.1.101.Finaljar4.1.106.Final
      io.nettynetty-tcnative2.0.61.Finallinux-x86_64jar2.0.62.Final
      io.nettynetty-tcnative-boringssl-static2.0.61.Finaljar2.0.62.Final
      io.nettynetty-tcnative-classes2.0.61.Finaljar2.0.62.Final
      io.nettynetty-transport4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-classes-epoll4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-classes-kqueue4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-native-epoll4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-native-kqueue4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-native-unix-common4.1.101.Finaljar4.1.106.Final
      io.nettynetty-transport-rxtx4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-sctp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.nettynetty-transport-udt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
      io.projectreactorreactor-core3.4.34jar3.4.353.6.2
      io.projectreactorreactor-test3.4.34jar3.4.353.6.2
      io.projectreactorreactor-tools3.4.34jar3.4.353.6.2
      io.projectreactor.addonsreactor-adapter3.4.10jar3.5.1
      io.projectreactor.addonsreactor-extra3.4.10jar3.5.1
      io.projectreactor.addonsreactor-pool0.2.12jar1.0.5
      io.projectreactor.kafkareactor-kafka1.3.22jar
      io.projectreactor.kotlinreactor-kotlin-extensions1.1.10jar1.2.2
      io.projectreactor.nettyreactor-netty1.0.39jar1.0.411.1.15
      io.projectreactor.nettyreactor-netty-core1.0.39jar1.0.411.1.15
      io.projectreactor.nettyreactor-netty-http1.0.39jar1.0.411.1.15
      io.projectreactor.nettyreactor-netty-http-brave1.0.39jar1.0.411.1.15
      io.projectreactor.rabbitmqreactor-rabbitmq1.5.6jar
      io.prometheussimpleclient0.15.0jar0.16.0
      io.prometheussimpleclient_caffeine0.15.0jar0.16.0
      io.prometheussimpleclient_common0.15.0jar0.16.0
      io.prometheussimpleclient_dropwizard0.15.0jar0.16.0
      io.prometheussimpleclient_graphite_bridge0.15.0jar0.16.0
      io.prometheussimpleclient_guava0.15.0jar0.16.0
      io.prometheussimpleclient_hibernate0.15.0jar0.16.0
      io.prometheussimpleclient_hotspot0.15.0jar0.16.0
      io.prometheussimpleclient_httpserver0.15.0jar0.16.0
      io.prometheussimpleclient_jetty0.15.0jar0.16.0
      io.prometheussimpleclient_jetty_jdk80.15.0jar0.16.0
      io.prometheussimpleclient_log4j0.15.0jar0.16.0
      io.prometheussimpleclient_log4j20.15.0jar0.16.0
      io.prometheussimpleclient_logback0.15.0jar0.16.0
      io.prometheussimpleclient_pushgateway0.15.0jar0.16.0
      io.prometheussimpleclient_servlet0.15.0jar0.16.0
      io.prometheussimpleclient_servlet_jakarta0.15.0jar0.16.0
      io.prometheussimpleclient_spring_boot0.15.0jar0.16.0
      io.prometheussimpleclient_spring_web0.15.0jar0.16.0
      io.prometheussimpleclient_tracer_otel0.15.0jar0.16.0
      io.prometheussimpleclient_tracer_otel_agent0.15.0jar0.16.0
      io.prometheussimpleclient_vertx0.15.0jar0.16.0
      io.r2dbcr2dbc-h20.9.1.RELEASEjar1.0.0.RELEASE
      io.r2dbcr2dbc-mssql0.9.0.RELEASEjar0.9.0.SONATYPE-M41.0.2.RELEASE
      io.r2dbcr2dbc-pool0.9.2.RELEASEjar1.0.1.RELEASE
      io.r2dbcr2dbc-proxy0.9.1.RELEASEjar1.1.4.RELEASE
      io.r2dbcr2dbc-spi0.9.1.RELEASEjar1.0.0.RELEASE
      io.reactivexrxjava1.3.8jar
      io.reactivexrxjava-reactive-streams1.2.1jar
      io.reactivex.rxjava2rxjava2.2.21jar
      io.rest-assuredjson-path4.5.1jar5.4.0
      io.rest-assuredjson-schema-validator4.5.1jar5.4.0
      io.rest-assuredkotlin-extensions4.5.1jar5.4.0
      io.rest-assuredrest-assured4.5.1jar5.4.0
      io.rest-assuredrest-assured-all4.5.1jar5.4.0
      io.rest-assuredrest-assured-common4.5.1jar5.4.0
      io.rest-assuredscala-support4.5.1jar5.4.0
      io.rest-assuredspring-commons4.5.1jar5.4.0
      io.rest-assuredspring-mock-mvc4.5.1jar5.4.0
      io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1jar5.4.0
      io.rest-assuredspring-web-test-client4.5.1jar5.4.0
      io.rest-assuredxml-path4.5.1jar5.4.0
      io.rest-assured.exampleskotlin-example4.5.1jar
      io.rest-assured.examplesrest-assured-itest-java4.5.1jar
      io.rest-assured.examplesscala-example4.5.1jar
      io.rest-assured.examplesscala-mock-mvc-example4.5.1jar
      io.rest-assured.examplesscalatra-example4.5.1jar
      io.rest-assured.examplesscalatra-webapp4.5.1war
      io.rest-assured.examplesspring-mvc-webapp4.5.1war
      io.rsocketrsocket-core1.1.3jar1.1.4
      io.rsocketrsocket-load-balancer1.1.3jar1.1.4
      io.rsocketrsocket-micrometer1.1.3jar1.1.4
      io.rsocketrsocket-test1.1.3jar1.1.4
      io.rsocketrsocket-transport-local1.1.3jar1.1.4
      io.rsocketrsocket-transport-netty1.1.3jar1.1.4
      io.spring.gradledependency-management-plugin1.0.15.RELEASEjar1.1.4
      io.undertowundertow-core2.2.28.Finaljar2.3.10.Final
      io.undertowundertow-servlet2.2.28.Finaljar2.3.10.Final
      io.undertowundertow-websockets-jsr2.2.28.Finaljar2.3.10.Final
      jakarta.activationjakarta.activation-api1.2.2jar2.1.2
      jakarta.annotationjakarta.annotation-api1.3.5jar3.0.0-M1
      jakarta.jmsjakarta.jms-api2.0.3jar3.1.0
      jakarta.jsonjakarta.json-api1.1.6jar2.1.3
      jakarta.json.bindjakarta.json.bind-api1.0.2jar3.0.0
      jakarta.mailjakarta.mail-api1.6.7jar2.1.2
      jakarta.management.j2eejakarta.management.j2ee-api1.1.4jar
      jakarta.persistencejakarta.persistence-api2.2.3jar3.2.0-M1
      jakarta.servletjakarta.servlet-api4.0.4jar6.1.0-M1
      jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7jar3.0.0
      jakarta.transactionjakarta.transaction-api1.3.3jar2.0.1
      jakarta.validationjakarta.validation-api2.0.2jar3.1.0-M1
      jakarta.websocketjakarta.websocket-api1.1.2jar2.2.0-M1
      jakarta.ws.rsjakarta.ws.rs-api2.1.6jar3.1.0
      jakarta.xml.bindjakarta.xml.bind-api2.3.3jar4.0.1
      jakarta.xml.soapjakarta.xml.soap-api1.4.2jar3.0.1
      jakarta.xml.wsjakarta.xml.ws-api2.3.3jar4.0.1
      javax.activationjavax.activation-api1.2.0jar
      javax.annotationjavax.annotation-api1.3.2jar
      javax.cachecache-api1.1.1jar
      javax.jmsjavax.jms-api2.0.1jar
      javax.jsonjavax.json-api1.1.4jar
      javax.json.bindjavax.json.bind-api1.0jar
      javax.mailjavax.mail-api1.6.2jar
      javax.moneymoney-api1.1jar
      javax.persistencejavax.persistence-api2.2jar
      javax.servletjavax.servlet-api4.0.1jar
      javax.servletjstl1.2jar
      javax.transactionjavax.transaction-api1.3jar
      javax.validationvalidation-api2.0.1.Finaljar
      javax.websocketjavax.websocket-api1.1jar
      javax.xml.bindjaxb-api2.3.1jar2.4.0-b180830.0359
      javax.xml.wsjaxws-api2.3.1jar
      jaxenjaxen1.2.0jar2.0.0
      junitjunit4.13.2jar
      net.bytebuddybyte-buddy1.12.23jar1.14.11
      net.bytebuddybyte-buddy-agent1.12.23jar1.14.11
      net.minidevjson-smart2.4.11jar2.5.0
      net.sf.ehcacheehcache2.10.9.2jar
      net.sourceforge.htmlunithtmlunit2.60.0jar2.70.0
      net.sourceforge.jtdsjtds1.3.1jar
      net.sourceforge.nekohtmlnekohtml1.9.22jar
      nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0jar3.3.0
      org.apache.activemqactivemq-amqp5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-blueprint5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-broker5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-camel5.16.7jar
      org.apache.activemqactivemq-client5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-console5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-http5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-jaas5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-jdbc-store5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-jms-pool5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-kahadb-store5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-karaf5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-leveldb-store5.16.7jar
      org.apache.activemqactivemq-log4j-appender5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-mqtt5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-openwire-generator5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-openwire-legacy5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-osgi5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-partition5.16.7jar5.18.3
      org.apache.activemqactivemq-pool5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-ra5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-run5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-runtime-config5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-shiro5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-spring5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-stomp5.16.7jar5.18.36.0.1
      org.apache.activemqactivemq-web5.16.7jar5.18.36.0.1
      org.apache.activemqartemis-amqp-protocol2.19.1jar2.32.0
      org.apache.activemqartemis-commons2.19.1jar2.32.0
      org.apache.activemqartemis-core-client2.19.1jar2.32.0
      org.apache.activemqartemis-jdbc-store2.19.1jar2.32.0
      org.apache.activemqartemis-jms-client2.19.1jar2.32.0
      org.apache.activemqartemis-jms-server2.19.1jar2.32.0
      org.apache.activemqartemis-journal2.19.1jar2.32.0
      org.apache.activemqartemis-quorum-api2.19.1jar2.32.0
      org.apache.activemqartemis-selector2.19.1jar2.32.0
      org.apache.activemqartemis-server2.19.1jar2.32.0
      org.apache.activemqartemis-service-extensions2.19.1jar2.32.0
      org.apache.commonscommons-dbcp22.9.0jar2.11.0
      org.apache.commonscommons-lang33.12.0jar3.14.0
      org.apache.commonscommons-pool22.11.1jar2.12.0
      org.apache.derbyderby10.14.2.0jar10.17.1.0
      org.apache.derbyderbyclient10.14.2.0jar10.17.1.0
      org.apache.derbyderbynet10.14.2.0jar10.17.1.0
      org.apache.derbyderbyoptionaltools10.14.2.0jar10.17.1.0
      org.apache.derbyderbytools10.14.2.0jar10.17.1.0
      org.apache.httpcomponentsfluent-hc4.5.14jar
      org.apache.httpcomponentshttpasyncclient4.1.5jar
      org.apache.httpcomponentshttpclient4.5.14jar
      org.apache.httpcomponentshttpclient-cache4.5.14jar
      org.apache.httpcomponentshttpclient-osgi4.5.14jar
      org.apache.httpcomponentshttpclient-win4.5.14jar
      org.apache.httpcomponentshttpcore4.4.16jar
      org.apache.httpcomponentshttpcore-nio4.4.16jar
      org.apache.httpcomponentshttpmime4.5.14jar
      org.apache.httpcomponents.client5httpclient55.1.4jar5.4-alpha1
      org.apache.httpcomponents.client5httpclient5-cache5.1.4jar5.4-alpha1
      org.apache.httpcomponents.client5httpclient5-fluent5.1.4jar5.4-alpha1
      org.apache.httpcomponents.client5httpclient5-win5.1.4jar5.2.3
      org.apache.httpcomponents.core5httpcore55.1.5jar5.3-alpha1
      org.apache.httpcomponents.core5httpcore5-h25.1.5jar5.3-alpha1
      org.apache.httpcomponents.core5httpcore5-reactive5.1.5jar5.3-alpha1
      org.apache.johnzonjohnzon-core1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jaxrs1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jsonb1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jsonb-extras1.2.21jar2.0.0
      org.apache.johnzonjohnzon-jsonschema1.2.21jar2.0.0
      org.apache.johnzonjohnzon-mapper1.2.21jar2.0.0
      org.apache.johnzonjohnzon-websocket1.2.21jar2.0.0
      org.apache.kafkaconnect3.1.2jar3.6.1
      org.apache.kafkaconnect-api3.1.2jar3.6.1
      org.apache.kafkaconnect-basic-auth-extension3.1.2jar3.6.1
      org.apache.kafkaconnect-file3.1.2jar3.6.1
      org.apache.kafkaconnect-json3.1.2jar3.6.1
      org.apache.kafkaconnect-mirror3.1.2jar3.6.1
      org.apache.kafkaconnect-mirror-client3.1.2jar3.6.1
      org.apache.kafkaconnect-runtime3.1.2jar3.6.1
      org.apache.kafkaconnect-transforms3.1.2jar3.6.1
      org.apache.kafkagenerator3.1.2jar3.6.1
      org.apache.kafkakafka-clients3.1.2jar3.6.1
      org.apache.kafkakafka-log4j-appender3.1.2jar3.6.1
      org.apache.kafkakafka-metadata3.1.2jar3.6.1
      org.apache.kafkakafka-raft3.1.2jar3.6.1
      org.apache.kafkakafka-server-common3.1.2jar3.6.1
      org.apache.kafkakafka-shell3.1.2jar3.6.1
      org.apache.kafkakafka-storage3.1.2jar3.6.1
      org.apache.kafkakafka-storage-api3.1.2jar3.6.1
      org.apache.kafkakafka-streams3.1.2jar3.6.1
      org.apache.kafkakafka-streams-scala_2.123.1.2jar3.6.1
      org.apache.kafkakafka-streams-scala_2.133.1.2jar3.6.1
      org.apache.kafkakafka-streams-test-utils3.1.2jar3.6.1
      org.apache.kafkakafka-tools3.1.2jar3.6.1
      org.apache.kafkakafka_2.123.1.2jar3.6.1
      org.apache.kafkakafka_2.133.1.2jar3.6.1
      org.apache.kafkatrogdor3.1.2jar3.6.1
      org.apache.logging.log4jlog4j-1.2-api2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-api2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-appserver2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-cassandra2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-core2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-couchdb2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-docker2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-flume-ng2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-iostreams2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-jcl2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-jmx-gui2.17.2jar2.22.03.0.0-alpha1
      org.apache.logging.log4jlog4j-jpa2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-jpl2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-jul2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-kubernetes2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-layout-template-json2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-liquibase2.17.2jar2.19.03.0.0-alpha1
      org.apache.logging.log4jlog4j-mongodb32.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-mongodb42.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-slf4j-impl2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-slf4j18-impl2.17.2jar2.18.0
      org.apache.logging.log4jlog4j-spring-boot2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-taglib2.17.2jar2.22.13.0.0-alpha1
      org.apache.logging.log4jlog4j-to-slf4j2.17.2jar2.22.13.0.0-beta1
      org.apache.logging.log4jlog4j-web2.17.2jar2.22.13.0.0-alpha1
      org.apache.solrsolr-analysis-extras8.11.2jar8.11.39.4.1
      org.apache.solrsolr-analytics8.11.2jar8.11.39.4.1
      org.apache.solrsolr-cell8.11.2jar8.11.3
      org.apache.solrsolr-core8.11.2jar8.11.39.4.1
      org.apache.solrsolr-dataimporthandler8.11.2jar8.11.3
      org.apache.solrsolr-dataimporthandler-extras8.11.2jar8.11.3
      org.apache.solrsolr-gcs-repository8.11.2jar8.11.39.4.1
      org.apache.solrsolr-jaegertracer-configurator8.11.2jar8.11.39.4.1
      org.apache.solrsolr-langid8.11.2jar8.11.39.4.1
      org.apache.solrsolr-ltr8.11.2jar8.11.39.4.1
      org.apache.solrsolr-prometheus-exporter8.11.2jar8.11.39.4.1
      org.apache.solrsolr-s3-repository8.11.2jar8.11.39.4.1
      org.apache.solrsolr-solrj8.11.2jar8.11.39.4.1
      org.apache.solrsolr-test-framework8.11.2jar8.11.39.4.1
      org.apache.solrsolr-velocity8.11.2jar8.11.3
      org.apache.tomcattomcat-annotations-api9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcattomcat-jdbc9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcattomcat-jsp-api9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-core9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-el9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-jasper9.0.83jar9.0.8511.0.0-M16
      org.apache.tomcat.embedtomcat-embed-websocket9.0.83jar9.0.8511.0.0-M16
      org.aspectjaspectjrt1.9.7jar1.9.21
      org.aspectjaspectjtools1.9.7jar1.9.21
      org.aspectjaspectjweaver1.9.7jar1.9.21
      org.assertjassertj-core3.22.0jar3.25.3
      org.awaitilityawaitility4.2.0jar
      org.awaitilityawaitility-groovy4.2.0jar
      org.awaitilityawaitility-kotlin4.2.0jar
      org.awaitilityawaitility-scala4.2.0jar
      org.cache2kcache2k-api2.6.1.Finaljar
      org.cache2kcache2k-config2.6.1.Finaljar
      org.cache2kcache2k-core2.6.1.Finaljar
      org.cache2kcache2k-jcache2.6.1.Finaljar
      org.cache2kcache2k-micrometer2.6.1.Finaljar
      org.cache2kcache2k-spring2.6.1.Finaljar
      org.codehaus.groovygroovy3.0.19jar3.0.20
      org.codehaus.groovygroovy-ant3.0.19jar3.0.20
      org.codehaus.groovygroovy-astbuilder3.0.19jar3.0.20
      org.codehaus.groovygroovy-bsf3.0.19jar3.0.20
      org.codehaus.groovygroovy-cli-commons3.0.19jar3.0.20
      org.codehaus.groovygroovy-cli-picocli3.0.19jar3.0.20
      org.codehaus.groovygroovy-console3.0.19jar3.0.20
      org.codehaus.groovygroovy-datetime3.0.19jar3.0.20
      org.codehaus.groovygroovy-dateutil3.0.19jar3.0.20
      org.codehaus.groovygroovy-docgenerator3.0.19jar3.0.20
      org.codehaus.groovygroovy-groovydoc3.0.19jar3.0.20
      org.codehaus.groovygroovy-groovysh3.0.19jar3.0.20
      org.codehaus.groovygroovy-jaxb3.0.19jar3.0.20
      org.codehaus.groovygroovy-jmx3.0.19jar3.0.20
      org.codehaus.groovygroovy-json3.0.19jar3.0.20
      org.codehaus.groovygroovy-jsr2233.0.19jar3.0.20
      org.codehaus.groovygroovy-macro3.0.19jar3.0.20
      org.codehaus.groovygroovy-nio3.0.19jar3.0.20
      org.codehaus.groovygroovy-servlet3.0.19jar3.0.20
      org.codehaus.groovygroovy-sql3.0.19jar3.0.20
      org.codehaus.groovygroovy-swing3.0.19jar3.0.20
      org.codehaus.groovygroovy-templates3.0.19jar3.0.20
      org.codehaus.groovygroovy-test3.0.19jar3.0.20
      org.codehaus.groovygroovy-test-junit53.0.19jar3.0.20
      org.codehaus.groovygroovy-testng3.0.19jar3.0.20
      org.codehaus.groovygroovy-xml3.0.19jar3.0.20
      org.codehaus.groovygroovy-yaml3.0.19jar3.0.20
      org.codehaus.janinocommons-compiler3.1.10jar3.1.12
      org.codehaus.janinocommons-compiler-jdk3.1.10jar3.1.12
      org.codehaus.janinojanino3.1.10jar3.1.12
      org.eclipse.jettyapache-jsp9.4.53.v20231009jar11.0.20
      org.eclipse.jettyapache-jstl9.4.53.v20231009jar11.0.0
      org.eclipse.jettyinfinispan-common9.4.53.v20231009jar11.0.20
      org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009jar11.0.20
      org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-alpn-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009jar
      org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009jar
      org.eclipse.jettyjetty-alpn-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-annotations9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-ant9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-client9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-continuation9.4.53.v20231009jar
      org.eclipse.jettyjetty-deploy9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-distribution9.4.53.v20231009zip11.0.0.beta1
      org.eclipse.jettyjetty-hazelcast9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-home9.4.53.v20231009zip12.0.6
      org.eclipse.jettyjetty-http9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-http-spi9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-io9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-jaas9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-jaspi9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-jmx9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-jndi9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-nosql9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-openid9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-plus9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-proxy9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-quickstart9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-reactive-httpclient1.1.15jar4.0.3
      org.eclipse.jettyjetty-rewrite9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-security9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-server9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-servlet9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-servlets9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-spring9.4.53.v20231009jar11.0.0.beta3
      org.eclipse.jettyjetty-unixsocket9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-util9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-util-ajax9.4.53.v20231009jar12.0.6
      org.eclipse.jettyjetty-webapp9.4.53.v20231009jar11.0.20
      org.eclipse.jettyjetty-xml9.4.53.v20231009jar12.0.6
      org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009jar12.0.6
      org.eclipse.jetty.http2http2-client9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-common9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-hpack9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.http2http2-server9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009jar12.0.6
      org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158jar
      org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009jar11.0.20
      org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009jar
      org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009jar
      org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009jar11.0.20
      org.ehcacheehcache3.10.8jar
      org.ehcacheehcache-clustered3.10.8jar
      org.ehcacheehcache-transactions3.10.8jar
      org.elasticsearchelasticsearch7.17.15jar7.17.188.12.1
      org.elasticsearch.clientelasticsearch-rest-client7.17.15jar7.17.188.12.1
      org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15jar7.17.188.12.1
      org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15jar7.17.188.0.0-alpha2
      org.elasticsearch.clienttransport7.17.15jar7.17.18
      org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15zip7.17.188.12.1
      org.elasticsearch.plugintransport-netty4-client7.17.15jar7.17.18
      org.firebirdsql.jdbcjaybird4.0.9.java8jar4.0.9.java114.0.10.java115.0.3.java11
      org.firebirdsql.jdbcjaybird-jdk184.0.9.java8jar4.0.10.java8
      org.flywaydbflyway-core8.5.13jar10.7.2
      org.flywaydbflyway-firebird8.5.13jar10.7.2
      org.flywaydbflyway-mysql8.5.13jar10.7.2
      org.flywaydbflyway-sqlserver8.5.13jar10.7.2
      org.freemarkerfreemarker2.3.32jar
      org.glassfishjakarta.el3.0.4jar5.0.0-M1
      org.glassfish.jaxbcodemodel2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbcodemodel-annotation-compiler2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbjaxb-jxc2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbjaxb-runtime2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbjaxb-xjc2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbtxw22.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbtxwc22.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jaxbxsom2.3.9jar2.4.0-b180830.04384.0.4
      org.glassfish.jersey.bundlesjaxrs-ri2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-apache-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-grizzly-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-helidon-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-jdk-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-jetty-connector2.35jar2.413.1.5
      org.glassfish.jersey.connectorsjersey-netty-connector2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-grizzly2-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-jdk-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-jetty-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-jetty-servlet2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-netty-http2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-servlet2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-servlet-core2.35jar2.413.1.5
      org.glassfish.jersey.containersjersey-container-simple-http2.35jar2.413.1.5
      org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35jar2.413.1.5
      org.glassfish.jersey.corejersey-client2.35jar2.413.1.5
      org.glassfish.jersey.corejersey-common2.35jar2.413.1.5
      org.glassfish.jersey.corejersey-server2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-bean-validation2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-declarative-linking2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-entity-filtering2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-metainf-services2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-bean-validation2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-freemarker2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-jsp2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-mvc-mustache2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-proxy-client2.35jar2.413.1.5
      org.glassfish.jersey.extjersey-servlet-portability2.35jar2.413.0.0-M6
      org.glassfish.jersey.extjersey-spring42.35jar2.413.0.0-M6
      org.glassfish.jersey.extjersey-spring52.35jar2.413.0.0-M6
      org.glassfish.jersey.extjersey-wadl-doclet2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35jar2.413.1.5
      org.glassfish.jersey.ext.cdijersey-weld2-se2.35jar2.413.1.5
      org.glassfish.jersey.ext.microprofilejersey-mp-config2.35jar2.413.1.5
      org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35jar2.413.1.5
      org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35jar2.413.1.5
      org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35jar2.413.1.5
      org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35jar2.413.1.5
      org.glassfish.jersey.injectjersey-cdi2-se2.35jar2.413.1.5
      org.glassfish.jersey.injectjersey-hk22.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-jaxb2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-binding2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-jackson2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-jettison2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-json-processing2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-kryo2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-moxy2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-multipart2.35jar2.413.1.5
      org.glassfish.jersey.mediajersey-media-sse2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth1-client2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth1-server2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth1-signature2.35jar2.413.1.5
      org.glassfish.jersey.securityoauth2-client2.35jar2.413.1.5
      org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35jar2.413.1.5
      org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35pom2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35jar2.413.1.5
      org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35jar2.413.1.5
      org.glassfish.webjakarta.servlet.jsp.jstl1.2.6jar3.0.1
      org.hamcresthamcrest2.2jar
      org.hamcresthamcrest-core2.2jar
      org.hamcresthamcrest-library2.2jar
      org.hibernatehibernate-c3p05.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-core5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-ehcache5.6.15.Finaljar6.0.0.Alpha7
      org.hibernatehibernate-entitymanager5.6.15.Finaljar6.0.0.Alpha7
      org.hibernatehibernate-envers5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-hikaricp5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-java85.6.15.Finaljar6.0.0.Alpha7
      org.hibernatehibernate-jcache5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-jpamodelgen5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-micrometer5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-proxool5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-spatial5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-testing5.6.15.Finaljar6.4.4.Final
      org.hibernatehibernate-vibur5.6.15.Finaljar6.4.4.Final
      org.hibernate.validatorhibernate-validator6.2.5.Finaljar8.0.1.Final
      org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Finaljar8.0.1.Final
      org.hsqldbhsqldb2.5.2jar2.7.2
      org.infinispaninfinispan-anchored-keys13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-jdbc13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-jpa13.0.20.Finaljar13.0.21.Final14.0.0.Dev02
      org.infinispaninfinispan-cachestore-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-rocksdb13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cachestore-sql13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cdi-common13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cdi-embedded13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cdi-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-checkstyle13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cli-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-client-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-client-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-cloudevents-integration13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-clustered-counter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-clustered-lock13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-commons-test13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-component-annotations13.0.20.Finalprovidedjar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-component-processor13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-console0.15.5.Finaljar15.0.0.Dev05
      org.infinispaninfinispan-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-extended-statistics13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-hibernate-cache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-hibernate-cache-spi13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-hibernate-cache-v5313.0.20.Finaljar13.0.21.Final14.0.0.Dev02
      org.infinispaninfinispan-jboss-marshalling13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-jcache13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-jcache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-jcache-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-key-value-store-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-marshaller-kryo13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-marshaller-protostuff13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-multimap13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-objectfilter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-query13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-query-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-query-dsl13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-remote-query-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-remote-query-server13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-scripting13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-memcached13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-router13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-runtime13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-testdriver-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-testdriver-junit413.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-server-testdriver-junit513.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring5-common13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring5-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-spring5-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
      org.infinispaninfinispan-tasks13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-tasks-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
      org.infinispaninfinispan-tools13.0.20.Finaljar15.0.0.Dev08
      org.infinispan.protostreamprotostream4.4.4.Finaljar4.6.5.Final14.0.0.CR2
      org.infinispan.protostreamprotostream-processor4.4.4.Finalprovidedjar4.6.5.Final14.0.0.CR2
      org.infinispan.protostreamprotostream-types4.4.4.Finaljar4.6.5.Final14.0.0.CR2
      org.influxdbinfluxdb-java2.22jar2.24
      org.jboss.loggingjboss-logging3.4.3.Finaljar3.5.3.Final
      org.jdomjdom22.0.6.1jar
      org.jetbrains.kotlinkotlin-compiler1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-daemon-client1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-main-kts1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-osgi-bundle1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-reflect1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-script-runtime1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-script-util1.6.21jar1.8.22
      org.jetbrains.kotlinkotlin-scripting-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-scripting-jvm1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-stdlib-js1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-annotations-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-common1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-js1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-junit1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-junit51.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinkotlin-test-testng1.6.21jar1.9.222.0.0-Beta3
      org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4jar1.8.0-RC2
      org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4jar1.8.0-RC2
      org.jolokiajolokia-core1.7.2jar
      org.jooqjooq3.14.16jar3.19.3
      org.jooqjooq-codegen3.14.16jar3.19.3
      org.jooqjooq-kotlin3.14.16jar3.19.3
      org.jooqjooq-meta3.14.16jar3.19.3
      org.junit.jupiterjunit-jupiter5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-api5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-engine5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-migrationsupport5.8.2jar5.10.2
      org.junit.jupiterjunit-jupiter-params5.8.2jar5.10.2
      org.junit.platformjunit-platform-commons1.8.2jar1.10.2
      org.junit.platformjunit-platform-console1.8.2jar1.10.2
      org.junit.platformjunit-platform-engine1.8.2jar1.10.2
      org.junit.platformjunit-platform-jfr1.8.2jar1.10.2
      org.junit.platformjunit-platform-launcher1.8.2jar1.10.2
      org.junit.platformjunit-platform-reporting1.8.2jar1.10.2
      org.junit.platformjunit-platform-runner1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite-api1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite-commons1.8.2jar1.10.2
      org.junit.platformjunit-platform-suite-engine1.8.2jar1.10.2
      org.junit.platformjunit-platform-testkit1.8.2jar1.10.2
      org.junit.vintagejunit-vintage-engine5.8.2jar5.10.2
      org.liquibaseliquibase-cdi4.9.1jar4.26.0
      org.liquibaseliquibase-core4.9.1jar4.26.0
      org.mariadbr2dbc-mariadb1.1.2jar1.1.4
      org.mariadb.jdbcmariadb-java-client3.1.4jar3.3.2
      org.messaginghubpooled-jms1.2.6jar3.1.5
      org.mockitomockito-android4.5.1jar4.11.05.10.0
      org.mockitomockito-core4.5.1jar4.11.05.10.0
      org.mockitomockito-errorprone4.5.1jar4.11.05.10.0
      org.mockitomockito-inline4.5.1jar4.11.05.2.0
      org.mockitomockito-junit-jupiter4.5.1jar4.11.05.10.0
      org.mockitomockito-proxy4.5.1jar4.11.05.10.0
      org.mongodbbson4.6.1jar4.11.15.0.0-beta0
      org.mongodbbson-record-codec4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-core4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-legacy4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-reactivestreams4.6.1jar4.11.15.0.0-beta0
      org.mongodbmongodb-driver-sync4.6.1jar4.11.15.0.0-beta0
      org.mortbay.jasperapache-el9.0.52jar9.0.83.110.1.16
      org.mybatismybatis3.5.15jar
      org.mybatismybatis-spring2.1.2jar3.0.3
      org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jar
      org.mybatis.scriptingmybatis-freemarker1.2.4jar
      org.mybatis.scriptingmybatis-thymeleaf1.0.4jar
      org.mybatis.scriptingmybatis-velocity2.1.2jar
      org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2jar3.0.3
      org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2jar3.0.3
      org.neo4j.driverneo4j-java-driver4.4.12jar4.4.135.17.0
      org.postgresqlpostgresql42.3.8jar42.7.1
      org.postgresqlr2dbc-postgresql0.9.2.RELEASEjar0.9.3.RELEASE1.0.4.RELEASE
      org.projectlomboklombok1.18.30jar
      org.quartz-schedulerquartz2.3.2jar2.5.0-rc1
      org.quartz-schedulerquartz-jobs2.3.2jar2.5.0-rc1
      org.reactivestreamsreactive-streams1.0.4jar
      org.seleniumhq.seleniumhtmlunit-driver3.61.0jar3.64.04.13.0
      org.seleniumhq.seleniumlift4.1.4jar4.14.0
      org.seleniumhq.seleniumselenium-api4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-chrome-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-chromium-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-devtools-v1004.1.4jar4.2.2
      org.seleniumhq.seleniumselenium-devtools-v1014.1.4jar4.3.0
      org.seleniumhq.seleniumselenium-devtools-v854.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-devtools-v994.1.4jar
      org.seleniumhq.seleniumselenium-edge-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-firefox-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-grid4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-http4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-ie-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-java4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-json4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-opera-driver4.1.4jar4.4.0
      org.seleniumhq.seleniumselenium-remote-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-safari-driver4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-session-map-redis4.1.4jar4.17.0
      org.seleniumhq.seleniumselenium-support4.1.4jar4.17.0
      org.skyscreamerjsonassert1.5.1jar
      org.slf4jjcl-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jjul-to-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jlog4j-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-api1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-ext1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-jcl1.7.36jar
      org.slf4jslf4j-jdk141.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-log4j121.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-nop1.7.36jar1.8.0-beta42.1.0-alpha1
      org.slf4jslf4j-simple1.7.36jar1.8.0-beta42.1.0-alpha1
      org.springframeworkspring-aop5.3.31jar6.1.3
      org.springframeworkspring-aspects5.3.31jar6.1.3
      org.springframeworkspring-beans5.3.31jar6.1.3
      org.springframeworkspring-context5.3.31jar6.1.3
      org.springframeworkspring-context-indexer5.3.31jar6.1.3
      org.springframeworkspring-context-support5.3.31jar6.1.3
      org.springframeworkspring-core5.3.31jar6.1.3
      org.springframeworkspring-expression5.3.31jar6.1.3
      org.springframeworkspring-instrument5.3.31jar6.1.3
      org.springframeworkspring-jcl5.3.31jar6.1.3
      org.springframeworkspring-jdbc5.3.31jar6.1.3
      org.springframeworkspring-jms5.3.31jar6.1.3
      org.springframeworkspring-messaging5.3.31jar6.1.3
      org.springframeworkspring-orm5.3.31jar6.1.3
      org.springframeworkspring-oxm5.3.31jar6.1.3
      org.springframeworkspring-r2dbc5.3.31jar6.1.3
      org.springframeworkspring-test5.3.31jar6.1.3
      org.springframeworkspring-tx5.3.31jar6.1.3
      org.springframeworkspring-web5.3.31jar6.1.3
      org.springframeworkspring-webflux5.3.31jar6.1.3
      org.springframeworkspring-webmvc5.3.31jar6.1.3
      org.springframeworkspring-websocket5.3.31jar6.1.3
      org.springframework.amqpspring-amqp2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit-junit2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit-stream2.4.17jar3.1.1
      org.springframework.amqpspring-rabbit-test2.4.17jar3.1.1
      org.springframework.batchspring-batch-core4.3.10jar5.1.0
      org.springframework.batchspring-batch-infrastructure4.3.10jar5.1.0
      org.springframework.batchspring-batch-integration4.3.10jar5.1.0
      org.springframework.batchspring-batch-test4.3.10jar5.1.0
      org.springframework.bootspring-boot2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-actuator2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-actuator-autoconfigure2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-autoconfigure2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-autoconfigure-processor2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-buildpack-platform2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-configuration-metadata2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-configuration-processor2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-devtools2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-jarmode-layertools2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-loader2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-loader-tools2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-properties-migrator2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-activemq2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-actuator2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-amqp2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-aop2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-artemis2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-batch2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-cache2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-cassandra2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-couchbase2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-jdbc2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-jpa2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-ldap2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-mongodb2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-neo4j2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-r2dbc2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-redis2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-data-rest2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-freemarker2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-graphql2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-groovy-templates2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-hateoas2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-integration2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jdbc2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jersey2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jetty2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jooq2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-json2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-jta-atomikos2.7.18jar
      org.springframework.bootspring-boot-starter-log4j22.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-logging2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-mail2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-mustache2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-oauth2-client2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-quartz2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-reactor-netty2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-rsocket2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-security2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-test2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-thymeleaf2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-tomcat2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-undertow2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-validation2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-web2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-web-services2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-webflux2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-starter-websocket2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-test2.7.18jar3.3.0-M1
      org.springframework.bootspring-boot-test-autoconfigure2.7.18jar3.3.0-M1
      org.springframework.dataspring-data-cassandra3.4.18jar4.2.2
      org.springframework.dataspring-data-commons2.7.18jar3.2.2
      org.springframework.dataspring-data-couchbase4.4.18jar5.2.2
      org.springframework.dataspring-data-elasticsearch4.4.18jar5.2.2
      org.springframework.dataspring-data-envers2.7.18jar3.2.2
      org.springframework.dataspring-data-geode2.7.18jar3.0.0-M6
      org.springframework.dataspring-data-jdbc2.4.18jar3.2.2
      org.springframework.dataspring-data-jpa2.7.18jar3.2.2
      org.springframework.dataspring-data-keyvalue2.7.18jar3.2.2
      org.springframework.dataspring-data-ldap2.7.18jar3.2.2
      org.springframework.dataspring-data-mongodb3.4.18jar4.2.2
      org.springframework.dataspring-data-neo4j6.3.18jar7.2.2
      org.springframework.dataspring-data-r2dbc1.5.18jar3.2.2
      org.springframework.dataspring-data-redis2.7.18jar3.2.2
      org.springframework.dataspring-data-relational2.4.18jar3.2.2
      org.springframework.dataspring-data-rest-core3.7.18jar4.2.2
      org.springframework.dataspring-data-rest-hal-explorer3.7.18jar4.2.2
      org.springframework.dataspring-data-rest-webmvc3.7.18jar4.2.2
      org.springframework.experimentalspring-aot0.12.2jar
      org.springframework.experimentalspring-native0.12.2jar
      org.springframework.graphqlspring-graphql1.0.6jar1.2.4
      org.springframework.graphqlspring-graphql-test1.0.6jar1.2.4
      org.springframework.hateoasspring-hateoas1.5.6jar2.2.0
      org.springframework.integrationspring-integration-amqp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-core5.5.20jar6.2.1
      org.springframework.integrationspring-integration-event5.5.20jar6.2.1
      org.springframework.integrationspring-integration-feed5.5.20jar6.2.1
      org.springframework.integrationspring-integration-file5.5.20jar6.2.1
      org.springframework.integrationspring-integration-ftp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-gemfire5.5.20jar6.0.0-M5
      org.springframework.integrationspring-integration-groovy5.5.20jar6.2.1
      org.springframework.integrationspring-integration-http5.5.20jar6.2.1
      org.springframework.integrationspring-integration-ip5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jdbc5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jms5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jmx5.5.20jar6.2.1
      org.springframework.integrationspring-integration-jpa5.5.20jar6.2.1
      org.springframework.integrationspring-integration-kafka5.5.20jar6.2.1
      org.springframework.integrationspring-integration-mail5.5.20jar6.2.1
      org.springframework.integrationspring-integration-mongodb5.5.20jar6.2.1
      org.springframework.integrationspring-integration-mqtt5.5.20jar6.2.1
      org.springframework.integrationspring-integration-r2dbc5.5.20jar6.2.1
      org.springframework.integrationspring-integration-redis5.5.20jar6.2.1
      org.springframework.integrationspring-integration-rmi5.5.20jar
      org.springframework.integrationspring-integration-rsocket5.5.20jar6.2.1
      org.springframework.integrationspring-integration-scripting5.5.20jar6.2.1
      org.springframework.integrationspring-integration-security5.5.20jar6.2.1
      org.springframework.integrationspring-integration-sftp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-stomp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-stream5.5.20jar6.2.1
      org.springframework.integrationspring-integration-syslog5.5.20jar6.2.1
      org.springframework.integrationspring-integration-test5.5.20jar6.2.1
      org.springframework.integrationspring-integration-test-support5.5.20jar6.2.1
      org.springframework.integrationspring-integration-webflux5.5.20jar6.2.1
      org.springframework.integrationspring-integration-websocket5.5.20jar6.2.1
      org.springframework.integrationspring-integration-ws5.5.20jar6.2.1
      org.springframework.integrationspring-integration-xml5.5.20jar6.2.1
      org.springframework.integrationspring-integration-xmpp5.5.20jar6.2.1
      org.springframework.integrationspring-integration-zeromq5.5.20jar6.2.1
      org.springframework.integrationspring-integration-zookeeper5.5.20jar6.2.1
      org.springframework.kafkaspring-kafka2.8.11jar2.9.133.1.1
      org.springframework.kafkaspring-kafka-test2.8.11jar2.9.133.1.1
      org.springframework.ldapspring-ldap-core2.4.1jar3.2.1
      org.springframework.ldapspring-ldap-core-tiger2.4.1jar3.0.0-M1
      org.springframework.ldapspring-ldap-ldif-core2.4.1jar3.2.1
      org.springframework.ldapspring-ldap-odm2.4.1jar3.2.1
      org.springframework.ldapspring-ldap-test2.4.1jar3.2.1
      org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-core2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASEjar3.0.1
      org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASEjar3.0.1
      org.springframework.retryspring-retry1.3.4jar2.0.5
      org.springframework.securityspring-security-acl5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-aspects5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-cas5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-config5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-core5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-crypto5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-data5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-ldap5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-messaging5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-client5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-core5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-jose5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-oauth2-resource-server5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-openid5.7.11jar5.8.96.0.0-M1
      org.springframework.securityspring-security-remoting5.7.11jar5.8.9
      org.springframework.securityspring-security-rsocket5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-saml2-service-provider5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-taglibs5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-test5.7.11jar5.8.96.3.0-M1
      org.springframework.securityspring-security-web5.7.11jar5.8.96.3.0-M1
      org.springframework.sessionspring-session-core2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-data-geode2.7.1jar2.7.23.0.0-M5
      org.springframework.sessionspring-session-data-mongodb2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-data-redis2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-hazelcast2.7.4jar3.3.0-M1
      org.springframework.sessionspring-session-jdbc2.7.4jar3.3.0-M1
      org.springframework.wsspring-ws-core3.1.8jar4.0.10
      org.springframework.wsspring-ws-security3.1.8jar4.0.10
      org.springframework.wsspring-ws-support3.1.8jar4.0.10
      org.springframework.wsspring-ws-test3.1.8jar4.0.10
      org.springframework.wsspring-xml3.1.8jar4.0.10
      org.thymeleafthymeleaf3.0.15.RELEASEjar3.1.2.RELEASE
      org.thymeleafthymeleaf-spring53.0.15.RELEASEjar3.1.2.RELEASE
      org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASEjar
      org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASEjar3.1.2.RELEASE
      org.webjarswebjars-locator-core0.50jar0.55
      org.xerialsqlite-jdbc3.36.0.3jar3.45.1.0
      org.xmlunitxmlunit-assertj2.9.1jar
      org.xmlunitxmlunit-assertj32.9.1jar
      org.xmlunitxmlunit-core2.9.1jar
      org.xmlunitxmlunit-legacy2.9.1jar
      org.xmlunitxmlunit-matchers2.9.1jar
      org.xmlunitxmlunit-placeholders2.9.1jar
      org.yamlsnakeyaml1.30jar1.332.2
      redis.clientsjedis3.8.0jar3.10.05.2.0-alpha2
      wsdl4jwsdl4j1.6.3jar
      StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      +

      Dependencies

      +

      This project does not declare any dependencies.

      +

      Dependency Updates

      +

      +

      antlr:antlr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idantlr
      Artifact Idantlr
      Current Version2.7.7
      Scope
      Classifier
      Typejar
      Newer versions20030911 Latest Major
      +

      ch.qos.logback:logback-access

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idch.qos.logback
      Artifact Idlogback-access
      Current Version1.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.2.13 Latest Incremental
      1.3.0-alpha0
      1.3.0-alpha1
      1.3.0-alpha2
      1.3.0-alpha3
      1.3.0-alpha4
      1.3.0-alpha5
      1.3.0-alpha6
      1.3.0-alpha7
      1.3.0-alpha8
      1.3.0-alpha9
      1.3.0-alpha10
      1.3.0-alpha11
      1.3.0-alpha12
      1.3.0-alpha13
      1.3.0-alpha14
      1.3.0-alpha15
      1.3.0-alpha16
      1.3.0-beta0
      1.3.0
      1.3.1
      1.3.2
      1.3.3
      1.3.4
      1.3.5
      1.3.6
      1.3.7
      1.3.8
      1.3.9
      1.3.10
      1.3.11
      1.3.12
      1.3.13
      1.3.14
      1.4.0
      1.4.1
      1.4.2
      1.4.3
      1.4.4
      1.4.5
      1.4.6
      1.4.7
      1.4.8
      1.4.9
      1.4.10
      1.4.11
      1.4.12
      1.4.13
      1.4.14 Latest Minor
      +

      ch.qos.logback:logback-classic

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idch.qos.logback
      Artifact Idlogback-classic
      Current Version1.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.2.13 Latest Incremental
      1.3.0-alpha0
      1.3.0-alpha1
      1.3.0-alpha2
      1.3.0-alpha3
      1.3.0-alpha4
      1.3.0-alpha5
      1.3.0-alpha6
      1.3.0-alpha7
      1.3.0-alpha8
      1.3.0-alpha9
      1.3.0-alpha10
      1.3.0-alpha11
      1.3.0-alpha12
      1.3.0-alpha13
      1.3.0-alpha14
      1.3.0-alpha15
      1.3.0-alpha16
      1.3.0-beta0
      1.3.0
      1.3.1
      1.3.2
      1.3.3
      1.3.4
      1.3.5
      1.3.6
      1.3.7
      1.3.8
      1.3.9
      1.3.10
      1.3.11
      1.3.12
      1.3.13
      1.3.14
      1.4.0
      1.4.1
      1.4.2
      1.4.3
      1.4.4
      1.4.5
      1.4.6
      1.4.7
      1.4.8
      1.4.9
      1.4.10
      1.4.11
      1.4.12
      1.4.13
      1.4.14 Latest Minor
      +

      ch.qos.logback:logback-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idch.qos.logback
      Artifact Idlogback-core
      Current Version1.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.2.13 Latest Incremental
      1.3.0-alpha0
      1.3.0-alpha1
      1.3.0-alpha2
      1.3.0-alpha3
      1.3.0-alpha4
      1.3.0-alpha5
      1.3.0-alpha6
      1.3.0-alpha7
      1.3.0-alpha8
      1.3.0-alpha9
      1.3.0-alpha10
      1.3.0-alpha11
      1.3.0-alpha12
      1.3.0-alpha13
      1.3.0-alpha14
      1.3.0-alpha15
      1.3.0-alpha16
      1.3.0-beta0
      1.3.0
      1.3.1
      1.3.2
      1.3.3
      1.3.4
      1.3.5
      1.3.6
      1.3.7
      1.3.8
      1.3.9
      1.3.10
      1.3.11
      1.3.12
      1.3.13
      1.3.14
      1.4.0
      1.4.1
      1.4.2
      1.4.3
      1.4.4
      1.4.5
      1.4.6
      1.4.7
      1.4.8
      1.4.9
      1.4.10
      1.4.11
      1.4.12
      1.4.13
      1.4.14 Latest Minor
      +

      com.atomikos:transactions-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.atomikos
      Artifact Idtransactions-jdbc
      Current Version4.0.6
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      6.0.0M1
      6.0.0M2
      6.0.0 Latest Major
      +

      com.atomikos:transactions-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.atomikos
      Artifact Idtransactions-jms
      Current Version4.0.6
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      6.0.0M1
      6.0.0M2
      6.0.0 Latest Major
      +

      com.atomikos:transactions-jta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.atomikos
      Artifact Idtransactions-jta
      Current Version4.0.6
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      6.0.0M1
      6.0.0M2
      6.0.0 Latest Major
      +

      com.couchbase.client:java-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.couchbase.client
      Artifact Idjava-client
      Current Version3.3.4
      Scope
      Classifier
      Typejar
      Newer versions3.4.0
      3.4.1
      3.4.2
      3.4.3
      3.4.4
      3.4.5
      3.4.6
      3.4.7
      3.4.8
      3.4.9
      3.4.10
      3.4.11
      3.5.0
      3.5.1
      3.5.2
      3.5.3 Latest Minor
      +

      com.datastax.oss:java-driver-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-core
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-core-shaded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-core-shaded
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-mapper-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-mapper-processor
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-mapper-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-mapper-runtime
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-metrics-micrometer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-metrics-micrometer
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-metrics-microprofile

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-metrics-microprofile
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-query-builder

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-query-builder
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:java-driver-shaded-guava

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-shaded-guava
      Current Version25.1-jre-graal-sub-1
      Scope
      Classifier
      Typejar
      +

      com.datastax.oss:java-driver-test-infra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.datastax.oss
      Artifact Idjava-driver-test-infra
      Current Version4.14.1
      Scope
      Classifier
      Typejar
      Newer versions4.15.0
      4.16.0
      4.17.0 Latest Minor
      +

      com.datastax.oss:native-protocol

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.datastax.oss
      Artifact Idnative-protocol
      Current Version1.5.1
      Scope
      Classifier
      Typejar
      +

      com.fasterxml:classmate

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml
      Artifact Idclassmate
      Current Version1.5.1
      Scope
      Classifier
      Typejar
      Newer versions1.6.0
      1.7.0 Latest Minor
      +

      com.fasterxml.jackson.core:jackson-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.core
      Artifact Idjackson-annotations
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.core:jackson-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.core
      Artifact Idjackson-core
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.core:jackson-databind

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.core
      Artifact Idjackson-databind
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-avro

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-avro
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-cbor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-cbor
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-csv

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-csv
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-ion

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-ion
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-properties

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-properties
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-protobuf
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-smile

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-smile
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-toml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-toml
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-xml
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.dataformat:jackson-dataformat-yaml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.dataformat
      Artifact Idjackson-dataformat-yaml
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-eclipse-collections

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-eclipse-collections
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-guava
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hibernate4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hibernate4
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hibernate5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hibernate5
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hibernate5-jakarta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hibernate5-jakarta
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-hppc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-hppc
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jakarta-jsonp
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jaxrs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jaxrs
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jdk8
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-joda

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-joda
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-joda-money

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-joda-money
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-json-org

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-json-org
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jsr310

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jsr310
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-jsr353

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-jsr353
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.datatype:jackson-datatype-pcollections

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.datatype
      Artifact Idjackson-datatype-pcollections
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-base
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-cbor-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-cbor-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-json-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-smile-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-smile-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-xml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-xml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-yaml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jakarta.rs
      Artifact Idjackson-jakarta-rs-yaml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-base

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-base
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-cbor-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-json-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-smile-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-xml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jaxrs
      Artifact Idjackson-jaxrs-yaml-provider
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-all

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-all
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-annotation-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-annotation-support
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-objects

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-objects
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-retrofit2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-retrofit2
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.jr:jackson-jr-stree

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.jr
      Artifact Idjackson-jr-stree
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-afterburner

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-afterburner
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-blackbird

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-blackbird
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-guice

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-guice
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-jakarta-xmlbind-annotations
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-jaxb-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-jaxb-annotations
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-jsonSchema

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-jsonSchema
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-kotlin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-kotlin
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-mrbean

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-mrbean
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-no-ctor-deser

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-no-ctor-deser
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-osgi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-osgi
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-parameter-names

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-parameter-names
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-paranamer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-paranamer
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_2.11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_2.11
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_2.12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_2.12
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_2.13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_2.13
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.fasterxml.jackson.module:jackson-module-scala_3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.fasterxml.jackson.module
      Artifact Idjackson-module-scala_3
      Current Version2.13.5
      Scope
      Classifier
      Typejar
      Newer versions2.14.0-rc1
      2.14.0-rc2
      2.14.0-rc3
      2.14.0
      2.14.1
      2.14.2
      2.14.3
      2.15.0-rc1
      2.15.0-rc2
      2.15.0-rc3
      2.15.0
      2.15.1
      2.15.2
      2.15.3
      2.16.0-rc1
      2.16.0
      2.16.1 Latest Minor
      +

      com.github.ben-manes.caffeine:caffeine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idcaffeine
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.ben-manes.caffeine:guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idguava
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.ben-manes.caffeine:jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idjcache
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.ben-manes.caffeine:simulator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.github.ben-manes.caffeine
      Artifact Idsimulator
      Current Version2.9.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8 Latest Major
      +

      com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.mxab.thymeleaf.extras
      Artifact Idthymeleaf-extras-data-attribute
      Current Version2.0.1
      Scope
      Classifier
      Typejar
      +

      com.google.appengine:appengine-api-1.0-sdk

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.google.appengine
      Artifact Idappengine-api-1.0-sdk
      Current Version1.9.98
      Scope
      Classifier
      Typejar
      Newer versions2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.0.13
      2.0.14
      2.0.15
      2.0.16
      2.0.17
      2.0.19
      2.0.20
      2.0.21
      2.0.22
      2.0.23
      2.0.24 Latest Major
      +

      com.google.code.gson:gson

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.google.code.gson
      Artifact Idgson
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      Newer versions2.10
      2.10.1 Latest Minor
      +

      com.graphql-java:graphql-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.graphql-java
      Artifact Idgraphql-java
      Current Version18.5
      Scope
      Classifier
      Typejar
      Newer versions18.6
      18.7 Latest Minor
      19.0
      19.1
      19.2
      19.3
      19.4
      19.5
      19.6
      19.7
      19.8
      19.9
      20.0
      20.1
      20.2
      20.3
      20.4
      20.5
      20.6
      20.7
      21.0
      21.1
      21.2
      21.3
      2018-06-04T04-23-07
      2018-06-04T04-37-12
      2018-06-04T05-35-18-e5b324e
      2018-06-04T06-08-37-e5b324e
      2018-06-04T06-12-10-9e01eaa
      2018-06-04T06-18-26-
      2018-06-04T06-32-44-
      2018-06-04T06-49-40-474b470
      2018-06-04T11-42-58-352f0df
      2018-06-04T21-54-46-f3ede8b
      2018-06-04T22-33-28-a93fe6a
      2018-06-04T22-49-40-ad9c92a
      2018-06-05T00-30-43-5e542a9
      2018-06-05T05-02-26-ca6f7fa
      2018-06-12T07-15-39-50a2a13
      2018-06-13T01-43-44-50a2a13
      2018-06-16T10-13-54-f3af483
      2018-06-19T22-08-22-7270438
      2018-06-20T08-24-34-aa92267
      2018-06-21T06-20-30-6984d3b
      2018-06-24T21-45-32-a683b9e
      2018-06-25T00-43-57-d087b4a
      2018-06-25T02-16-07-639aff3
      2018-06-27T00-18-28-1e12da9
      2018-07-04T08-09-58-795c232
      2018-07-11T08-11-14-394ca2a
      2018-07-12T05-33-47-67d6257
      2018-07-12T11-44-24-8d02fc7
      2018-07-13T04-59-30-f72244a
      2018-07-27T07-38-22-2fe7914
      2018-07-27T07-39-10-901db94
      2018-07-27T10-32-58-4d45311
      2018-07-27T10-57-25-ad87047
      2018-07-27T12-45-31-5b44eff
      2018-07-28T00-19-13-5ea18ff
      2018-07-30T00-23-12-bfee885
      2018-07-30T07-03-52-6e1bc02
      2018-08-01T04-10-44-b8b248a
      2018-08-07T03-17-17-653d67f
      2018-08-07T03-26-20-3b4957b
      2018-08-07T05-26-11-b835941
      2018-08-07T05-28-06-4c0c33a
      2018-08-14T07-47-58-fd2454f
      2018-08-16T09-47-33-00a720f
      2018-08-20T08-16-01-b66eade
      2018-08-20T08-17-20-0deb127
      2018-08-20T08-17-43-df4775c
      2018-08-20T09-22-08-f02ee24
      2018-08-20T10-18-26-0adc5f8
      2018-08-23T21-16-30-141b8e4
      2018-08-28T23-42-26-f2f4b1f
      2018-08-28T23-42-56-5c7b9ef
      2018-08-28T23-43-42-d049882
      2018-08-29T06-42-12-24db46a
      2018-08-29T21-42-21-9ed2843
      2018-08-30T23-23-01-6c72aaf
      2018-08-30T23-23-36-0b5f286
      2018-09-03T01-10-42-4485074
      2018-09-08T05-14-26-03482af
      2018-09-08T07-01-35-b55f8a5
      2018-09-09T01-51-54-4c5aca5
      2018-09-12T11-52-41-a96e963
      2018-09-13T04-39-06-fdefa43
      2018-09-13T04-41-01-179fb2e
      2018-09-13T21-08-39-094ff85
      2018-09-13T21-13-06-e45bea8
      2018-09-16T01-27-46-27a6e44
      2018-09-16T01-27-54-eef571c
      2018-09-17T07-40-50-27a6e44
      2018-09-17T07-41-05-efbcf37
      2018-09-17T23-03-05-4363a82
      2018-09-18T21-31-05-de360a0
      2018-09-18T21-34-59-8a5fa0a
      2018-09-23T22-54-34-e6a97f6
      2018-09-27T10-23-49-6b14546
      2018-09-28T03-46-03-b031cfc
      2018-09-30T06-30-11-d526d04
      2018-10-02T04-01-30-af07d80
      2018-10-03T06-38-59-a46d462
      2018-10-03T07-03-19-80342b2
      2018-10-03T07-16-06-0d80418
      2018-10-08T21-25-58-ac9d5c6
      2018-10-09T07-07-16-78a6e4e
      2018-10-10T05-31-53-0466a3d
      2018-10-10T05-39-21-5cda03c
      2018-10-10T20-51-25-232373f
      2018-10-15T22-47-19-99aac04
      2018-10-16T04-11-52-46045a8
      2018-10-17T06-19-11-93e6150
      2018-10-17T09-47-16-c9ea5fc
      2018-10-17T23-50-56-d72f029
      2018-10-18T07-23-00-873bada
      2018-10-18T11-21-20-610a527
      2018-10-24T21-14-21-5e2c94f
      2018-10-24T21-16-55-25378bd
      2018-10-29T04-08-41-1f24856
      2018-10-31T23-42-59-ec9e3af
      2018-11-02T07-27-33-d0923be
      2018-11-03T12-19-57-9a2d4e9
      2018-11-04T23-23-23-129abec
      2018-11-05T04-59-34-c74b23e
      2018-11-05T23-39-38-cfc12d8
      2018-11-06T00-25-39-b0c4c3a
      2018-11-06T00-28-15-ec46cb6
      2018-11-07T03-10-42-5f13464
      2018-11-10T08-58-30-1e95abd
      2018-11-10T09-39-09-1f6095c
      2018-11-11T09-23-20-3dcabef
      2018-11-12T02-07-25-6ddb87f
      2018-11-15T21-34-13-6aa96be-ignored-chars
      2018-11-15T21-34-14-7110576-ignored-chars
      2018-11-16T06-01-41-51c05da-ignored-chars
      2018-11-16T06-01-54-efdaa48-ignored-chars
      2018-11-23T05-36-03-4ec08db
      2018-11-23T06-25-41-8885cd7
      2018-11-23T06-31-20-93e0f57
      2018-11-25T22-27-06-516a0c0
      2018-11-27T19-56-11-4dc1e0c
      2018-11-28T07-49-46-b808a72
      2018-11-28T08-13-20-3ada93e
      2018-12-01T05-52-33-9ba3c0e
      2018-12-02T00-31-14-9340660
      2018-12-02T00-56-57-305860d
      2018-12-02T00-57-27-28e493d
      2018-12-02T06-51-22-11cfd04
      2018-12-02T22-14-34-9e39066
      2018-12-03T06-08-55-17933ec
      2018-12-03T21-48-15-b292ab6
      2018-12-05T06-30-06-08a8613
      2018-12-07T11-12-28-9a3c8e8
      2018-12-12T01-03-50-8c7555b
      2018-12-15T05-16-49-88447e1
      2018-12-15T05-18-06-44627e4
      2018-12-20T04-16-45-68c7660
      2018-12-20T04-30-44-18a4425
      2018-12-20T04-32-18-c1600b6
      2018-12-20T05-49-26-50fe7e0
      2018-12-20T08-18-59-8e766d1
      2018-12-21T20-58-21-f24510d
      2018-12-21T21-00-05-9a6abf2
      2018-12-27T23-19-05-67fa4d9
      2018-12-28T20-03-39-0d707e9
      2018-12-29T10-59-26-1c3efb3
      2018-12-29T11-23-37-f0927ca
      2018-12-29T11-25-17-1648f54
      2018-12-29T11-37-31-7b494d1
      2018-12-29T18-59-16-f40ec83
      2018-12-29T20-24-09-8cc00d2
      2018-12-29T21-18-13-65a2c1d
      2018-12-29T21-26-21-e889103
      2018-12-29T22-10-43-33fcbc9
      2018-12-29T22-19-16-b85e315
      2018-12-29T22-55-27-8229b75
      2018-12-30T04-49-43-b422b88
      2019-01-01T05-12-10-d7fdfed
      2019-01-01T05-14-41-147d2be
      2019-01-02T07-00-24-b2bcb40
      2019-01-03T03-56-42-93f1c2f
      2019-01-03T22-57-19-e75b425
      2019-01-04T02-53-37-38a8606
      2019-01-04T03-07-40-a61f4ee
      2019-01-08T03-54-43-27471f7
      2019-01-08T05-36-31-8aaada8
      2019-01-08T05-54-26-5ecf32d
      2019-01-09T03-01-00-2790caa
      2019-01-10T02-59-04-828bf5c
      2019-01-10T22-02-11-9d62329
      2019-01-10T23-02-15-e7b431a
      2019-01-13T21-59-35-d037062
      2019-01-14T04-17-45-64a3c82
      2019-01-14T06-41-16-ead6ec2
      2019-01-14T07-14-22-fb0fa63
      2019-01-14T22-57-55-82be22b
      2019-01-15T02-21-27-1dfebed
      2019-01-15T23-05-22-e916b02
      2019-01-17T02-23-57-ecf8a08
      2019-01-18T05-18-40-0f5a890
      2019-01-18T07-01-10-c4bcd3a
      2019-01-22T00-33-57-c967dac
      2019-01-22T01-01-11-41d67d7
      2019-01-29T03-32-34-3d271c3
      2019-01-30T23-39-33-803f5cb
      2019-01-31T22-07-02-5a8b1fd
      2019-01-31T22-16-02-fc21117
      2019-01-31T22-31-13-065791a
      2019-01-31T22-35-43-b807e80
      2019-02-06T00-46-18-1ce5113
      2019-02-06T23-32-55-d73dacf
      2019-02-06T23-38-59-5f8c5bd
      2019-02-07T02-30-53-e310dc3
      2019-02-13T17-42-01-858250e
      2019-02-15T22-43-48-1231dde
      2019-02-18T02-52-52-13eb79a
      2019-02-20T00-59-31-9356c3d
      2019-02-28T01-17-35-b2cc1c2
      2019-03-05T02-16-05-6df6640
      2019-03-05T02-23-47-f40315b
      2019-03-07T03-51-32-45bf5af
      2019-03-07T04-21-43-cf62a7a
      2019-03-07T04-34-55-809a980
      2019-03-10T22-41-06-9808185
      2019-03-11T03-25-33-b3c91e8
      2019-03-11T03-25-55-fc95640
      2019-03-11T03-56-07-7f6f32b
      2019-03-11T03-58-13-4123998
      2019-03-11T04-12-00-65dea85
      2019-03-11T22-39-51-03dc939
      2019-03-11T22-40-03-cf1e838
      2019-03-11T22-42-37-93b7b58
      2019-03-11T22-46-27-52a7b6e
      2019-03-12T01-04-49-36b1c03
      2019-03-13T23-23-44-ef9d07d
      2019-03-14T00-26-07-5568795
      2019-03-14T03-40-10-806cfe7
      2019-03-15T01-33-39-648b896
      2019-03-15T01-33-47-61d57a62
      2019-03-15T05-03-21-75fb184
      2019-03-15T05-03-30-4d2c0d53
      2019-03-15T05-09-19-cbcee57
      2019-03-15T05-09-35-519fb887
      2019-03-15T05-33-44-d008832
      2019-03-19T00-28-22-88ffeb5
      2019-03-19T00-30-59-070c3a0
      2019-03-20T02-17-59-e1e7997
      2019-03-20T05-29-23-55f1989
      2019-03-20T05-29-55-cdd0cbc
      2019-03-22T02-07-23-a35079e
      2019-03-22T05-12-51-10376ba
      2019-03-25T02-33-40-0759b8d
      2019-03-25T23-57-28-8ba2d1d
      2019-04-03T06-16-20-800ea0d
      2019-04-08T02-06-59-636f7b5
      2019-04-08T08-27-21-a8a273f
      2019-04-09T05-25-48-8bae13f
      2019-04-09T05-29-53-bd9240c
      2019-04-30T06-16-13-21dff06
      2019-04-30T09-15-46-9214b60
      2019-05-01T03-50-43-fccc0c7
      2019-05-08T00-35-46-439e342
      2019-05-08T02-44-45-b370703
      2019-05-08T02-56-27-cca4316
      2019-05-14T05-01-24-4fd3721
      2019-05-14T05-11-27-400d008
      2019-05-15T02-49-32-f210154
      2019-05-20T06-48-36-6211b41
      2019-05-27T00-36-13-3a76c4a
      2019-05-27T04-13-44-5373f96
      2019-06-02T22-40-24-fcf767d
      2019-06-02T22-45-30-ca06d0e
      2019-06-02T22-56-37-9a61bfe
      2019-06-02T22-59-08-c73f438
      2019-06-03T06-53-20-dca93a9
      2019-06-07T06-51-35-dbd4e5c
      2019-06-11T03-20-45-0a2bd30
      2019-06-11T23-47-53-e00b023
      2019-06-12T00-11-29-b63be73
      2019-06-12T00-15-04-812b16c
      2019-06-12T00-38-53-8b078c6
      2019-06-12T00-39-55-a79e385
      2019-06-12T01-22-00-6020f87
      2019-06-12T01-25-50-0fec4be
      2019-06-12T01-37-10-19c6d0e
      2019-06-12T01-52-32-821241d
      2019-06-12T02-31-14-25c8232
      2019-06-12T04-51-56-e994f41
      2019-06-30T23-27-16-d762310
      2019-07-01T00-55-49-7d393f2
      2019-07-13T23-07-14-8c71e18
      2019-07-15T04-01-33-505aa81
      2019-07-15T07-36-13-5761d24
      2019-07-16T03-12-18-3cbc1ad
      2019-07-22T04-16-08-a7fbf74
      2019-07-22T04-17-57-f8658f2
      2019-07-22T04-25-03-527c587
      2019-07-24T03-34-24-2e1e989
      2019-07-31T05-09-08-4cadb88
      2019-07-31T05-58-03-755f534
      2019-08-01T04-03-44-e9b53f6
      2019-08-02T04-53-20-6063e7e
      2019-08-05T08-05-20-1a9005b
      2019-08-05T23-30-46-c454ba2
      2019-08-12T01-44-36-bf793cd
      2019-08-19T04-09-16-346d65a
      2019-08-20T01-08-54-018b57c
      2019-08-21T00-49-42-2e990d1
      2019-08-21T21-45-38-376b03f
      2019-08-22T10-09-42-a6c4461
      2019-08-22T10-31-28-7ab93b9
      2019-08-22T10-35-04-37f3ae0
      2019-08-22T10-39-43-a6c4461
      2019-08-27T06-31-52-a897adc
      2019-08-28T11-47-05-b9487a9
      2019-09-03T10-51-46-6c01c80
      2019-09-03T10-52-49-bfb284b
      2019-09-07T05-58-28-e5a610f
      2019-09-07T08-04-35-735ce06
      2019-09-07T08-05-59-ac5bc70
      2019-09-07T08-08-53-173312e
      2019-09-19T04-42-21-1ea2ed2
      2019-09-19T06-25-59-5c242a1
      2019-09-22T22-20-34-9e83320
      2019-10-08T22-47-44-e938ab4
      2019-10-16T01-41-26-24f5233
      2019-10-20T21-46-20-a0a5d63
      2019-10-20T22-57-19-d6296e0
      2019-10-21T00-35-45-a74776c
      2019-10-24T23-50-27-97bffda
      2019-10-25T04-33-32-40db9de
      2019-10-25T08-51-57-a634053
      2019-10-31T04-37-48-0919e71
      2019-11-06T22-52-38-81c2a0f
      2019-11-07T04-06-09-70d9412
      2019-11-19T08-52-32-b46beb9
      2019-12-09T21-46-06-1b79628
      2019-12-09T21-46-27-74aed1a
      2019-12-30T22-55-41-9417e85
      2019-12-30T23-36-38-9e904ca
      2019-12-31T02-25-35-a83995a
      2020-01-03T02-30-05-b8be7d1
      2020-01-03T02-30-51-fb97f3e
      2020-01-05T23-01-12-2ba4a8b
      2020-01-08T08-53-38-a2dcfd6
      2020-01-09T05-33-37-df2835b
      2020-01-13T02-25-12-b623055
      2020-01-13T03-23-46-bcdc138
      2020-01-13T03-38-11-52de81a
      2020-01-13T06-33-52-50c242d
      2020-01-14T00-59-12-593322d
      2020-01-14T02-17-18-b5692e4
      2020-01-14T02-57-52-8fe5e53
      2020-01-14T02-58-58-f430282
      2020-01-14T05-48-31-952f075
      2020-01-14T06-42-43-bef3ac2
      2020-01-14T06-45-04-f40e454
      2020-01-14T23-35-06-d42516c
      2020-01-16T00-18-31-4cf3bdd
      2020-01-16T01-18-01-fd13faf
      2020-01-16T23-47-31-4533d01
      2020-01-16T23-48-44-eb6755b
      2020-01-16T23-58-55-fd9ce3a
      2020-01-17T00-14-43-8a58c25
      2020-01-17T00-41-05-5d4d25f
      2020-01-17T00-44-53-21cdd1d
      2020-01-17T00-46-52-8b78178
      2020-01-17T02-41-10-578985f
      2020-01-24T03-11-44-8a5fe91
      2020-01-29T00-34-54-44d9c56
      2020-01-29T23-51-37-f82b53c
      2020-02-03T01-49-24-d4f9b63
      2020-02-04T03-00-21-0a40ca4
      2020-02-06T00-24-40-5b511b8
      2020-02-09T23-23-33-8f335b3
      2020-02-10T04-57-01-e33c252
      2020-02-10T23-53-32-cfd210b
      2020-02-12T22-54-17-101dc6c
      2020-02-29T00-26-15-cf90d4a
      2020-02-29T01-57-30-987fd78
      2020-04-01T09-48-46-c98ebf7
      2020-04-04T07-05-23-9eae9c1
      2020-04-29T07-25-05-1a7c11c
      2020-05-07T00-47-53-9f8cc8e
      2020-05-08T01-07-05-c8de10e
      2020-05-19T06-33-01-57ce5cf
      2020-05-19T23-15-09-be48433
      2020-05-19T23-56-49-f409b66
      2020-05-20T03-21-18-21d1479
      2020-05-20T06-07-21-2e391c1
      2020-05-20T06-36-40-2a443b4
      2020-05-20T06-55-13-453773f
      2020-05-20T07-22-07-0b49de6
      2020-05-20T23-03-10-d9d29d9
      2020-05-20T23-17-21-bbb92ac
      2020-05-20T23-42-54-8f4cd45
      2020-05-21T05-06-09-4e43ef7
      2020-05-21T05-19-49-bdc958e
      2020-05-21T05-21-25-427f493
      2020-05-21T05-53-50-341e22c
      2020-05-21T07-38-42-2acb557
      2020-05-21T08-33-51-0b611f2
      2020-05-21T10-50-06-0a18992
      2020-05-21T23-09-51-9eb260e
      2020-05-22T05-23-36-4fe702b
      2020-05-22T05-46-34-000eb52
      2020-05-24T06-42-08-c508ac3
      2020-05-25T00-16-35-ebd15e0
      2020-05-25T00-18-12-74b4855
      2020-05-26T01-36-28-7770701
      2020-05-26T04-31-46-81d3ce4
      2020-05-27T11-37-07-bb47f29
      2020-05-28T00-32-38-497d2ac
      2020-05-28T02-17-41-bc29b5f
      2020-05-28T05-56-25-f328040
      2020-05-29T04-10-05-3dfbf01
      2020-06-05T10-44-09-eff6106
      2020-06-07T01-00-15-98bb45a
      2020-06-07T01-08-08-a9f7932
      2020-06-07T01-09-40-d94eacc
      2020-06-16T23-03-22-403a837
      2020-06-19T06-05-35-10eeacc
      2020-06-22T08-53-48-3101f48
      2020-06-22T09-12-11-a0d327d
      2020-06-22T09-38-54-c40fc1d
      2020-06-29T07-38-53-4a0a7af
      2020-06-30T22-36-45-ce7fd42
      2020-07-03T00-47-06-d3032e7
      2020-07-03T01-10-37-bb87d8f
      2020-08-24T06-09-06-d3b6af0
      2020-08-25T03-42-48-443390b
      2020-08-25T04-35-08-bab2a91
      2020-08-25T04-49-03-31f3d3f
      2020-08-25T05-10-41-2ed520e
      2020-08-25T06-42-13-d40046e
      2020-08-25T06-43-04-baeb392
      2020-08-25T06-43-52-1607bdf
      2020-08-25T07-30-29-fd556cc
      2020-08-25T07-31-26-c27a9cd
      2020-08-25T07-36-16-26a012c
      2020-08-25T07-38-57-05deb85
      2020-08-25T08-08-25-8b22a39
      2020-08-25T15-37-52-a7117f8
      2020-08-31T04-32-29-6a56b3a
      2020-09-08T04-55-10-f64f1cd
      2020-09-08T04-55-19-30e680b
      2020-09-08T04-56-12-5c5798e
      2020-09-08T04-56-57-be01c7f
      2020-09-08T04-57-53-264cb12
      2020-09-08T23-57-06-7ee7602
      2020-09-10T23-56-06-6f9b54d
      2020-09-10T23-59-03-dcdea33
      2020-09-13T08-18-38-7fc94c5
      2020-09-13T08-19-45-0d97d9d
      2020-09-13T08-20-40-c3c48a2
      2020-09-13T09-05-14-4b66774
      2020-09-14T23-02-53-a9151d3
      2020-09-14T23-03-24-5ebd3ac
      2020-09-14T23-04-32-61a78fe
      2020-09-17T10-31-42-09111ae
      2020-09-19T01-23-44-97a3073
      2020-09-19T01-24-58-592215d
      2020-09-21T10-25-11-af83f79
      2020-09-21T10-26-13-58daf97
      2020-09-23T01-42-02-53999d6
      2020-10-01T08-02-28-3998b0d
      2020-10-01T08-12-16-06593e2
      2020-10-01T08-12-52-24e4b17
      2020-10-01T08-13-33-6eb4df2
      2020-10-01T08-15-11-6cc1974
      2020-10-01T20-49-20-d2ca93c
      2020-10-01T21-02-05-1852cb7
      2020-10-01T21-06-37-558aeaa
      2020-10-06T07-50-37-7a8e903
      2020-10-09T06-02-11-8e55666
      2020-10-09T06-03-45-4a893b0
      2020-10-15T08-28-25-6af9785
      2020-10-16T05-33-59-df5bbde
      2020-10-20T00-43-22-34f34fe
      2020-10-20T01-20-15-2b4457c
      2020-10-21T10-06-46-49bbbeb
      2020-10-25T05-02-24-a39aec8
      2020-10-27T16-39-54-0de364a
      2020-10-27T17-35-04-0de364a
      2020-11-01T02-27-21-3295066
      2020-11-02T04-11-46-9ba7606
      2020-11-02T04-33-43-dd5d4d8
      2020-11-02T23-55-44-d576991
      2020-11-03T02-03-16-cf89ea3
      2020-11-04T22-40-01-afaa9aa
      2020-11-05T07-48-24-3dd5e02
      2020-11-10T10-26-00-07ca7ee
      2020-11-10T11-49-19-a1c123d
      2020-11-10T22-37-49-c801fd8
      2020-11-11T00-55-26-17f0e27
      2020-11-13T21-13-26-fb86ee6
      2020-11-16T00-00-07-ff3f691
      2020-11-16T00-02-27-3dfeae3
      2020-11-24T02-56-06-432d5f0
      2020-11-24T23-36-57-43668fb
      2020-11-28T08-02-26-b01df74
      2020-11-28T08-17-17-be8025f
      2020-12-09T22-35-43-9803c10
      2020-12-12T02-26-00-5e61bb3
      2020-12-13T07-30-15-d1a4c15
      2020-12-21T21-14-06-a12f84b
      2021-01-27T06-23-16-986ee60
      2021-01-29T11-36-47-b874235
      2021-01-30T04-10-11-59cd870
      2021-01-31T07-23-49-4d37858
      2021-02-02T00-45-04-fcce8632
      2021-02-02T01-21-59-55cccb55
      2021-02-02T01-28-37-13467897
      2021-02-02T01-34-58-8d747c1
      2021-02-02T01-35-37-3bae3c26
      2021-02-02T02-54-22-7c559d8d
      2021-02-02T02-59-50-70c1c921
      2021-02-02T03-06-53-a7c2d205
      2021-02-02T03-08-48-040823c2
      2021-02-02T03-45-35-79a57f67
      2021-02-02T03-49-01-6bf9674d
      2021-02-02T04-19-10-0e6921e1
      2021-02-06T05-29-55-33cd6e60
      2021-02-09T05-22-20-b645925f
      2021-02-10T08-16-57-4dbf45fd
      2021-02-13T02-14-19-a9de9cec
      2021-02-13T23-17-27-86627c27
      2021-02-17T06-17-55-6ffdd2d5
      2021-02-27T05-24-51-419acbb4
      2021-02-28T10-07-29-dbfb40d9
      2021-02-28T11-48-01-dc2cdda7
      2021-03-18T23-19-42-52ebe904
      2021-03-19T00-06-52-e166c255
      2021-03-19T01-12-05-a24cd52a
      2021-03-21T22-31-57-479b7a43
      2021-03-22T20-02-28-3a701a0f
      2021-03-25T09-33-46-e4c16ebb
      2021-03-25T21-09-07-5bc917f7
      2021-03-28T09-04-54-b1b364be
      2021-03-29T04-07-12-b98161f0
      2021-03-29T04-35-54-5e2ceda5
      2021-03-29T04-41-52-39ea068d
      2021-03-29T05-11-02-d63bb6b6
      2021-03-29T05-12-42-e5e8847b
      2021-03-29T05-13-32-fdea5cfc
      2021-03-29T21-50-33-a37cde2a
      2021-03-30T02-09-41-e91c8894
      2021-03-30T02-27-57-dbf4b18b
      2021-03-30T02-57-48-22314931
      2021-04-09T04-37-57-b510f5e6
      2021-04-11T23-40-30-f362d619
      2021-04-11T23-42-01-1d16e703
      2021-04-11T23-42-55-656f4e35
      2021-04-11T23-47-53-93cc5158
      2021-04-19T03-51-46-d783ec7e
      2021-04-27T02-21-11-eb3afc27
      2021-04-28T06-28-49-4d52fd0e
      2021-05-03T08-53-12-8f1ec444
      230521-nf-execution Latest Major
      +

      com.h2database:h2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.h2database
      Artifact Idh2
      Current Version2.1.214
      Scope
      Classifier
      Typejar
      Newer versions2.2.220
      2.2.222
      2.2.224 Latest Minor
      +

      com.hazelcast:hazelcast

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.hazelcast
      Artifact Idhazelcast
      Current Version5.1.7
      Scope
      Classifier
      Typejar
      Newer versions5.2-BETA-1
      5.2.0
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3.0-BETA-1
      5.3.0-BETA-2
      5.3.0
      5.3.1
      5.3.2
      5.3.4
      5.3.5
      5.3.6 Latest Minor
      +

      com.hazelcast:hazelcast-hibernate52

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.hazelcast
      Artifact Idhazelcast-hibernate52
      Current Version2.2.1
      Scope
      Classifier
      Typejar
      +

      com.hazelcast:hazelcast-hibernate53

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.hazelcast
      Artifact Idhazelcast-hibernate53
      Current Version2.2.1
      Scope
      Classifier
      Typejar
      Newer versions2.3.0 Latest Minor
      5.0.0
      5.1.0 Latest Major
      +

      com.hazelcast:hazelcast-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.hazelcast
      Artifact Idhazelcast-spring
      Current Version5.1.7
      Scope
      Classifier
      Typejar
      Newer versions5.2-BETA-1
      5.2.0
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3.0-BETA-1
      5.3.0-BETA-2
      5.3.0
      5.3.1
      5.3.2
      5.3.4
      5.3.5
      5.3.6 Latest Minor
      +

      com.ibm.db2:jcc

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.ibm.db2
      Artifact Idjcc
      Current Version11.5.9.0
      Scope
      Classifier
      Typejar
      +

      com.jayway.jsonpath:json-path

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.jayway.jsonpath
      Artifact Idjson-path
      Current Version2.7.0
      Scope
      Classifier
      Typejar
      Newer versions2.8.0
      2.9.0 Latest Minor
      +

      com.jayway.jsonpath:json-path-assert

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.jayway.jsonpath
      Artifact Idjson-path-assert
      Current Version2.7.0
      Scope
      Classifier
      Typejar
      Newer versions2.8.0
      2.9.0 Latest Minor
      +

      com.microsoft.sqlserver:mssql-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idcom.microsoft.sqlserver
      Artifact Idmssql-jdbc
      Current Version10.2.3.jre8
      Scope
      Classifier
      Typejar
      Newer versions10.2.3.jre11
      10.2.3.jre17 Latest Subincremental
      11.1.0-SNAPSHOT.jre8-preview
      11.1.0-SNAPSHOT.jre11-preview
      11.1.0-SNAPSHOT.jre17-preview
      11.1.0.jre8-preview
      11.1.0.jre11-preview
      11.1.0.jre17-preview
      11.1.1.jre8-preview
      11.1.1.jre11-preview
      11.1.1.jre17-preview
      11.1.1.jre18-preview
      11.1.2.jre8-preview
      11.1.2.jre11-preview
      11.1.2.jre17-preview
      11.1.2.jre18-preview
      11.2.0.jre8
      11.2.0.jre11
      11.2.0.jre17
      11.2.0.jre18
      11.2.1.jre8
      11.2.1.jre11
      11.2.1.jre17
      11.2.1.jre18
      11.2.2.jre8
      11.2.2.jre11
      11.2.2.jre17
      11.2.2.jre18
      11.2.3.jre8
      11.2.3.jre11
      11.2.3.jre17
      11.2.3.jre18
      12.1.0.jre8-preview
      12.1.0.jre11-preview
      12.2.0.jre8
      12.2.0.jre11
      12.3.0.jre8-preview
      12.3.0.jre11-preview
      12.3.0.jre17-preview
      12.3.0.jre20-preview
      12.3.1.jre8-preview
      12.3.1.jre11-preview
      12.4.0.jre8
      12.4.0.jre8-preview
      12.4.0.jre11
      12.4.0.jre11-preview
      12.4.1.jre8
      12.4.1.jre11
      12.4.2.jre8
      12.4.2.jre11
      12.5.0.jre8-preview
      12.5.0.jre11-preview
      12.6.0.jre8
      12.6.0.jre11 Latest Major
      +

      com.mysql:mysql-connector-j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.mysql
      Artifact Idmysql-connector-j
      Current Version8.0.33
      Scope
      Classifier
      Typejar
      Newer versions8.1.0
      8.2.0
      8.3.0 Latest Minor
      +

      com.oracle.database.ha:ons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.ha
      Artifact Idons
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.ha:simplefan

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.ha
      Artifact Idsimplefan
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc11
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc11-production

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc11-production
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc8
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ojdbc8-production

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idojdbc8-production
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:rsi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Idrsi
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ucp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Iducp
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc:ucp11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc
      Artifact Iducp11
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.jdbc.debug:ojdbc11-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc11-observability-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11-observability-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc11_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc11dms_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc11dms_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8-observability-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8-observability-debug
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.jdbc.debug:ojdbc8dms_g

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.jdbc.debug
      Artifact Idojdbc8dms_g
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.nls:orai18n

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.nls
      Artifact Idorai18n
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.observability:dms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Iddms
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.observability:ojdbc11-observability

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc11-observability
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.observability:ojdbc11dms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc11dms
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.observability:ojdbc8-observability

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc8-observability
      Current Version21.5.0.0
      Scope
      Classifier
      Typepom
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.observability:ojdbc8dms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.observability
      Artifact Idojdbc8dms
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.r2dbc:oracle-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.oracle.database.r2dbc
      Artifact Idoracle-r2dbc
      Current Version0.4.0
      Scope
      Classifier
      Typejar
      Newer versions1.0.0
      1.1.0
      1.1.1
      1.2.0 Latest Major
      +

      com.oracle.database.security:oraclepki

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.security
      Artifact Idoraclepki
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.security:osdt_cert

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.security
      Artifact Idosdt_cert
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.security:osdt_core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.security
      Artifact Idosdt_core
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      +

      com.oracle.database.xml:xdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.xml
      Artifact Idxdb
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.oracle.database.xml:xmlparserv2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.oracle.database.xml
      Artifact Idxmlparserv2
      Current Version21.5.0.0
      Scope
      Classifier
      Typejar
      Newer versions21.6.0.0
      21.6.0.0.1
      21.7.0.0
      21.8.0.0
      21.9.0.0
      21.10.0.0
      21.11.0.0 Latest Minor
      23.2.0.0
      23.3.0.23.09 Latest Major
      +

      com.querydsl:querydsl-apt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-apt
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-codegen-utils

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.querydsl
      Artifact Idquerydsl-codegen-utils
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      +

      com.querydsl:querydsl-collections

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-collections
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-core
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-guava
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-hibernate-search

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-hibernate-search
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-jdo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-jdo
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-jpa
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-jpa-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-jpa-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-kotlin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-kotlin
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-kotlin-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-kotlin-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-lucene3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-lucene3
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-lucene4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-lucene4
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-lucene5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-lucene5
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-mongodb
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-scala

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-scala
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-spatial

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-spatial
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql-codegen
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql-spatial

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql-spatial
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.querydsl:querydsl-sql-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.querydsl
      Artifact Idquerydsl-sql-spring
      Current Version5.0.0
      Scope
      Classifier
      Typejar
      Newer versions5.1.0 Latest Minor
      +

      com.rabbitmq:amqp-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.rabbitmq
      Artifact Idamqp-client
      Current Version5.14.3
      Scope
      Classifier
      Typejar
      Newer versions5.15.0
      5.16.0
      5.16.1
      5.17.0
      5.17.1
      5.18.0
      5.19.0
      5.20.0 Latest Minor
      +

      com.rabbitmq:stream-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.rabbitmq
      Artifact Idstream-client
      Current Version0.5.0
      Scope
      Classifier
      Typejar
      Newer versions0.6.0
      0.7.0
      0.8.0
      0.9.0
      0.10.0
      0.11.0
      0.12.0
      0.13.0
      0.14.0
      0.15.0 Latest Minor
      +

      com.samskivert:jmustache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.samskivert
      Artifact Idjmustache
      Current Version1.15
      Scope
      Classifier
      Typejar
      Newer versions1.16 Latest Minor
      +

      com.sendgrid:sendgrid-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.sendgrid
      Artifact Idsendgrid-java
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0
      4.10.1 Latest Minor
      +

      com.squareup.okhttp3:logging-interceptor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idlogging-interceptor
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:mockwebserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idmockwebserver
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okcurl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokcurl
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-brotli

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-brotli
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-dnsoverhttps

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-dnsoverhttps
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-sse

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-sse
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-tls

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-tls
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.squareup.okhttp3:okhttp-urlconnection

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcom.squareup.okhttp3
      Artifact Idokhttp-urlconnection
      Current Version4.9.3
      Scope
      Classifier
      Typejar
      Newer versions4.10.0-RC1
      4.10.0
      4.11.0
      4.12.0 Latest Minor
      5.0.0-alpha.1
      5.0.0-alpha.2
      5.0.0-alpha.3
      5.0.0-alpha.4
      5.0.0-alpha.5
      5.0.0-alpha.6
      5.0.0-alpha.7
      5.0.0-alpha.8
      5.0.0-alpha.9
      5.0.0-alpha.10
      5.0.0-alpha.11
      5.0.0-alpha.12 Latest Major
      +

      com.sun.activation:jakarta.activation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.sun.activation
      Artifact Idjakarta.activation
      Current Version1.2.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-rc1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1 Latest Major
      +

      com.sun.mail:jakarta.mail

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.sun.mail
      Artifact Idjakarta.mail
      Current Version1.6.7
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0-RC4
      2.0.0-RC5
      2.0.0-RC6
      2.0.0
      2.0.1 Latest Major
      +

      com.sun.xml.messaging.saaj:saaj-impl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.sun.xml.messaging.saaj
      Artifact Idsaaj-impl
      Current Version1.5.3
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0
      2.0.1
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      com.unboundid:unboundid-ldapsdk

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idcom.unboundid
      Artifact Idunboundid-ldapsdk
      Current Version6.0.10
      Scope
      Classifier
      Typejar
      Newer versions6.0.11 Latest Incremental
      +

      com.zaxxer:HikariCP

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idcom.zaxxer
      Artifact IdHikariCP
      Current Version4.0.3
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0 Latest Major
      +

      commons-codec:commons-codec

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idcommons-codec
      Artifact Idcommons-codec
      Current Version1.15
      Scope
      Classifier
      Typejar
      Newer versions1.16.0
      1.16.1 Latest Minor
      +

      commons-pool:commons-pool

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcommons-pool
      Artifact Idcommons-pool
      Current Version1.6
      Scope
      Classifier
      Typejar
      +

      de.flapdoodle.embed:de.flapdoodle.embed.mongo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idde.flapdoodle.embed
      Artifact Idde.flapdoodle.embed.mongo
      Current Version3.4.11
      Scope
      Classifier
      Typejar
      Newer versions3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4 Latest Minor
      4.0.0-beta
      4.0.1-beta
      4.0.2-beta
      4.0.3-beta
      4.0.4-beta
      4.0.5-beta
      4.0.6-beta
      4.0.7-beta
      4.0.8-beta
      4.0.9-beta
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.2.0
      4.3.0
      4.3.1
      4.3.2
      4.3.3
      4.4.0
      4.4.1
      4.5.0
      4.5.1
      4.6.0
      4.6.1
      4.6.2
      4.6.3
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.9.0
      4.9.1
      4.9.2
      4.9.3
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1
      4.12.0
      4.12.1
      4.12.2 Latest Major
      +

      io.dropwizard.metrics:metrics-annotation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-annotation
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-caffeine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-caffeine
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-caffeine3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-caffeine3
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-collectd

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-collectd
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-core
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-ehcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-ehcache
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-graphite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-graphite
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-healthchecks

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-healthchecks
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-httpasyncclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-httpasyncclient
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-httpclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-httpclient
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-httpclient5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-httpclient5
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jakarta-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jakarta-servlet
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jakarta-servlet6

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jakarta-servlet6
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jakarta-servlets

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jakarta-servlets
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jcache
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jdbi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jdbi
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jdbi3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jdbi3
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jersey2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jersey2
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jersey3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jersey3
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jersey31

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jersey31
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty10

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty10
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty11

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty11
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty12
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty12-ee10

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty12-ee10
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jetty9

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jetty9
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jmx
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-json
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-jvm
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-log4j2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-log4j2
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-logback

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-logback
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-logback13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-logback13
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-logback14

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-logback14
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-servlet
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.dropwizard.metrics:metrics-servlets

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.dropwizard.metrics
      Artifact Idmetrics-servlets
      Current Version4.2.22
      Scope
      Classifier
      Typejar
      Newer versions4.2.23
      4.2.24
      4.2.25 Latest Incremental
      +

      io.lettuce:lettuce-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.lettuce
      Artifact Idlettuce-core
      Current Version6.1.10.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions6.2.0.RELEASE
      6.2.1.RELEASE
      6.2.2.RELEASE
      6.2.3.RELEASE
      6.2.4.RELEASE
      6.2.5.RELEASE
      6.2.6.RELEASE
      6.2.7.RELEASE
      6.3.0.RELEASE
      6.3.1.RELEASE Latest Minor
      +

      io.micrometer:micrometer-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-core
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-appoptics

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-appoptics
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-atlas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-atlas
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-azure-monitor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-azure-monitor
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-cloudwatch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-cloudwatch
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-cloudwatch2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-cloudwatch2
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-datadog

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-datadog
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-dynatrace

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-dynatrace
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-elastic

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-elastic
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-ganglia

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-ganglia
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-graphite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-graphite
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-health

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-health
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-humio

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-humio
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-influx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-influx
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-jmx
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-kairos

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-kairos
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-new-relic

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-new-relic
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-opentsdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-opentsdb
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-otlp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-otlp
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-prometheus

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-prometheus
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-signalfx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-signalfx
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-stackdriver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-stackdriver
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-statsd

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-statsd
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-registry-wavefront

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-registry-wavefront
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.micrometer:micrometer-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.micrometer
      Artifact Idmicrometer-test
      Current Version1.9.17
      Scope
      Classifier
      Typejar
      Newer versions1.10.0-M1
      1.10.0-M2
      1.10.0-M3
      1.10.0-M4
      1.10.0-M5
      1.10.0-M6
      1.10.0-RC1
      1.10.0
      1.10.1
      1.10.2
      1.10.3
      1.10.4
      1.10.5
      1.10.6
      1.10.7
      1.10.8
      1.10.9
      1.10.10
      1.10.11
      1.10.12
      1.10.13
      1.11.0-M1
      1.11.0-M2
      1.11.0-RC1
      1.11.0
      1.11.1
      1.11.2
      1.11.3
      1.11.4
      1.11.5
      1.11.6
      1.11.7
      1.11.8
      1.12.0-M1
      1.12.0-M2
      1.12.0-M3
      1.12.0-RC1
      1.12.0
      1.12.1
      1.12.2 Latest Minor
      +

      io.netty:netty-all

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-all
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-buffer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-buffer
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-dns

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-dns
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-haproxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-haproxy
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-http
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-http2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-http2
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-memcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-memcache
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-mqtt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-mqtt
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-redis
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-codec-smtp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-smtp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-codec-socks

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-socks
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-stomp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-stomp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-codec-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-codec-xml
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-common
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-dev-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-dev-tools
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-example

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-example
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-handler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-handler
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-handler-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-handler-proxy
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-handler-ssl-ocsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-handler-ssl-ocsp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-resolver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-resolver-dns

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver-dns
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-resolver-dns-classes-macos

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver-dns-classes-macos
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-resolver-dns-native-macos

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-resolver-dns-native-macos
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-tcnative

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-tcnative
      Current Version2.0.61.Final
      Scope
      Classifierlinux-x86_64
      Typejar
      Newer versions2.0.62.Final Latest Incremental
      +

      io.netty:netty-tcnative-boringssl-static

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-tcnative-boringssl-static
      Current Version2.0.61.Final
      Scope
      Classifier
      Typejar
      Newer versions2.0.62.Final Latest Incremental
      +

      io.netty:netty-tcnative-classes

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-tcnative-classes
      Current Version2.0.61.Final
      Scope
      Classifier
      Typejar
      Newer versions2.0.62.Final Latest Incremental
      +

      io.netty:netty-transport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-classes-epoll

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-classes-epoll
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-classes-kqueue

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-classes-kqueue
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-native-epoll

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-native-epoll
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-native-kqueue

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-native-kqueue
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-native-unix-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-native-unix-common
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      +

      io.netty:netty-transport-rxtx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-rxtx
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-sctp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-sctp
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.netty:netty-transport-udt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.netty
      Artifact Idnetty-transport-udt
      Current Version4.1.101.Final
      Scope
      Classifier
      Typejar
      Newer versions4.1.102.Final
      4.1.103.Final
      4.1.104.Final
      4.1.105.Final
      4.1.106.Final Latest Incremental
      5.0.0.Alpha1
      5.0.0.Alpha2 Latest Major
      +

      io.projectreactor:reactor-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor
      Artifact Idreactor-core
      Current Version3.4.34
      Scope
      Classifier
      Typejar
      Newer versions3.4.35 Latest Incremental
      3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4
      3.5.5
      3.5.6
      3.5.7
      3.5.8
      3.5.9
      3.5.10
      3.5.11
      3.5.12
      3.5.13
      3.5.14
      3.6.0-M1
      3.6.0-M2
      3.6.0-M3
      3.6.0-RC1
      3.6.0
      3.6.1
      3.6.2 Latest Minor
      +

      io.projectreactor:reactor-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor
      Artifact Idreactor-test
      Current Version3.4.34
      Scope
      Classifier
      Typejar
      Newer versions3.4.35 Latest Incremental
      3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4
      3.5.5
      3.5.6
      3.5.7
      3.5.8
      3.5.9
      3.5.10
      3.5.11
      3.5.12
      3.5.13
      3.5.14
      3.6.0-M1
      3.6.0-M2
      3.6.0-M3
      3.6.0-RC1
      3.6.0
      3.6.1
      3.6.2 Latest Minor
      +

      io.projectreactor:reactor-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor
      Artifact Idreactor-tools
      Current Version3.4.34
      Scope
      Classifier
      Typejar
      Newer versions3.4.35 Latest Incremental
      3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1
      3.5.2
      3.5.3
      3.5.4
      3.5.5
      3.5.6
      3.5.7
      3.5.8
      3.5.9
      3.5.10
      3.5.11
      3.5.12
      3.5.13
      3.5.14
      3.6.0-M1
      3.6.0-M2
      3.6.0-M3
      3.6.0-RC1
      3.6.0
      3.6.1
      3.6.2 Latest Minor
      +

      io.projectreactor.addons:reactor-adapter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.projectreactor.addons
      Artifact Idreactor-adapter
      Current Version3.4.10
      Scope
      Classifier
      Typejar
      Newer versions3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1 Latest Minor
      +

      io.projectreactor.addons:reactor-extra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.projectreactor.addons
      Artifact Idreactor-extra
      Current Version3.4.10
      Scope
      Classifier
      Typejar
      Newer versions3.5.0-M1
      3.5.0-M2
      3.5.0-M3
      3.5.0-M4
      3.5.0-M5
      3.5.0-M6
      3.5.0-RC1
      3.5.0
      3.5.1 Latest Minor
      +

      io.projectreactor.addons:reactor-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.projectreactor.addons
      Artifact Idreactor-pool
      Current Version0.2.12
      Scope
      Classifier
      Typejar
      Newer versions1.0.0-M1
      1.0.0-M3
      1.0.0-M4
      1.0.0-M5
      1.0.0-M6
      1.0.0-RC1
      1.0.0
      1.0.1
      1.0.2
      1.0.3
      1.0.4
      1.0.5 Latest Major
      +

      io.projectreactor.kafka:reactor-kafka

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.projectreactor.kafka
      Artifact Idreactor-kafka
      Current Version1.3.22
      Scope
      Classifier
      Typejar
      +

      io.projectreactor.kotlin:reactor-kotlin-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.projectreactor.kotlin
      Artifact Idreactor-kotlin-extensions
      Current Version1.1.10
      Scope
      Classifier
      Typejar
      Newer versions1.2.0-M1
      1.2.0-M3
      1.2.0-M4
      1.2.0-M5
      1.2.0-M6
      1.2.0-RC1
      1.2.0
      1.2.1
      1.2.2 Latest Minor
      +

      io.projectreactor.netty:reactor-netty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.netty:reactor-netty-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty-core
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.netty:reactor-netty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty-http
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.netty:reactor-netty-http-brave

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.projectreactor.netty
      Artifact Idreactor-netty-http-brave
      Current Version1.0.39
      Scope
      Classifier
      Typejar
      Newer versions1.0.40
      1.0.41 Latest Incremental
      1.1.0-M1
      1.1.0-M2
      1.1.0-M3
      1.1.0-M4
      1.1.0-M5
      1.1.0-M6
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.1.8
      1.1.9
      1.1.10
      1.1.11
      1.1.12
      1.1.13
      1.1.14
      1.1.15 Latest Minor
      +

      io.projectreactor.rabbitmq:reactor-rabbitmq

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.projectreactor.rabbitmq
      Artifact Idreactor-rabbitmq
      Current Version1.5.6
      Scope
      Classifier
      Typejar
      +

      io.prometheus:simpleclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_caffeine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_caffeine
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_common
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_dropwizard

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_dropwizard
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_graphite_bridge

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_graphite_bridge
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_guava
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_hibernate

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_hibernate
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_hotspot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_hotspot
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_httpserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_httpserver
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_jetty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_jetty
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_jetty_jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_jetty_jdk8
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_log4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_log4j
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_log4j2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_log4j2
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_logback

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_logback
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_pushgateway

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_pushgateway
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_servlet
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_servlet_jakarta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_servlet_jakarta
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_spring_boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_spring_boot
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_spring_web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_spring_web
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_tracer_otel

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_tracer_otel
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_tracer_otel_agent

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_tracer_otel_agent
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.prometheus:simpleclient_vertx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.prometheus
      Artifact Idsimpleclient_vertx
      Current Version0.15.0
      Scope
      Classifier
      Typejar
      Newer versions0.16.0 Latest Minor
      +

      io.r2dbc:r2dbc-h2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-h2
      Current Version0.9.1.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.M6
      1.0.0.M7
      1.0.0.RC1
      1.0.0.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-mssql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idio.r2dbc
      Artifact Idr2dbc-mssql
      Current Version0.9.0.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions0.9.0.SONATYPE-M4 Latest Subincremental
      1.0.0.M6
      1.0.0.M7
      1.0.0.RC1
      1.0.0.RELEASE
      1.0.1.RELEASE
      1.0.2.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-pool
      Current Version0.9.2.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.RC1
      1.0.0.RELEASE
      1.0.1.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-proxy
      Current Version0.9.1.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.M7
      1.0.0.RELEASE
      1.0.1.RELEASE
      1.1.0.RELEASE
      1.1.1.RELEASE
      1.1.2.RELEASE
      1.1.3.RELEASE
      1.1.4.RELEASE Latest Major
      +

      io.r2dbc:r2dbc-spi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.r2dbc
      Artifact Idr2dbc-spi
      Current Version0.9.1.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.0.0.M4
      1.0.0.M5
      1.0.0.M6
      1.0.0.M7
      1.0.0.RELEASE Latest Major
      +

      io.reactivex:rxjava

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.reactivex
      Artifact Idrxjava
      Current Version1.3.8
      Scope
      Classifier
      Typejar
      +

      io.reactivex:rxjava-reactive-streams

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.reactivex
      Artifact Idrxjava-reactive-streams
      Current Version1.2.1
      Scope
      Classifier
      Typejar
      +

      io.reactivex.rxjava2:rxjava

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.reactivex.rxjava2
      Artifact Idrxjava
      Current Version2.2.21
      Scope
      Classifier
      Typejar
      +

      io.rest-assured:json-path

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idjson-path
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:json-schema-validator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idjson-schema-validator
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:kotlin-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idkotlin-extensions
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:rest-assured

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idrest-assured
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:rest-assured-all

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idrest-assured-all
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:rest-assured-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idrest-assured-common
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:scala-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idscala-support
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-commons
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-mock-mvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-mock-mvc
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-mock-mvc-kotlin-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-mock-mvc-kotlin-extensions
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:spring-web-test-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idspring-web-test-client
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured:xml-path

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idio.rest-assured
      Artifact Idxml-path
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions5.0.0
      5.0.1
      5.1.0
      5.1.1
      5.2.0
      5.2.1
      5.3.0
      5.3.1
      5.3.2
      5.4.0 Latest Major
      +

      io.rest-assured.examples:kotlin-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idkotlin-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:rest-assured-itest-java

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idrest-assured-itest-java
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scala-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscala-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scala-mock-mvc-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscala-mock-mvc-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scalatra-example

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscalatra-example
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      +

      io.rest-assured.examples:scalatra-webapp

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idscalatra-webapp
      Current Version4.5.1
      Scope
      Classifier
      Typewar
      +

      io.rest-assured.examples:spring-mvc-webapp

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.rest-assured.examples
      Artifact Idspring-mvc-webapp
      Current Version4.5.1
      Scope
      Classifier
      Typewar
      +

      io.rsocket:rsocket-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-core
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-load-balancer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-load-balancer
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-micrometer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-micrometer
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-test
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-transport-local

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-transport-local
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.rsocket:rsocket-transport-netty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idio.rsocket
      Artifact Idrsocket-transport-netty
      Current Version1.1.3
      Scope
      Classifier
      Typejar
      Newer versions1.1.4 Latest Incremental
      +

      io.spring.gradle:dependency-management-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.spring.gradle
      Artifact Iddependency-management-plugin
      Current Version1.0.15.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4 Latest Minor
      +

      io.undertow:undertow-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.undertow
      Artifact Idundertow-core
      Current Version2.2.28.Final
      Scope
      Classifier
      Typejar
      Newer versions2.3.0.Alpha1
      2.3.0.Alpha2
      2.3.0.Beta1
      2.3.0.Final
      2.3.1.Final
      2.3.2.Final
      2.3.3.Final
      2.3.4.Final
      2.3.5.Final
      2.3.6.Final
      2.3.7.Final
      2.3.8.Final
      2.3.9.Final
      2.3.10.Final Latest Minor
      +

      io.undertow:undertow-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.undertow
      Artifact Idundertow-servlet
      Current Version2.2.28.Final
      Scope
      Classifier
      Typejar
      Newer versions2.3.0.Alpha1
      2.3.0.Alpha2
      2.3.0.Beta1
      2.3.0.Final
      2.3.1.Final
      2.3.2.Final
      2.3.3.Final
      2.3.4.Final
      2.3.5.Final
      2.3.6.Final
      2.3.7.Final
      2.3.8.Final
      2.3.9.Final
      2.3.10.Final Latest Minor
      +

      io.undertow:undertow-websockets-jsr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idio.undertow
      Artifact Idundertow-websockets-jsr
      Current Version2.2.28.Final
      Scope
      Classifier
      Typejar
      Newer versions2.3.0.Alpha1
      2.3.0.Alpha2
      2.3.0.Beta1
      2.3.0.Final
      2.3.1.Final
      2.3.2.Final
      2.3.3.Final
      2.3.4.Final
      2.3.5.Final
      2.3.6.Final
      2.3.7.Final
      2.3.8.Final
      2.3.9.Final
      2.3.10.Final Latest Minor
      +

      jakarta.activation:jakarta.activation-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.activation
      Artifact Idjakarta.activation-api
      Current Version1.2.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-rc1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1
      2.1.0-RC1
      2.1.0-RC2
      2.1.0
      2.1.1
      2.1.2 Latest Major
      +

      jakarta.annotation:jakarta.annotation-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.annotation
      Artifact Idjakarta.annotation-api
      Current Version1.3.5
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0
      2.1.0-B1
      2.1.0
      2.1.1
      3.0.0-M1 Latest Major
      +

      jakarta.jms:jakarta.jms-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.jms
      Artifact Idjakarta.jms-api
      Current Version2.0.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0
      3.1.0 Latest Major
      +

      jakarta.json:jakarta.json-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.json
      Artifact Idjakarta.json-api
      Current Version1.1.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1
      2.0.2
      2.1.0-RC1
      2.1.0
      2.1.1
      2.1.2
      2.1.3 Latest Major
      +

      jakarta.json.bind:jakarta.json.bind-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.json.bind
      Artifact Idjakarta.json.bind-api
      Current Version1.0.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0
      3.0.0-RC1
      3.0.0 Latest Major
      +

      jakarta.mail:jakarta.mail-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.mail
      Artifact Idjakarta.mail-api
      Current Version1.6.7
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0-RC4
      2.0.0-RC5
      2.0.0-RC6
      2.0.0
      2.0.1
      2.1.0-RC1
      2.1.0-RC2
      2.1.0
      2.1.1
      2.1.2 Latest Major
      +

      jakarta.management.j2ee:jakarta.management.j2ee-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjakarta.management.j2ee
      Artifact Idjakarta.management.j2ee-api
      Current Version1.1.4
      Scope
      Classifier
      Typejar
      +

      jakarta.persistence:jakarta.persistence-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.persistence
      Artifact Idjakarta.persistence-api
      Current Version2.2.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.2.0-B01
      3.2.0-B02
      3.2.0-M1 Latest Major
      +

      jakarta.servlet:jakarta.servlet-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.servlet
      Artifact Idjakarta.servlet-api
      Current Version4.0.4
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0
      6.0.0
      6.1.0-M1 Latest Major
      +

      jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.servlet.jsp.jstl
      Artifact Idjakarta.servlet.jsp.jstl-api
      Current Version1.2.7
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0
      3.0.0 Latest Major
      +

      jakarta.transaction:jakarta.transaction-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.transaction
      Artifact Idjakarta.transaction-api
      Current Version1.3.3
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1-RC1
      2.0.1 Latest Major
      +

      jakarta.validation:jakarta.validation-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.validation
      Artifact Idjakarta.validation-api
      Current Version2.0.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0
      3.0.1
      3.0.2
      3.1.0-M1 Latest Major
      +

      jakarta.websocket:jakarta.websocket-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.websocket
      Artifact Idjakarta.websocket-api
      Current Version1.1.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0-RC1
      2.0.0
      2.1.0
      2.1.1
      2.2.0-M1 Latest Major
      +

      jakarta.ws.rs:jakarta.ws.rs-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.ws.rs
      Artifact Idjakarta.ws.rs-api
      Current Version2.1.6
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0
      3.1.0 Latest Major
      +

      jakarta.xml.bind:jakarta.xml.bind-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.xml.bind
      Artifact Idjakarta.xml.bind-api
      Current Version2.3.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0-RC2
      3.0.0-RC3
      3.0.0
      3.0.1
      4.0.0-RC1
      4.0.0-RC2
      4.0.0-RC3
      4.0.0
      4.0.1 Latest Major
      +

      jakarta.xml.soap:jakarta.xml.soap-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.xml.soap
      Artifact Idjakarta.xml.soap-api
      Current Version1.4.2
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-RC1
      2.0.0-RC2
      2.0.0-RC3
      2.0.0
      2.0.1
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1 Latest Major
      +

      jakarta.xml.ws:jakarta.xml.ws-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjakarta.xml.ws
      Artifact Idjakarta.xml.ws-api
      Current Version2.3.3
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-RC1
      3.0.0-RC2
      3.0.0-RC3
      3.0.0
      3.0.1
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1 Latest Major
      +

      javax.activation:javax.activation-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.activation
      Artifact Idjavax.activation-api
      Current Version1.2.0
      Scope
      Classifier
      Typejar
      +

      javax.annotation:javax.annotation-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.annotation
      Artifact Idjavax.annotation-api
      Current Version1.3.2
      Scope
      Classifier
      Typejar
      +

      javax.cache:cache-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.cache
      Artifact Idcache-api
      Current Version1.1.1
      Scope
      Classifier
      Typejar
      +

      javax.jms:javax.jms-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.jms
      Artifact Idjavax.jms-api
      Current Version2.0.1
      Scope
      Classifier
      Typejar
      +

      javax.json:javax.json-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.json
      Artifact Idjavax.json-api
      Current Version1.1.4
      Scope
      Classifier
      Typejar
      +

      javax.json.bind:javax.json.bind-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.json.bind
      Artifact Idjavax.json.bind-api
      Current Version1.0
      Scope
      Classifier
      Typejar
      +

      javax.mail:javax.mail-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.mail
      Artifact Idjavax.mail-api
      Current Version1.6.2
      Scope
      Classifier
      Typejar
      +

      javax.money:money-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.money
      Artifact Idmoney-api
      Current Version1.1
      Scope
      Classifier
      Typejar
      +

      javax.persistence:javax.persistence-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.persistence
      Artifact Idjavax.persistence-api
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      javax.servlet:javax.servlet-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.servlet
      Artifact Idjavax.servlet-api
      Current Version4.0.1
      Scope
      Classifier
      Typejar
      +

      javax.servlet:jstl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.servlet
      Artifact Idjstl
      Current Version1.2
      Scope
      Classifier
      Typejar
      +

      javax.transaction:javax.transaction-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.transaction
      Artifact Idjavax.transaction-api
      Current Version1.3
      Scope
      Classifier
      Typejar
      +

      javax.validation:validation-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.validation
      Artifact Idvalidation-api
      Current Version2.0.1.Final
      Scope
      Classifier
      Typejar
      +

      javax.websocket:javax.websocket-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.websocket
      Artifact Idjavax.websocket-api
      Current Version1.1
      Scope
      Classifier
      Typejar
      +

      javax.xml.bind:jaxb-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idjavax.xml.bind
      Artifact Idjaxb-api
      Current Version2.3.1
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0427
      2.4.0-b180830.0359 Latest Minor
      +

      javax.xml.ws:jaxws-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjavax.xml.ws
      Artifact Idjaxws-api
      Current Version2.3.1
      Scope
      Classifier
      Typejar
      +

      jaxen:jaxen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idjaxen
      Artifact Idjaxen
      Current Version1.2.0
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-beta-1
      2.0.0 Latest Major
      +

      junit:junit

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idjunit
      Artifact Idjunit
      Current Version4.13.2
      Scope
      Classifier
      Typejar
      +

      net.bytebuddy:byte-buddy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.bytebuddy
      Artifact Idbyte-buddy
      Current Version1.12.23
      Scope
      Classifier
      Typejar
      Newer versions1.13.0
      1.14.0
      1.14.1
      1.14.2
      1.14.3
      1.14.4
      1.14.5
      1.14.6
      1.14.7
      1.14.8
      1.14.9
      1.14.10
      1.14.11 Latest Minor
      +

      net.bytebuddy:byte-buddy-agent

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.bytebuddy
      Artifact Idbyte-buddy-agent
      Current Version1.12.23
      Scope
      Classifier
      Typejar
      Newer versions1.13.0
      1.14.0
      1.14.1
      1.14.2
      1.14.3
      1.14.4
      1.14.5
      1.14.6
      1.14.7
      1.14.8
      1.14.9
      1.14.10
      1.14.11 Latest Minor
      +

      net.minidev:json-smart

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.minidev
      Artifact Idjson-smart
      Current Version2.4.11
      Scope
      Classifier
      Typejar
      Newer versions2.5.0 Latest Minor
      +

      net.sf.ehcache:ehcache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.sf.ehcache
      Artifact Idehcache
      Current Version2.10.9.2
      Scope
      Classifier
      Typejar
      +

      net.sourceforge.htmlunit:htmlunit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnet.sourceforge.htmlunit
      Artifact Idhtmlunit
      Current Version2.60.0
      Scope
      Classifier
      Typejar
      Newer versions2.61.0
      2.62.0
      2.63.0
      2.64.0
      2.65.0
      2.65.1
      2.66.0
      2.67.0
      2.68.0
      2.69.0
      2.70.0 Latest Minor
      +

      net.sourceforge.jtds:jtds

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.sourceforge.jtds
      Artifact Idjtds
      Current Version1.3.1
      Scope
      Classifier
      Typejar
      +

      net.sourceforge.nekohtml:nekohtml

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.sourceforge.nekohtml
      Artifact Idnekohtml
      Current Version1.9.22
      Scope
      Classifier
      Typejar
      +

      nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idnz.net.ultraq.thymeleaf
      Artifact Idthymeleaf-layout-dialect
      Current Version3.0.0
      Scope
      Classifier
      Typejar
      Newer versions3.1.0
      3.2.0
      3.2.1
      3.3.0 Latest Minor
      +

      org.apache.activemq:activemq-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-amqp
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-blueprint

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-blueprint
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-broker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-broker
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-camel

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.activemq
      Artifact Idactivemq-camel
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      +

      org.apache.activemq:activemq-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-client
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-console
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-http
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-jaas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-jaas
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-jdbc-store

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-jdbc-store
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-jms-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-jms-pool
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-kahadb-store

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-kahadb-store
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-karaf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-karaf
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-leveldb-store

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.activemq
      Artifact Idactivemq-leveldb-store
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      +

      org.apache.activemq:activemq-log4j-appender

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-log4j-appender
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-mqtt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-mqtt
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-openwire-generator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-openwire-generator
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-openwire-legacy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-openwire-legacy
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-osgi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-osgi
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-partition

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-partition
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      +

      org.apache.activemq:activemq-pool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-pool
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-ra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-ra
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-run

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-run
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-runtime-config

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-runtime-config
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-shiro

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-shiro
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-spring
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-stomp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-stomp
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:activemq-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idactivemq-web
      Current Version5.16.7
      Scope
      Classifier
      Typejar
      Newer versions5.17.0
      5.17.1
      5.17.2
      5.17.3
      5.17.4
      5.17.5
      5.17.6
      5.18.0
      5.18.1
      5.18.2
      5.18.3 Latest Minor
      6.0.0
      6.0.1 Latest Major
      +

      org.apache.activemq:artemis-amqp-protocol

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-amqp-protocol
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-commons
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-core-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-core-client
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-jdbc-store

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-jdbc-store
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-jms-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-jms-client
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-jms-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-jms-server
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-journal

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-journal
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-quorum-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-quorum-api
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-selector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-selector
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-server
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.activemq:artemis-service-extensions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.activemq
      Artifact Idartemis-service-extensions
      Current Version2.19.1
      Scope
      Classifier
      Typejar
      Newer versions2.20.0
      2.21.0
      2.22.0
      2.23.0
      2.23.1
      2.24.0
      2.25.0
      2.26.0
      2.27.0
      2.27.1
      2.28.0
      2.29.0
      2.30.0
      2.31.0
      2.31.1
      2.31.2
      2.32.0 Latest Minor
      +

      org.apache.commons:commons-dbcp2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.commons
      Artifact Idcommons-dbcp2
      Current Version2.9.0
      Scope
      Classifier
      Typejar
      Newer versions2.10.0
      2.11.0 Latest Minor
      +

      org.apache.commons:commons-lang3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.commons
      Artifact Idcommons-lang3
      Current Version3.12.0
      Scope
      Classifier
      Typejar
      Newer versions3.13.0
      3.14.0 Latest Minor
      +

      org.apache.commons:commons-pool2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.commons
      Artifact Idcommons-pool2
      Current Version2.11.1
      Scope
      Classifier
      Typejar
      Newer versions2.12.0 Latest Minor
      +

      org.apache.derby:derby

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderby
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbyclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbyclient
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbynet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbynet
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbyoptionaltools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbyoptionaltools
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.derby:derbytools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.derby
      Artifact Idderbytools
      Current Version10.14.2.0
      Scope
      Classifier
      Typejar
      Newer versions10.15.1.3
      10.15.2.0
      10.16.1.1
      10.17.1.0 Latest Minor
      +

      org.apache.httpcomponents:fluent-hc

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idfluent-hc
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpasyncclient

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpasyncclient
      Current Version4.1.5
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient-cache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient-cache
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient-osgi

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient-osgi
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpclient-win

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpclient-win
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpcore

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpcore
      Current Version4.4.16
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpcore-nio

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpcore-nio
      Current Version4.4.16
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents:httpmime

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.httpcomponents
      Artifact Idhttpmime
      Current Version4.5.14
      Scope
      Classifier
      Typejar
      +

      org.apache.httpcomponents.client5:httpclient5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.3-alpha1
      5.3
      5.3.1
      5.4-alpha1 Latest Minor
      +

      org.apache.httpcomponents.client5:httpclient5-cache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5-cache
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.3-alpha1
      5.3
      5.3.1
      5.4-alpha1 Latest Minor
      +

      org.apache.httpcomponents.client5:httpclient5-fluent

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5-fluent
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.3-alpha1
      5.3
      5.3.1
      5.4-alpha1 Latest Minor
      +

      org.apache.httpcomponents.client5:httpclient5-win

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.client5
      Artifact Idhttpclient5-win
      Current Version5.1.4
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-beta1
      5.2
      5.2.1
      5.2.2
      5.2.3 Latest Minor
      +

      org.apache.httpcomponents.core5:httpcore5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.core5
      Artifact Idhttpcore5
      Current Version5.1.5
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-alpha2
      5.2-beta1
      5.2-beta2
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3-alpha1 Latest Minor
      +

      org.apache.httpcomponents.core5:httpcore5-h2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.core5
      Artifact Idhttpcore5-h2
      Current Version5.1.5
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-alpha2
      5.2-beta1
      5.2-beta2
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3-alpha1 Latest Minor
      +

      org.apache.httpcomponents.core5:httpcore5-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.httpcomponents.core5
      Artifact Idhttpcore5-reactive
      Current Version5.1.5
      Scope
      Classifier
      Typejar
      Newer versions5.2-alpha1
      5.2-alpha2
      5.2-beta1
      5.2-beta2
      5.2
      5.2.1
      5.2.2
      5.2.3
      5.2.4
      5.3-alpha1 Latest Minor
      +

      org.apache.johnzon:johnzon-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-core
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jaxrs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jaxrs
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jsonb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jsonb
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jsonb-extras

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jsonb-extras
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-jsonschema

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-jsonschema
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-mapper

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-mapper
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.johnzon:johnzon-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.apache.johnzon
      Artifact Idjohnzon-websocket
      Current Version1.2.21
      Scope
      Classifier
      Typejar
      Newer versions2.0.0 Latest Major
      +

      org.apache.kafka:connect

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-api
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-basic-auth-extension

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-basic-auth-extension
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-file

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-file
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-json
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-mirror

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-mirror
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-mirror-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-mirror-client
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-runtime
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:connect-transforms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idconnect-transforms
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:generator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idgenerator
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-clients

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-clients
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-log4j-appender

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-log4j-appender
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-metadata

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-metadata
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-raft

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-raft
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-server-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-server-common
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-shell

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-shell
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-storage

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-storage
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-storage-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-storage-api
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams-scala_2.12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams-scala_2.12
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams-scala_2.13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams-scala_2.13
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-streams-test-utils

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-streams-test-utils
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka-tools
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka_2.12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka_2.12
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:kafka_2.13

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idkafka_2.13
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.kafka:trogdor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.kafka
      Artifact Idtrogdor
      Current Version3.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.2.1
      3.2.2
      3.2.3
      3.3.0
      3.3.1
      3.3.2
      3.4.0
      3.4.1
      3.5.0
      3.5.1
      3.5.2
      3.6.0
      3.6.1 Latest Minor
      +

      org.apache.logging.log4j:log4j-1.2-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-1.2-api
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-api
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-appserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-appserver
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-cassandra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-cassandra
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-core
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-couchdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-couchdb
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-docker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-docker
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-flume-ng

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-flume-ng
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-iostreams

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-iostreams
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-jcl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jcl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-jmx-gui

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jmx-gui
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.22.0 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jpa
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-jpl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jpl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-jul

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-jul
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-kubernetes

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-kubernetes
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-layout-template-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-layout-template-json
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-liquibase

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-liquibase
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-mongodb3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-mongodb3
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-mongodb4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-mongodb4
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-slf4j-impl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-slf4j-impl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-slf4j18-impl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-slf4j18-impl
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0 Latest Minor
      +

      org.apache.logging.log4j:log4j-spring-boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-spring-boot
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-spring-cloud-config-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-spring-cloud-config-client
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-taglib

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-taglib
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.logging.log4j:log4j-to-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-to-slf4j
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1
      3.0.0-beta1 Latest Major
      +

      org.apache.logging.log4j:log4j-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.apache.logging.log4j
      Artifact Idlog4j-web
      Current Version2.17.2
      Scope
      Classifier
      Typejar
      Newer versions2.18.0
      2.19.0
      2.20.0
      2.21.0
      2.21.1
      2.22.0
      2.22.1 Latest Minor
      3.0.0-alpha1 Latest Major
      +

      org.apache.solr:solr-analysis-extras

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-analysis-extras
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-analytics

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-analytics
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-cell

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-cell
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.solr:solr-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-core
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-dataimporthandler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-dataimporthandler
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.solr:solr-dataimporthandler-extras

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-dataimporthandler-extras
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.solr:solr-gcs-repository

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-gcs-repository
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-jaegertracer-configurator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-jaegertracer-configurator
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-langid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-langid
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-ltr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-ltr
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-prometheus-exporter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-prometheus-exporter
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-s3-repository

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-s3-repository
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-solrj

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-solrj
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-test-framework

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-test-framework
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      9.0.0
      9.1.0
      9.1.1
      9.2.0
      9.2.1
      9.3.0
      9.4.0
      9.4.1 Latest Major
      +

      org.apache.solr:solr-velocity

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.solr
      Artifact Idsolr-velocity
      Current Version8.11.2
      Scope
      Classifier
      Typejar
      Newer versions8.11.3 Latest Incremental
      +

      org.apache.tomcat:tomcat-annotations-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat
      Artifact Idtomcat-annotations-api
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat:tomcat-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat
      Artifact Idtomcat-jdbc
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat:tomcat-jsp-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat
      Artifact Idtomcat-jsp-api
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-core
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-el

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-el
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-jasper

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-jasper
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.apache.tomcat.embed:tomcat-embed-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.apache.tomcat.embed
      Artifact Idtomcat-embed-websocket
      Current Version9.0.83
      Scope
      Classifier
      Typejar
      Newer versions9.0.84
      9.0.85 Latest Incremental
      10.0.0-M1
      10.0.0-M3
      10.0.0-M4
      10.0.0-M5
      10.0.0-M6
      10.0.0-M7
      10.0.0-M8
      10.0.0-M9
      10.0.0-M10
      10.0.0
      10.0.2
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.16
      10.0.17
      10.0.18
      10.0.20
      10.0.21
      10.0.22
      10.0.23
      10.0.26
      10.0.27
      10.1.0-M1
      10.1.0-M2
      10.1.0-M4
      10.1.0-M5
      10.1.0-M6
      10.1.0-M7
      10.1.0-M8
      10.1.0-M10
      10.1.0-M11
      10.1.0-M12
      10.1.0-M14
      10.1.0-M15
      10.1.0-M16
      10.1.0-M17
      10.1.0
      10.1.1
      10.1.2
      10.1.4
      10.1.5
      10.1.6
      10.1.7
      10.1.8
      10.1.9
      10.1.10
      10.1.11
      10.1.12
      10.1.13
      10.1.14
      10.1.15
      10.1.16
      10.1.17
      10.1.18
      11.0.0-M1
      11.0.0-M3
      11.0.0-M4
      11.0.0-M5
      11.0.0-M6
      11.0.0-M7
      11.0.0-M9
      11.0.0-M10
      11.0.0-M11
      11.0.0-M12
      11.0.0-M13
      11.0.0-M14
      11.0.0-M15
      11.0.0-M16 Latest Major
      +

      org.aspectj:aspectjrt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.aspectj
      Artifact Idaspectjrt
      Current Version1.9.7
      Scope
      Classifier
      Typejar
      Newer versions1.9.8.M1
      1.9.8.RC1
      1.9.8.RC2
      1.9.8.RC3
      1.9.8
      1.9.9
      1.9.9.1
      1.9.19
      1.9.20
      1.9.20.1
      1.9.21.M1
      1.9.21.RC1
      1.9.21 Latest Incremental
      +

      org.aspectj:aspectjtools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.aspectj
      Artifact Idaspectjtools
      Current Version1.9.7
      Scope
      Classifier
      Typejar
      Newer versions1.9.8.M1
      1.9.8.RC1
      1.9.8.RC2
      1.9.8.RC3
      1.9.8
      1.9.9
      1.9.9.1
      1.9.19
      1.9.20
      1.9.20.1
      1.9.21.M1
      1.9.21.RC1
      1.9.21 Latest Incremental
      +

      org.aspectj:aspectjweaver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.aspectj
      Artifact Idaspectjweaver
      Current Version1.9.7
      Scope
      Classifier
      Typejar
      Newer versions1.9.8.M1
      1.9.8.RC1
      1.9.8.RC2
      1.9.8.RC3
      1.9.8
      1.9.9
      1.9.9.1
      1.9.19
      1.9.20
      1.9.20.1
      1.9.21.M1
      1.9.21.RC1
      1.9.21 Latest Incremental
      +

      org.assertj:assertj-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.assertj
      Artifact Idassertj-core
      Current Version3.22.0
      Scope
      Classifier
      Typejar
      Newer versions3.23.0
      3.23.1
      3.24.0
      3.24.1
      3.24.2
      3.25.0
      3.25.1
      3.25.2
      3.25.3 Latest Minor
      +

      org.awaitility:awaitility

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.awaitility:awaitility-groovy

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility-groovy
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.awaitility:awaitility-kotlin

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility-kotlin
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.awaitility:awaitility-scala

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.awaitility
      Artifact Idawaitility-scala
      Current Version4.2.0
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-api
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-config

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-config
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-core
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-jcache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-jcache
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-micrometer

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-micrometer
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.cache2k:cache2k-spring

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.cache2k
      Artifact Idcache2k-spring
      Current Version2.6.1.Final
      Scope
      Classifier
      Typejar
      +

      org.codehaus.groovy:groovy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-ant

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-ant
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-astbuilder

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-astbuilder
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-bsf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-bsf
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-cli-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-cli-commons
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-cli-picocli

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-cli-picocli
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-console
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-datetime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-datetime
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-dateutil

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-dateutil
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-docgenerator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-docgenerator
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-groovydoc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-groovydoc
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-groovysh

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-groovysh
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-jaxb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-jaxb
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-jmx
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-json
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-jsr223

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-jsr223
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-macro

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-macro
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-nio

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-nio
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-servlet
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-sql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-sql
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-swing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-swing
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-templates

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-templates
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-test
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-test-junit5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-test-junit5
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-testng

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-testng
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-xml
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.groovy:groovy-yaml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.groovy
      Artifact Idgroovy-yaml
      Current Version3.0.19
      Scope
      Classifier
      Typejar
      Newer versions3.0.20 Latest Incremental
      +

      org.codehaus.janino:commons-compiler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.janino
      Artifact Idcommons-compiler
      Current Version3.1.10
      Scope
      Classifier
      Typejar
      Newer versions3.1.11
      3.1.12 Latest Incremental
      +

      org.codehaus.janino:commons-compiler-jdk

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.janino
      Artifact Idcommons-compiler-jdk
      Current Version3.1.10
      Scope
      Classifier
      Typejar
      Newer versions3.1.11
      3.1.12 Latest Incremental
      +

      org.codehaus.janino:janino

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.codehaus.janino
      Artifact Idjanino
      Current Version3.1.10
      Scope
      Classifier
      Typejar
      Newer versions3.1.11
      3.1.12 Latest Incremental
      +

      org.eclipse.jetty:apache-jsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idapache-jsp
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:apache-jstl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idapache-jstl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0 Latest Major
      +

      org.eclipse.jetty:infinispan-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idinfinispan-common
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:infinispan-embedded-query

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idinfinispan-embedded-query
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:infinispan-remote-query

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idinfinispan-remote-query
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-conscrypt-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-conscrypt-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-conscrypt-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-conscrypt-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-java-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-java-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-java-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-java-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-alpn-openjdk8-client

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-openjdk8-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty:jetty-alpn-openjdk8-server

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-openjdk8-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty:jetty-alpn-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-alpn-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-annotations
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-ant

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-ant
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-continuation

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-continuation
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty:jetty-deploy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-deploy
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-distribution

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-distribution
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typezip
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      11.0.0-alpha0
      11.0.0.beta1 Latest Major
      +

      org.eclipse.jetty:jetty-hazelcast

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-hazelcast
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-home

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-home
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typezip
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-http
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-http-spi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-http-spi
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-io

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-io
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-jaas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jaas
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-jaspi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jaspi
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jmx
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-jndi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-jndi
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-nosql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-nosql
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-openid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-openid
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-plus

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-plus
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-proxy
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-quickstart

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-quickstart
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-reactive-httpclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-reactive-httpclient
      Current Version1.1.15
      Scope
      Classifier
      Typejar
      Newer versions2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      4.0.0.beta0
      4.0.0.beta1
      4.0.0
      4.0.1
      4.0.2
      4.0.3 Latest Major
      +

      org.eclipse.jetty:jetty-rewrite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-rewrite
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-security
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-servlet
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-servlets

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-servlets
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-spring
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3 Latest Major
      +

      org.eclipse.jetty:jetty-unixsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-unixsocket
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-util

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-util
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-util-ajax

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-util-ajax
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty:jetty-webapp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-webapp
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty:jetty-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty
      Artifact Idjetty-xml
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty.fcgi:fcgi-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.fcgi
      Artifact Idfcgi-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.fcgi:fcgi-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.fcgi
      Artifact Idfcgi-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.gcloud:jetty-gcloud-session-manager

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.gcloud
      Artifact Idjetty-gcloud-session-manager
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty.http2:http2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-common
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-hpack

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-hpack
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-http-client-transport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-http-client-transport
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.http2:http2-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.http2
      Artifact Idhttp2-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.memcached:jetty-memcached-sessions

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.memcached
      Artifact Idjetty-memcached-sessions
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20
      12.0.0.alpha0
      12.0.0.alpha1
      12.0.0.alpha2
      12.0.0.alpha3
      12.0.0.beta0
      12.0.0.beta1
      12.0.0.beta2
      12.0.0.beta3
      12.0.0.beta4
      12.0.0
      12.0.1
      12.0.2
      12.0.3
      12.0.4
      12.0.5
      12.0.6 Latest Major
      +

      org.eclipse.jetty.orbit:javax.servlet.jsp

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.orbit
      Artifact Idjavax.servlet.jsp
      Current Version2.2.0.v201112011158
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.osgi:jetty-httpservice

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-httpservice
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.osgi:jetty-osgi-boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-osgi-boot
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.osgi:jetty-osgi-boot-jsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-osgi-boot-jsp
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.osgi:jetty-osgi-boot-warurl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.osgi
      Artifact Idjetty-osgi-boot-warurl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0.beta0
      10.0.0.beta1
      10.0.0.beta2
      10.0.0.beta3
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0-alpha0
      11.0.0.beta1
      11.0.0.beta2
      11.0.0.beta3
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.eclipse.jetty.websocket:javax-websocket-client-impl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idjavax-websocket-client-impl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:javax-websocket-server-impl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idjavax-websocket-server-impl
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-api

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-api
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-client

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-client
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-common

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-common
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-server

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-server
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      +

      org.eclipse.jetty.websocket:websocket-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.eclipse.jetty.websocket
      Artifact Idwebsocket-servlet
      Current Version9.4.53.v20231009
      Scope
      Classifier
      Typejar
      Newer versions10.0.0-alpha0
      10.0.0.alpha1
      10.0.0.alpha2
      10.0.0
      10.0.1
      10.0.2
      10.0.3
      10.0.4
      10.0.5
      10.0.6
      10.0.7
      10.0.8
      10.0.9
      10.0.10
      10.0.11
      10.0.12
      10.0.13
      10.0.14
      10.0.15
      10.0.16
      10.0.17
      10.0.18
      10.0.19
      10.0.20
      11.0.0
      11.0.1
      11.0.2
      11.0.3
      11.0.4
      11.0.5
      11.0.6
      11.0.7
      11.0.8
      11.0.9
      11.0.10
      11.0.11
      11.0.12
      11.0.13
      11.0.14
      11.0.15
      11.0.16
      11.0.17
      11.0.18
      11.0.19
      11.0.20 Latest Major
      +

      org.ehcache:ehcache

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ehcache
      Artifact Idehcache
      Current Version3.10.8
      Scope
      Classifier
      Typejar
      +

      org.ehcache:ehcache-clustered

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ehcache
      Artifact Idehcache-clustered
      Current Version3.10.8
      Scope
      Classifier
      Typejar
      +

      org.ehcache:ehcache-transactions

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ehcache
      Artifact Idehcache-transactions
      Current Version3.10.8
      Scope
      Classifier
      Typejar
      +

      org.elasticsearch:elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch
      Artifact Idelasticsearch
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.client:elasticsearch-rest-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idelasticsearch-rest-client
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.client:elasticsearch-rest-client-sniffer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idelasticsearch-rest-client-sniffer
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.client:elasticsearch-rest-high-level-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idelasticsearch-rest-high-level-client
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2 Latest Major
      +

      org.elasticsearch.client:transport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.client
      Artifact Idtransport
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      +

      org.elasticsearch.distribution.integ-test-zip:elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.distribution.integ-test-zip
      Artifact Idelasticsearch
      Current Version7.17.15
      Scope
      Classifier
      Typezip
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      8.0.0-alpha1
      8.0.0-alpha2
      8.0.0-beta1
      8.0.0-rc1
      8.0.0-rc2
      8.0.0
      8.0.1
      8.1.0
      8.1.1
      8.1.2
      8.1.3
      8.2.0
      8.2.1
      8.2.2
      8.2.3
      8.3.0
      8.3.1
      8.3.2
      8.3.3
      8.4.0
      8.4.1
      8.4.2
      8.4.3
      8.5.0
      8.5.1
      8.5.2
      8.5.3
      8.6.0
      8.6.1
      8.6.2
      8.7.0
      8.7.1
      8.8.0
      8.8.1
      8.8.2
      8.9.0
      8.9.1
      8.9.2
      8.10.0
      8.10.1
      8.10.2
      8.10.3
      8.10.4
      8.11.0
      8.11.1
      8.11.2
      8.11.3
      8.11.4
      8.12.0
      8.12.1 Latest Major
      +

      org.elasticsearch.plugin:transport-netty4-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.elasticsearch.plugin
      Artifact Idtransport-netty4-client
      Current Version7.17.15
      Scope
      Classifier
      Typejar
      Newer versions7.17.16
      7.17.17
      7.17.18 Latest Incremental
      +

      org.firebirdsql.jdbc:jaybird

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idorg.firebirdsql.jdbc
      Artifact Idjaybird
      Current Version4.0.9.java8
      Scope
      Classifier
      Typejar
      Newer versions4.0.9.java11 Latest Subincremental
      4.0.10.java7
      4.0.10.java8
      4.0.10.java11 Latest Incremental
      5.0.0.java8-beta-1
      5.0.0.java8
      5.0.0.java11-beta-1
      5.0.0.java11
      5.0.1.java8
      5.0.1.java11
      5.0.2.java8
      5.0.2.java11
      5.0.3.java8
      5.0.3.java11 Latest Major
      +

      org.firebirdsql.jdbc:jaybird-jdk18

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.firebirdsql.jdbc
      Artifact Idjaybird-jdk18
      Current Version4.0.9.java8
      Scope
      Classifier
      Typejar
      Newer versions4.0.10.java8 Latest Incremental
      +

      org.flywaydb:flyway-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-core
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.flywaydb:flyway-firebird

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-firebird
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.flywaydb:flyway-mysql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-mysql
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.flywaydb:flyway-sqlserver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.flywaydb
      Artifact Idflyway-sqlserver
      Current Version8.5.13
      Scope
      Classifier
      Typejar
      Newer versions9.0.0
      9.0.1
      9.0.2
      9.0.3
      9.0.4
      9.1.0
      9.1.1
      9.1.2
      9.1.3
      9.1.4
      9.1.5
      9.1.6
      9.2.0
      9.2.1
      9.2.2
      9.2.3
      9.3.0
      9.3.1
      9.4.0
      9.5.0
      9.5.1
      9.6.0
      9.7.0
      9.8.0
      9.8.1
      9.8.2
      9.8.3
      9.9.0
      9.10.0
      9.10.1
      9.10.2
      9.11.0
      9.12.0
      9.13.0
      9.14.0
      9.14.1
      9.15.0
      9.15.1
      9.15.2
      9.16.0
      9.16.1
      9.16.2
      9.16.3
      9.17.0
      9.18.0
      9.19.0
      9.19.1
      9.19.2
      9.19.3
      9.19.4
      9.20.0
      9.20.1
      9.21.0
      9.21.1
      9.21.2
      9.22.0
      9.22.1
      9.22.2
      9.22.3
      10.0.0
      10.0.1
      10.1.0
      10.2.0
      10.3.0
      10.4.0
      10.4.1
      10.5.0
      10.6.0
      10.7.0
      10.7.1
      10.7.2 Latest Major
      +

      org.freemarker:freemarker

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.freemarker
      Artifact Idfreemarker
      Current Version2.3.32
      Scope
      Classifier
      Typejar
      +

      org.glassfish:jakarta.el

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.glassfish
      Artifact Idjakarta.el
      Current Version3.0.4
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      5.0.0-M1 Latest Major
      +

      org.glassfish.jaxb:codemodel

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idcodemodel
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:codemodel-annotation-compiler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idcodemodel-annotation-compiler
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:jaxb-jxc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idjaxb-jxc
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:jaxb-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idjaxb-runtime
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:jaxb-xjc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idjaxb-xjc
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:txw2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idtxw2
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:txwc2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idtxwc2
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jaxb:xsom

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jaxb
      Artifact Idxsom
      Current Version2.3.9
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-b180725.0644
      2.4.0-b180830.0438 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0
      3.0.1-b02
      3.0.1
      3.0.2-b01
      3.0.2
      3.1.0-M1
      4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4 Latest Major
      +

      org.glassfish.jersey.bundles:jaxrs-ri

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.bundles
      Artifact Idjaxrs-ri
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-apache-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-apache-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-grizzly-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-grizzly-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-helidon-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-helidon-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-jdk-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-jdk-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-jetty-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-jetty-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.connectors:jersey-netty-connector

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.connectors
      Artifact Idjersey-netty-connector
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-grizzly2-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-grizzly2-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-grizzly2-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-grizzly2-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-jdk-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-jdk-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-jetty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-jetty-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-jetty-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-jetty-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-netty-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-netty-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-servlet-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-servlet-core
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers:jersey-container-simple-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers
      Artifact Idjersey-container-simple-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.containers.glassfish:jersey-gf-ejb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.containers.glassfish
      Artifact Idjersey-gf-ejb
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.core:jersey-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.core
      Artifact Idjersey-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.core:jersey-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.core
      Artifact Idjersey-common
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.core:jersey-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.core
      Artifact Idjersey-server
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-bean-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-bean-validation
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-declarative-linking

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-declarative-linking
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-entity-filtering

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-entity-filtering
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-metainf-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-metainf-services
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-bean-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-bean-validation
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-freemarker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-freemarker
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-jsp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-jsp
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-mvc-mustache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-mvc-mustache
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-proxy-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-proxy-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext:jersey-servlet-portability

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-servlet-portability
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6 Latest Major
      +

      org.glassfish.jersey.ext:jersey-spring4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-spring4
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6 Latest Major
      +

      org.glassfish.jersey.ext:jersey-spring5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-spring5
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6 Latest Major
      +

      org.glassfish.jersey.ext:jersey-wadl-doclet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext
      Artifact Idjersey-wadl-doclet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi-rs-inject

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi-rs-inject
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-ban-custom-hk2-binding

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-ban-custom-hk2-binding
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-servlet

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-servlet
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-transaction

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-transaction
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-cdi1x-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-cdi1x-validation
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.cdi:jersey-weld2-se

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.cdi
      Artifact Idjersey-weld2-se
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.microprofile:jersey-mp-config

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.microprofile
      Artifact Idjersey-mp-config
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.microprofile:jersey-mp-rest-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.microprofile
      Artifact Idjersey-mp-rest-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.rx:jersey-rx-client-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.rx
      Artifact Idjersey-rx-client-guava
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.rx
      Artifact Idjersey-rx-client-rxjava
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.ext.rx
      Artifact Idjersey-rx-client-rxjava2
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.inject:jersey-cdi2-se

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.inject
      Artifact Idjersey-cdi2-se
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.inject:jersey-hk2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.inject
      Artifact Idjersey-hk2
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-jaxb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-jaxb
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-binding

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-binding
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-jackson

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-jackson
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-jettison

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-jettison
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-json-processing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-json-processing
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-kryo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-kryo
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-moxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-moxy
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-multipart

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-multipart
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.media:jersey-media-sse

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.media
      Artifact Idjersey-media-sse
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth1-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth1-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth1-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth1-server
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth1-signature

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth1-signature
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.security:oauth2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.security
      Artifact Idoauth2-client
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework:jersey-test-framework-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework
      Artifact Idjersey-test-framework-core
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework:jersey-test-framework-util

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework
      Artifact Idjersey-test-framework-util
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-bundle
      Current Version2.35
      Scope
      Classifier
      Typepom
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-external

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-external
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-grizzly2
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-inmemory

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-inmemory
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-jdk-http
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-jetty
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-simple

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.glassfish.jersey.test-framework.providers
      Artifact Idjersey-test-framework-provider-simple
      Current Version2.35
      Scope
      Classifier
      Typejar
      Newer versions2.36
      2.37
      2.38
      2.39
      2.39.1
      2.40
      2.41 Latest Minor
      3.0.0-M1
      3.0.0-M6
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M1
      3.1.0-M2
      3.1.0-M3
      3.1.0-M7
      3.1.0-M8
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.glassfish.web:jakarta.servlet.jsp.jstl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.glassfish.web
      Artifact Idjakarta.servlet.jsp.jstl
      Current Version1.2.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0
      3.0.0
      3.0.1 Latest Major
      +

      org.hamcrest:hamcrest

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.hamcrest
      Artifact Idhamcrest
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      org.hamcrest:hamcrest-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.hamcrest
      Artifact Idhamcrest-core
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      org.hamcrest:hamcrest-library

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.hamcrest
      Artifact Idhamcrest-library
      Current Version2.2
      Scope
      Classifier
      Typejar
      +

      org.hibernate:hibernate-c3p0

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-c3p0
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-core
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-ehcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-ehcache
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7 Latest Major
      +

      org.hibernate:hibernate-entitymanager

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-entitymanager
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7 Latest Major
      +

      org.hibernate:hibernate-envers

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-envers
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-hikaricp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-hikaricp
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-java8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-java8
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7 Latest Major
      +

      org.hibernate:hibernate-jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-jcache
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-jpamodelgen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-jpamodelgen
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-micrometer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-micrometer
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-proxool

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-proxool
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-spatial

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-spatial
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-testing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-testing
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate:hibernate-vibur

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate
      Artifact Idhibernate-vibur
      Current Version5.6.15.Final
      Scope
      Classifier
      Typejar
      Newer versions6.0.0.Alpha2
      6.0.0.Alpha3
      6.0.0.Alpha4
      6.0.0.Alpha5
      6.0.0.Alpha6
      6.0.0.Alpha7
      6.0.0.Alpha8
      6.0.0.Alpha9
      6.0.0.Beta1
      6.0.0.Beta2
      6.0.0.Beta3
      6.0.0.CR1
      6.0.0.CR2
      6.0.0.Final
      6.0.1.Final
      6.0.2.Final
      6.1.0.Final
      6.1.1.Final
      6.1.2.Final
      6.1.3.Final
      6.1.4.Final
      6.1.5.Final
      6.1.6.Final
      6.1.7.Final
      6.2.0.CR1
      6.2.0.CR2
      6.2.0.CR3
      6.2.0.CR4
      6.2.0.Final
      6.2.1.Final
      6.2.2.Final
      6.2.3.Final
      6.2.4.Final
      6.2.5.Final
      6.2.6.Final
      6.2.7.Final
      6.2.8.Final
      6.2.9.Final
      6.2.10.Final
      6.2.11.Final
      6.2.12.Final
      6.2.13.Final
      6.2.14.Final
      6.2.15.Final
      6.2.16.Final
      6.2.17.Final
      6.2.18.Final
      6.2.19.Final
      6.2.20.Final
      6.2.21.Final
      6.2.22.Final
      6.3.0.CR1
      6.3.0.Final
      6.3.1.Final
      6.3.2.Final
      6.4.0.CR1
      6.4.0.Final
      6.4.1.Final
      6.4.2.Final
      6.4.3.Final
      6.4.4.Final Latest Major
      +

      org.hibernate.validator:hibernate-validator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate.validator
      Artifact Idhibernate-validator
      Current Version6.2.5.Final
      Scope
      Classifier
      Typejar
      Newer versions7.0.0.Alpha1
      7.0.0.Alpha2
      7.0.0.Alpha3
      7.0.0.Alpha4
      7.0.0.Alpha5
      7.0.0.Alpha6
      7.0.0.CR1
      7.0.0.Final
      7.0.1.Final
      7.0.2.Final
      7.0.3.Final
      7.0.4.Final
      7.0.5.Final
      8.0.0.Alpha1
      8.0.0.Alpha2
      8.0.0.Alpha3
      8.0.0.CR1
      8.0.0.CR2
      8.0.0.CR3
      8.0.0.Final
      8.0.1.Final Latest Major
      +

      org.hibernate.validator:hibernate-validator-annotation-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.hibernate.validator
      Artifact Idhibernate-validator-annotation-processor
      Current Version6.2.5.Final
      Scope
      Classifier
      Typejar
      Newer versions7.0.0.Alpha1
      7.0.0.Alpha2
      7.0.0.Alpha3
      7.0.0.Alpha4
      7.0.0.Alpha5
      7.0.0.Alpha6
      7.0.0.CR1
      7.0.0.Final
      7.0.1.Final
      7.0.2.Final
      7.0.3.Final
      7.0.4.Final
      7.0.5.Final
      8.0.0.Alpha1
      8.0.0.Alpha2
      8.0.0.Alpha3
      8.0.0.CR1
      8.0.0.CR2
      8.0.0.CR3
      8.0.0.Final
      8.0.1.Final Latest Major
      +

      org.hsqldb:hsqldb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.hsqldb
      Artifact Idhsqldb
      Current Version2.5.2
      Scope
      Classifier
      Typejar
      Newer versions2.6.0
      2.6.1
      2.7.0
      2.7.1
      2.7.2 Latest Minor
      +

      org.infinispan:infinispan-anchored-keys

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-anchored-keys
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-api
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-jdbc
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-jpa
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.Dev01
      14.0.0.Dev02 Latest Major
      +

      org.infinispan:infinispan-cachestore-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-rocksdb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-rocksdb
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cachestore-sql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cachestore-sql
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cdi-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cdi-common
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cdi-embedded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cdi-embedded
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cdi-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cdi-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-checkstyle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-checkstyle
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cli-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cli-client
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-client-hotrod

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-client-hotrod
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-client-rest

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-client-rest
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-cloudevents-integration

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-cloudevents-integration
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-clustered-counter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-clustered-counter
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-clustered-lock

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-clustered-lock
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-commons
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-commons-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-commons-test
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-component-annotations

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-component-annotations
      Current Version13.0.20.Final
      Scopeprovided
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-component-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-component-processor
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-console
      Current Version0.15.5.Final
      Scope
      Classifier
      Typejar
      Newer versions14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      15.0.0.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05 Latest Major
      +

      org.infinispan:infinispan-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-extended-statistics

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-extended-statistics
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-hibernate-cache-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-hibernate-cache-commons
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-hibernate-cache-spi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-hibernate-cache-spi
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-hibernate-cache-v53

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-hibernate-cache-v53
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.Dev01
      14.0.0.Dev02 Latest Major
      +

      org.infinispan:infinispan-jboss-marshalling

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jboss-marshalling
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-jcache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jcache
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-jcache-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jcache-commons
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-jcache-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-jcache-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-key-value-store-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-key-value-store-client
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-marshaller-kryo

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-kryo
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-marshaller-kryo-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-kryo-bundle
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-marshaller-protostuff

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-protostuff
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-marshaller-protostuff-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-marshaller-protostuff-bundle
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-multimap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-multimap
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-objectfilter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-objectfilter
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-query

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-query
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-query-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-query-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-query-dsl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-query-dsl
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-remote-query-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-remote-query-client
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-remote-query-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-remote-query-server
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-scripting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-scripting
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-hotrod

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-hotrod
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-memcached

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-memcached
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-rest

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-rest
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-router

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-router
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-runtime
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-testdriver-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-testdriver-core
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-testdriver-junit4

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-testdriver-junit4
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-server-testdriver-junit5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-server-testdriver-junit5
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-spring-boot-starter-embedded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring-boot-starter-embedded
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring-boot-starter-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring-boot-starter-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring5-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring5-common
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring5-embedded

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring5-embedded
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-spring5-remote

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-spring5-remote
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final Latest Major
      +

      org.infinispan:infinispan-tasks

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-tasks
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-tasks-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-tasks-api
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions13.0.21.Final Latest Incremental
      14.0.0.CR1
      14.0.0.CR2
      14.0.0.Final
      14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.1.Final
      14.0.2.Final
      14.0.3.Final
      14.0.4.Final
      14.0.5.Final
      14.0.6.Final
      14.0.7.Final
      14.0.8.Final
      14.0.9.Final
      14.0.10.Final
      14.0.11.Final
      14.0.12.Final
      14.0.13.Final
      14.0.14.Final
      14.0.15.Final
      14.0.16.Final
      14.0.17.Final
      14.0.18.Final
      14.0.19.Final
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan:infinispan-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.infinispan
      Artifact Idinfinispan-tools
      Current Version13.0.20.Final
      Scope
      Classifier
      Typejar
      Newer versions14.0.0.Dev01
      14.0.0.Dev02
      14.0.0.Dev03
      14.0.0.Dev04
      14.0.20.Final
      14.0.21.Final
      14.0.22.Final
      14.0.23.Final
      14.0.24.Final
      15.0.0.Dev01
      15.0.0.Dev02
      15.0.0.Dev03
      15.0.0.Dev04
      15.0.0.Dev05
      15.0.0.Dev06
      15.0.0.Dev07
      15.0.0.Dev08 Latest Major
      +

      org.infinispan.protostream:protostream

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.infinispan.protostream
      Artifact Idprotostream
      Current Version4.4.4.Final
      Scope
      Classifier
      Typejar
      Newer versions4.5.0.CR1
      4.5.0.Final
      4.5.0.Dev01
      4.5.0.Dev02
      4.5.0.Dev03
      4.5.0.Dev04
      4.5.0.Dev05
      4.5.1.Final
      4.6.0.Final
      4.6.1.Final
      4.6.2.Final
      4.6.3.Final
      4.6.4.Final
      4.6.5.Final Latest Minor
      5.0.0.Dev01
      14.0.0.CR2 Latest Major
      +

      org.infinispan.protostream:protostream-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.infinispan.protostream
      Artifact Idprotostream-processor
      Current Version4.4.4.Final
      Scopeprovided
      Classifier
      Typejar
      Newer versions4.5.0.CR1
      4.5.0.Final
      4.5.0.Dev01
      4.5.0.Dev02
      4.5.0.Dev03
      4.5.0.Dev04
      4.5.0.Dev05
      4.5.1.Final
      4.6.0.Final
      4.6.1.Final
      4.6.2.Final
      4.6.3.Final
      4.6.4.Final
      4.6.5.Final Latest Minor
      5.0.0.Dev01
      14.0.0.CR2 Latest Major
      +

      org.infinispan.protostream:protostream-types

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.infinispan.protostream
      Artifact Idprotostream-types
      Current Version4.4.4.Final
      Scope
      Classifier
      Typejar
      Newer versions4.5.0.CR1
      4.5.0.Final
      4.5.0.Dev01
      4.5.0.Dev02
      4.5.0.Dev03
      4.5.0.Dev04
      4.5.0.Dev05
      4.5.1.Final
      4.6.0.Final
      4.6.1.Final
      4.6.2.Final
      4.6.3.Final
      4.6.4.Final
      4.6.5.Final Latest Minor
      5.0.0.Dev01
      14.0.0.CR2 Latest Major
      +

      org.influxdb:influxdb-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.influxdb
      Artifact Idinfluxdb-java
      Current Version2.22
      Scope
      Classifier
      Typejar
      Newer versions2.23
      2.24 Latest Minor
      +

      org.jboss.logging:jboss-logging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jboss.logging
      Artifact Idjboss-logging
      Current Version3.4.3.Final
      Scope
      Classifier
      Typejar
      Newer versions3.5.0.Final
      3.5.1.Final
      3.5.2.Final
      3.5.3.Final Latest Minor
      +

      org.jdom:jdom2

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.jdom
      Artifact Idjdom2
      Current Version2.0.6.1
      Scope
      Classifier
      Typejar
      +

      org.jetbrains.kotlin:kotlin-compiler

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-compiler
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-compiler-embeddable

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-compiler-embeddable
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-daemon-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-daemon-client
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-main-kts

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-main-kts
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-osgi-bundle

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-osgi-bundle
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-reflect

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-reflect
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-script-runtime

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-script-runtime
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-script-util

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-script-util
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22 Latest Minor
      +

      org.jetbrains.kotlin:kotlin-scripting-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-scripting-ide-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-ide-services
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-scripting-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-jvm
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-scripting-jvm-host

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-scripting-jvm-host
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-jdk7

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-jdk7
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-jdk8
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-stdlib-js

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-stdlib-js
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-annotations-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-annotations-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-common

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-common
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-js

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-js
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-junit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-junit
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-junit5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-junit5
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlin:kotlin-test-testng

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlin
      Artifact Idkotlin-test-testng
      Current Version1.6.21
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0-RC2
      1.7.0
      1.7.10
      1.7.20-Beta
      1.7.20-RC
      1.7.20
      1.7.21
      1.7.22
      1.8.0-Beta
      1.8.0-RC
      1.8.0-RC2
      1.8.0
      1.8.0-343
      1.8.10
      1.8.20-Beta
      1.8.20-RC
      1.8.20-RC2
      1.8.20
      1.8.21
      1.8.22
      1.9.0-Beta
      1.9.0-RC
      1.9.0
      1.9.10
      1.9.20-Beta
      1.9.20-Beta2
      1.9.20-RC
      1.9.20-RC2
      1.9.20
      1.9.21
      1.9.22 Latest Minor
      2.0.0-Beta1
      2.0.0-Beta2
      2.0.0-Beta3 Latest Major
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-android

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-android
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-core
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-core-jvm
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-debug

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-debug
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-guava

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-guava
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-javafx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-javafx
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-jdk8

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-jdk8
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-jdk9

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-jdk9
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-play-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-play-services
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-reactive
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-reactor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-reactor
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-rx2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-rx2
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-rx3

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-rx3
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-slf4j
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-swing

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-swing
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-test
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jetbrains.kotlinx
      Artifact Idkotlinx-coroutines-test-jvm
      Current Version1.6.4
      Scope
      Classifier
      Typejar
      Newer versions1.7.0-Beta
      1.7.0-RC
      1.7.0
      1.7.1
      1.7.2
      1.7.3
      1.8.0-RC
      1.8.0-RC2 Latest Minor
      +

      org.jolokia:jolokia-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.jolokia
      Artifact Idjolokia-core
      Current Version1.7.2
      Scope
      Classifier
      Typejar
      +

      org.jooq:jooq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.jooq:jooq-codegen

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq-codegen
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.jooq:jooq-kotlin

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq-kotlin
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.jooq:jooq-meta

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.jooq
      Artifact Idjooq-meta
      Current Version3.14.16
      Scope
      Classifier
      Typejar
      Newer versions3.15.0
      3.15.1
      3.15.2
      3.15.3
      3.15.4
      3.15.5
      3.15.6
      3.15.7
      3.15.8
      3.15.9
      3.15.10
      3.15.11
      3.15.12
      3.16.0
      3.16.1
      3.16.2
      3.16.3
      3.16.4
      3.16.5
      3.16.6
      3.16.7
      3.16.8
      3.16.9
      3.16.10
      3.16.11
      3.16.12
      3.16.13
      3.16.14
      3.16.15
      3.16.16
      3.16.17
      3.16.18
      3.16.19
      3.16.20
      3.16.21
      3.16.22
      3.16.23
      3.17.0
      3.17.1
      3.17.2
      3.17.3
      3.17.4
      3.17.5
      3.17.6
      3.17.7
      3.17.8
      3.17.9
      3.17.10
      3.17.11
      3.17.12
      3.17.13
      3.17.14
      3.17.15
      3.17.16
      3.17.17
      3.17.18
      3.17.19
      3.18.0
      3.18.1
      3.18.2
      3.18.3
      3.18.4
      3.18.5
      3.18.6
      3.18.7
      3.18.8
      3.18.9
      3.18.10
      3.19.0
      3.19.1
      3.19.2
      3.19.3 Latest Minor
      +

      org.junit.jupiter:junit-jupiter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-api
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-engine
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-migrationsupport

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-migrationsupport
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.jupiter:junit-jupiter-params

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.jupiter
      Artifact Idjunit-jupiter-params
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-commons
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-console

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-console
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-engine
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-jfr

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-jfr
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-launcher

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-launcher
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-reporting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-reporting
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-runner

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-runner
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite-api
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite-commons
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-suite-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-suite-engine
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.platform:junit-platform-testkit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.platform
      Artifact Idjunit-platform-testkit
      Current Version1.8.2
      Scope
      Classifier
      Typejar
      Newer versions1.9.0-M1
      1.9.0-RC1
      1.9.0
      1.9.1
      1.9.2
      1.9.3
      1.10.0-M1
      1.10.0-RC1
      1.10.0-RC2
      1.10.0
      1.10.1
      1.10.2 Latest Minor
      +

      org.junit.vintage:junit-vintage-engine

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.junit.vintage
      Artifact Idjunit-vintage-engine
      Current Version5.8.2
      Scope
      Classifier
      Typejar
      Newer versions5.9.0-M1
      5.9.0-RC1
      5.9.0
      5.9.1
      5.9.2
      5.9.3
      5.10.0-M1
      5.10.0-RC1
      5.10.0-RC2
      5.10.0
      5.10.1
      5.10.2 Latest Minor
      +

      org.liquibase:liquibase-cdi

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.liquibase
      Artifact Idliquibase-cdi
      Current Version4.9.1
      Scope
      Classifier
      Typejar
      Newer versions4.10.0
      4.11.0
      4.12.0
      4.13.0
      4.14.0
      4.15.0
      4.16.0
      4.16.1
      4.17.0
      4.17.1
      4.17.2
      4.18.0
      4.19.0
      4.19.1
      4.20.0
      4.21.0
      4.21.1
      4.22.0
      4.23.0
      4.23.1
      4.23.2
      4.24.0
      4.25.0
      4.25.1
      4.26.0 Latest Minor
      +

      org.liquibase:liquibase-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.liquibase
      Artifact Idliquibase-core
      Current Version4.9.1
      Scope
      Classifier
      Typejar
      Newer versions4.10.0
      4.11.0
      4.12.0
      4.13.0
      4.14.0
      4.15.0
      4.16.0
      4.16.1
      4.17.0
      4.17.1
      4.17.2
      4.18.0
      4.19.0
      4.19.1
      4.20.0
      4.21.0
      4.21.1
      4.22.0
      4.23.0
      4.23.1
      4.23.2
      4.24.0
      4.25.0
      4.25.1
      4.26.0 Latest Minor
      +

      org.mariadb:r2dbc-mariadb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.mariadb
      Artifact Idr2dbc-mariadb
      Current Version1.1.2
      Scope
      Classifier
      Typejar
      Newer versions1.1.3
      1.1.4 Latest Incremental
      +

      org.mariadb.jdbc:mariadb-java-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mariadb.jdbc
      Artifact Idmariadb-java-client
      Current Version3.1.4
      Scope
      Classifier
      Typejar
      Newer versions3.2.0
      3.3.0
      3.3.1
      3.3.2 Latest Minor
      +

      org.messaginghub:pooled-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.messaginghub
      Artifact Idpooled-jms
      Current Version1.2.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      3.0.0
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5 Latest Major
      +

      org.mockito:mockito-android

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-android
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-core
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-errorprone

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-errorprone
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-inline

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-inline
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0 Latest Major
      +

      org.mockito:mockito-junit-jupiter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-junit-jupiter
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mockito:mockito-proxy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mockito
      Artifact Idmockito-proxy
      Current Version4.5.1
      Scope
      Classifier
      Typejar
      Newer versions4.6.0
      4.6.1
      4.7.0
      4.8.0
      4.8.1
      4.9.0
      4.10.0
      4.11.0 Latest Minor
      5.0.0
      5.1.0
      5.1.1
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0 Latest Major
      +

      org.mongodb:bson

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idbson
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:bson-record-codec

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idbson-record-codec
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-core
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-legacy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-legacy
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-reactivestreams

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-reactivestreams
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mongodb:mongodb-driver-sync

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.mongodb
      Artifact Idmongodb-driver-sync
      Current Version4.6.1
      Scope
      Classifier
      Typejar
      Newer versions4.7.0-beta0
      4.7.0
      4.7.1
      4.7.2
      4.8.0-beta0
      4.8.0-rc0
      4.8.0
      4.8.1
      4.8.2
      4.9.0
      4.9.1
      4.10.0-alpha0
      4.10.0-alpha1
      4.10.0
      4.10.1
      4.10.2
      4.11.0
      4.11.1 Latest Minor
      5.0.0-beta0 Latest Major
      +

      org.mortbay.jasper:apache-el

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.mortbay.jasper
      Artifact Idapache-el
      Current Version9.0.52
      Scope
      Classifier
      Typejar
      Newer versions9.0.83
      9.0.83.1 Latest Incremental
      10.0.0-M5
      10.0.0-M7
      10.0.0-M10
      10.0.0-1-M7
      10.0.2
      10.0.7
      10.0.10
      10.0.14
      10.0.27
      10.1.0-M16
      10.1.1
      10.1.5
      10.1.7
      10.1.16 Latest Major
      +

      org.mybatis:mybatis

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis
      Artifact Idmybatis
      Current Version3.5.15
      Scope
      Classifier
      Typejar
      +

      org.mybatis:mybatis-spring

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.mybatis
      Artifact Idmybatis-spring
      Current Version2.1.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      org.mybatis.dynamic-sql:mybatis-dynamic-sql

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.dynamic-sql
      Artifact Idmybatis-dynamic-sql
      Current Version1.5.0
      Scope
      Classifier
      Typejar
      +

      org.mybatis.scripting:mybatis-freemarker

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.scripting
      Artifact Idmybatis-freemarker
      Current Version1.2.4
      Scope
      Classifier
      Typejar
      +

      org.mybatis.scripting:mybatis-thymeleaf

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.scripting
      Artifact Idmybatis-thymeleaf
      Current Version1.0.4
      Scope
      Classifier
      Typejar
      +

      org.mybatis.scripting:mybatis-velocity

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis.scripting
      Artifact Idmybatis-velocity
      Current Version2.1.2
      Scope
      Classifier
      Typejar
      +

      org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.mybatis.spring.boot
      Artifact Idmybatis-spring-boot-autoconfigure
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      org.mybatis.spring.boot:mybatis-spring-boot-starter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.mybatis.spring.boot
      Artifact Idmybatis-spring-boot-starter
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      +

      org.neo4j.driver:neo4j-java-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.neo4j.driver
      Artifact Idneo4j-java-driver
      Current Version4.4.12
      Scope
      Classifier
      Typejar
      Newer versions4.4.13 Latest Incremental
      5.0.0-alpha01
      5.0.0-alpha02
      5.0.0-alpha03
      5.0.0-beta01
      5.0.0
      5.1.0
      5.2.0
      5.3.0
      5.3.1
      5.4.0
      5.5.0
      5.6.0
      5.7.0
      5.8.0
      5.9.0
      5.10.0
      5.11.0
      5.12.0
      5.13.0
      5.14.0
      5.15.0
      5.16.0
      5.17.0 Latest Major
      +

      org.postgresql:postgresql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.postgresql
      Artifact Idpostgresql
      Current Version42.3.8
      Scope
      Classifier
      Typejar
      Newer versions42.4.0
      42.4.1
      42.4.2
      42.4.3
      42.5.0
      42.5.1
      42.5.2
      42.5.3
      42.5.4
      42.6.0
      42.7.0
      42.7.1 Latest Minor
      +

      org.postgresql:r2dbc-postgresql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.postgresql
      Artifact Idr2dbc-postgresql
      Current Version0.9.2.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions0.9.3.RELEASE Latest Incremental
      1.0.0.RC1
      1.0.0.RELEASE
      1.0.1.RELEASE
      1.0.2.RELEASE
      1.0.3.RELEASE
      1.0.4.RELEASE Latest Major
      +

      org.projectlombok:lombok

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.projectlombok
      Artifact Idlombok
      Current Version1.18.30
      Scope
      Classifier
      Typejar
      +

      org.quartz-scheduler:quartz

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.quartz-scheduler
      Artifact Idquartz
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-rc1
      2.4.0-rc2
      2.5.0-rc1 Latest Minor
      +

      org.quartz-scheduler:quartz-jobs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.quartz-scheduler
      Artifact Idquartz-jobs
      Current Version2.3.2
      Scope
      Classifier
      Typejar
      Newer versions2.4.0-rc1
      2.4.0-rc2
      2.5.0-rc1 Latest Minor
      +

      org.reactivestreams:reactive-streams

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.reactivestreams
      Artifact Idreactive-streams
      Current Version1.0.4
      Scope
      Classifier
      Typejar
      +

      org.seleniumhq.selenium:htmlunit-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idhtmlunit-driver
      Current Version3.61.0
      Scope
      Classifier
      Typejar
      Newer versions3.62.0
      3.63.0
      3.64.0 Latest Minor
      4.5.0
      4.5.2
      4.6.0
      4.7.0
      4.7.2
      4.8.0
      4.8.1
      4.8.1.1
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.13.0 Latest Major
      +

      org.seleniumhq.selenium:lift

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idlift
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-api
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-chrome-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-chrome-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-chromium-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-chromium-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v100

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v100
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v101

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v101
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v85

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v85
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-devtools-v99

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-devtools-v99
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      +

      org.seleniumhq.selenium:selenium-edge-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-edge-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-firefox-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-firefox-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-grid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-grid
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-http
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-ie-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-ie-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-java

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-java
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-json
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-opera-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-opera-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-remote-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-remote-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-safari-driver

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-safari-driver
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-session-map-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-session-map-jdbc
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-session-map-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-session-map-redis
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.seleniumhq.selenium:selenium-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.seleniumhq.selenium
      Artifact Idselenium-support
      Current Version4.1.4
      Scope
      Classifier
      Typejar
      Newer versions4.2.0
      4.2.1
      4.2.2
      4.3.0
      4.4.0
      4.5.0
      4.5.1
      4.5.2
      4.5.3
      4.6.0
      4.7.0
      4.7.1
      4.7.2
      4.8.0
      4.8.1
      4.8.2
      4.8.3
      4.9.0
      4.9.1
      4.10.0
      4.11.0
      4.12.0
      4.12.1
      4.13.0
      4.14.0
      4.14.1
      4.15.0
      4.16.0
      4.16.1
      4.17.0 Latest Minor
      +

      org.skyscreamer:jsonassert

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.skyscreamer
      Artifact Idjsonassert
      Current Version1.5.1
      Scope
      Classifier
      Typejar
      +

      org.slf4j:jcl-over-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idjcl-over-slf4j
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:jul-to-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idjul-to-slf4j
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:log4j-over-slf4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idlog4j-over-slf4j
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-api

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-api
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-ext

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-ext
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-jcl

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.slf4j
      Artifact Idslf4j-jcl
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      +

      org.slf4j:slf4j-jdk14

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-jdk14
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-log4j12

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-log4j12
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-nop

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-nop
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.slf4j:slf4j-simple

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.slf4j
      Artifact Idslf4j-simple
      Current Version1.7.36
      Scope
      Classifier
      Typejar
      Newer versions1.8.0-alpha0
      1.8.0-alpha1
      1.8.0-alpha2
      1.8.0-beta0
      1.8.0-beta1
      1.8.0-beta2
      1.8.0-beta4 Latest Minor
      2.0.0-alpha0
      2.0.0-alpha1
      2.0.0-alpha2
      2.0.0-alpha3
      2.0.0-alpha4
      2.0.0-alpha5
      2.0.0-alpha6
      2.0.0-alpha7
      2.0.0-beta0
      2.0.0-beta1
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.0.8
      2.0.9
      2.0.10
      2.0.11
      2.0.12
      2.1.0-alpha0
      2.1.0-alpha1 Latest Major
      +

      org.springframework:spring-aop

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-aop
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-aspects

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-aspects
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-beans

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-beans
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-context

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-context
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-context-indexer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-context-indexer
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-context-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-context-support
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-core
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-expression

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-expression
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-instrument

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-instrument
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-jcl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-jcl
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-jdbc
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-jms
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-messaging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-messaging
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-orm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-orm
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-oxm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-oxm
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-r2dbc
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-test
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-tx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-tx
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-web
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-webflux

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-webflux
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-webmvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-webmvc
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework:spring-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework
      Artifact Idspring-websocket
      Current Version5.3.31
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-RC1
      6.0.0-RC2
      6.0.0-RC3
      6.0.0-RC4
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.0.10
      6.0.11
      6.0.12
      6.0.13
      6.0.14
      6.0.15
      6.0.16
      6.1.0-M1
      6.1.0-M2
      6.1.0-M3
      6.1.0-M4
      6.1.0-M5
      6.1.0-RC1
      6.1.0-RC2
      6.1.0
      6.1.1
      6.1.2
      6.1.3 Latest Major
      +

      org.springframework.amqp:spring-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-amqp
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit-junit

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit-junit
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit-stream

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit-stream
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.amqp:spring-rabbit-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.amqp
      Artifact Idspring-rabbit-test
      Current Version2.4.17
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.batch:spring-batch-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-core
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.batch:spring-batch-infrastructure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-infrastructure
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.batch:spring-batch-integration

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-integration
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.batch:spring-batch-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.batch
      Artifact Idspring-batch-test
      Current Version4.3.10
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-M7
      5.0.0-M8
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.1.0-M1
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0 Latest Major
      +

      org.springframework.boot:spring-boot

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-actuator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-actuator
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-actuator-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-actuator-autoconfigure
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-autoconfigure
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-autoconfigure-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-autoconfigure-processor
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-buildpack-platform

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-buildpack-platform
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-configuration-metadata

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-configuration-metadata
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-configuration-processor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-configuration-processor
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-devtools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-devtools
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-jarmode-layertools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-jarmode-layertools
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-loader

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-loader
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-loader-tools

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-loader-tools
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-properties-migrator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-properties-migrator
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-activemq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-activemq
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-actuator

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-actuator
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-amqp
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-aop

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-aop
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-artemis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-artemis
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-batch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-batch
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-cache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-cache
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-cassandra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-cassandra
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-cassandra-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-cassandra-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-couchbase

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-couchbase
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-couchbase-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-couchbase-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-elasticsearch
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-jdbc
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-jpa
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-ldap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-ldap
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-mongodb
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-mongodb-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-mongodb-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-neo4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-neo4j
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-r2dbc
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-redis
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-redis-reactive

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-redis-reactive
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-data-rest

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-data-rest
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-freemarker

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-freemarker
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-graphql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-graphql
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-groovy-templates

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-groovy-templates
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-hateoas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-hateoas
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-integration

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-integration
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jdbc
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jersey

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jersey
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jetty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jetty
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jooq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jooq
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-json

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-json
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-jta-atomikos

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-jta-atomikos
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      +

      org.springframework.boot:spring-boot-starter-log4j2

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-log4j2
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-logging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-logging
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-mail

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-mail
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-mustache

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-mustache
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-oauth2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-oauth2-client
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-oauth2-resource-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-oauth2-resource-server
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-quartz

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-quartz
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-reactor-netty

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-reactor-netty
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-rsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-rsocket
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-security
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-test
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-thymeleaf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-thymeleaf
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-tomcat

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-tomcat
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-undertow

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-undertow
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-validation

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-validation
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-web
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-web-services

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-web-services
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-webflux

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-webflux
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-starter-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-starter-websocket
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-test
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.boot:spring-boot-test-autoconfigure

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-test-autoconfigure
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      org.springframework.data:spring-data-cassandra

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-cassandra
      Current Version3.4.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-commons

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-commons
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-couchbase

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-couchbase
      Current Version4.4.18
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      5.0.10
      5.0.11
      5.0.12
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0
      5.1.1
      5.1.2
      5.1.3
      5.1.4
      5.1.5
      5.1.6
      5.1.7
      5.1.8
      5.2.0-M1
      5.2.0-M2
      5.2.0-M3
      5.2.0-RC1
      5.2.0
      5.2.1
      5.2.2 Latest Major
      +

      org.springframework.data:spring-data-elasticsearch

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-elasticsearch
      Current Version4.4.18
      Scope
      Classifier
      Typejar
      Newer versions5.0.0-M1
      5.0.0-M2
      5.0.0-M3
      5.0.0-M4
      5.0.0-M5
      5.0.0-M6
      5.0.0-RC1
      5.0.0-RC2
      5.0.0
      5.0.1
      5.0.2
      5.0.3
      5.0.4
      5.0.5
      5.0.6
      5.0.7
      5.0.8
      5.0.9
      5.0.10
      5.0.11
      5.0.12
      5.1.0-M2
      5.1.0-M3
      5.1.0-RC1
      5.1.0
      5.1.1
      5.1.2
      5.1.3
      5.1.4
      5.1.5
      5.1.6
      5.1.7
      5.1.8
      5.2.0-M1
      5.2.0-M2
      5.2.0-M3
      5.2.0-RC1
      5.2.0
      5.2.1
      5.2.2 Latest Major
      +

      org.springframework.data:spring-data-envers

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-envers
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-geode

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-geode
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6 Latest Major
      +

      org.springframework.data:spring-data-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-jdbc
      Current Version2.4.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-jpa
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-keyvalue

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-keyvalue
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-ldap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-ldap
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-mongodb
      Current Version3.4.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-neo4j

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-neo4j
      Current Version6.3.18
      Scope
      Classifier
      Typejar
      Newer versions7.0.0-M1
      7.0.0-M2
      7.0.0-M3
      7.0.0-M4
      7.0.0-M5
      7.0.0-M6
      7.0.0-RC1
      7.0.0-RC2
      7.0.0
      7.0.1
      7.0.2
      7.0.3
      7.0.4
      7.0.5
      7.0.6
      7.0.7
      7.0.8
      7.0.9
      7.0.10
      7.0.11
      7.0.12
      7.1.0-M1
      7.1.0-M2
      7.1.0-M3
      7.1.0-RC1
      7.1.0
      7.1.1
      7.1.2
      7.1.3
      7.1.4
      7.1.5
      7.1.6
      7.1.7
      7.1.8
      7.2.0-M1
      7.2.0-M2
      7.2.0-M3
      7.2.0-RC1
      7.2.0
      7.2.1
      7.2.2 Latest Major
      +

      org.springframework.data:spring-data-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-r2dbc
      Current Version1.5.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-redis
      Current Version2.7.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-relational

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-relational
      Current Version2.4.18
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.1.0-M2
      3.1.0-M3
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1
      3.2.2 Latest Major
      +

      org.springframework.data:spring-data-rest-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-rest-core
      Current Version3.7.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-rest-hal-explorer

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-rest-hal-explorer
      Current Version3.7.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.data:spring-data-rest-webmvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.data
      Artifact Idspring-data-rest-webmvc
      Current Version3.7.18
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-M4
      4.0.0-M5
      4.0.0-M6
      4.0.0-RC1
      4.0.0-RC2
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10
      4.0.11
      4.0.12
      4.1.0-M2
      4.1.0-M3
      4.1.0-RC1
      4.1.0
      4.1.1
      4.1.2
      4.1.3
      4.1.4
      4.1.5
      4.1.6
      4.1.7
      4.1.8
      4.2.0-M1
      4.2.0-M2
      4.2.0-M3
      4.2.0-RC1
      4.2.0
      4.2.1
      4.2.2 Latest Major
      +

      org.springframework.experimental:spring-aot

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.experimental
      Artifact Idspring-aot
      Current Version0.12.2
      Scope
      Classifier
      Typejar
      +

      org.springframework.experimental:spring-native

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.experimental
      Artifact Idspring-native
      Current Version0.12.2
      Scope
      Classifier
      Typejar
      +

      org.springframework.graphql:spring-graphql

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.graphql
      Artifact Idspring-graphql
      Current Version1.0.6
      Scope
      Classifier
      Typejar
      Newer versions1.1.0-M1
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.2.0-M1
      1.2.0-RC1
      1.2.0
      1.2.1
      1.2.2
      1.2.3
      1.2.4 Latest Minor
      +

      org.springframework.graphql:spring-graphql-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.graphql
      Artifact Idspring-graphql-test
      Current Version1.0.6
      Scope
      Classifier
      Typejar
      Newer versions1.1.0-M1
      1.1.0-RC1
      1.1.0
      1.1.1
      1.1.2
      1.1.3
      1.1.4
      1.1.5
      1.1.6
      1.1.7
      1.2.0-M1
      1.2.0-RC1
      1.2.0
      1.2.1
      1.2.2
      1.2.3
      1.2.4 Latest Minor
      +

      org.springframework.hateoas:spring-hateoas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.hateoas
      Artifact Idspring-hateoas
      Current Version1.5.6
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0-M2
      2.0.0-M3
      2.0.0-M4
      2.0.0-M5
      2.0.0-M6
      2.0.0-RC1
      2.0.0-RC2
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5
      2.0.6
      2.0.7
      2.1.0-M1
      2.1.0-RC1
      2.1.0
      2.1.1
      2.1.2
      2.1.3
      2.2.0-M1
      2.2.0-M2
      2.2.0-RC1
      2.2.0 Latest Major
      +

      org.springframework.integration:spring-integration-amqp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-amqp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-core
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-event

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-event
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-feed

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-feed
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-file

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-file
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-ftp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-ftp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-gemfire

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-gemfire
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5 Latest Major
      +

      org.springframework.integration:spring-integration-groovy

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-groovy
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-http

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-http
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-ip

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-ip
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jdbc
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jms

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jms
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jmx

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jmx
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-jpa

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-jpa
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-kafka

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-kafka
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-mail

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-mail
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-mongodb
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-mqtt

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-mqtt
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-r2dbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-r2dbc
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-redis
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-rmi

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-rmi
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      +

      org.springframework.integration:spring-integration-rsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-rsocket
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-scripting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-scripting
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-security
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-sftp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-sftp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-stomp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-stomp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-stream

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-stream
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-syslog

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-syslog
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-test
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-test-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-test-support
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-webflux

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-webflux
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-websocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-websocket
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-ws

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-ws
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-xml
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-xmpp

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-xmpp
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-zeromq

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-zeromq
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.integration:spring-integration-zookeeper

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.integration
      Artifact Idspring-integration-zookeeper
      Current Version5.5.20
      Scope
      Classifier
      Typejar
      Newer versions6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.0.9
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0
      6.2.1 Latest Major
      +

      org.springframework.kafka:spring-kafka

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.kafka
      Artifact Idspring-kafka
      Current Version2.8.11
      Scope
      Classifier
      Typejar
      Newer versions2.9.0-M1
      2.9.0-RC1
      2.9.0
      2.9.1
      2.9.2
      2.9.3
      2.9.4
      2.9.5
      2.9.6
      2.9.7
      2.9.8
      2.9.9
      2.9.10
      2.9.11
      2.9.12
      2.9.13 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.kafka:spring-kafka-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.kafka
      Artifact Idspring-kafka-test
      Current Version2.8.11
      Scope
      Classifier
      Typejar
      Newer versions2.9.0-M1
      2.9.0-RC1
      2.9.0
      2.9.1
      2.9.2
      2.9.3
      2.9.4
      2.9.5
      2.9.6
      2.9.7
      2.9.8
      2.9.9
      2.9.10
      2.9.11
      2.9.12
      2.9.13 Latest Minor
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-M6
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-core
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-core-tiger

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-core-tiger
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1 Latest Major
      +

      org.springframework.ldap:spring-ldap-ldif-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-ldif-core
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-odm

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-odm
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.ldap:spring-ldap-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ldap
      Artifact Idspring-ldap-test
      Current Version2.4.1
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0
      3.2.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-asciidoctor

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-asciidoctor
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-core
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-mockmvc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-mockmvc
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-restassured

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-restassured
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.restdocs:spring-restdocs-webtestclient

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.restdocs
      Artifact Idspring-restdocs-webtestclient
      Current Version2.0.8.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0
      3.0.1 Latest Major
      +

      org.springframework.retry:spring-retry

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.retry
      Artifact Idspring-retry
      Current Version1.3.4
      Scope
      Classifier
      Typejar
      Newer versions2.0.0-M1
      2.0.0-RC1
      2.0.0-RC2
      2.0.0
      2.0.1
      2.0.2
      2.0.3
      2.0.4
      2.0.5 Latest Major
      +

      org.springframework.security:spring-security-acl

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-acl
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-aspects

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-aspects
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-cas

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-cas
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-config

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-config
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-core
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-crypto

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-crypto
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-data

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-data
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-ldap

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-ldap
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-messaging

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-messaging
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-client

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-client
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-core
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-jose

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-jose
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-oauth2-resource-server

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-oauth2-resource-server
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-openid

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-openid
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1 Latest Major
      +

      org.springframework.security:spring-security-remoting

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-remoting
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      +

      org.springframework.security:spring-security-rsocket

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-rsocket
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-saml2-service-provider

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-saml2-service-provider
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-taglibs

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-taglibs
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-test
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.security:spring-security-web

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.springframework.security
      Artifact Idspring-security-web
      Current Version5.7.11
      Scope
      Classifier
      Typejar
      Newer versions5.8.0-M1
      5.8.0-M2
      5.8.0-M3
      5.8.0-RC1
      5.8.0
      5.8.1
      5.8.2
      5.8.3
      5.8.4
      5.8.5
      5.8.6
      5.8.7
      5.8.8
      5.8.9 Latest Minor
      6.0.0-M1
      6.0.0-M2
      6.0.0-M3
      6.0.0-M4
      6.0.0-M5
      6.0.0-M6
      6.0.0-M7
      6.0.0-RC1
      6.0.0-RC2
      6.0.0
      6.0.1
      6.0.2
      6.0.3
      6.0.4
      6.0.5
      6.0.6
      6.0.7
      6.0.8
      6.1.0-M1
      6.1.0-M2
      6.1.0-RC1
      6.1.0
      6.1.1
      6.1.2
      6.1.3
      6.1.4
      6.1.5
      6.1.6
      6.2.0-M1
      6.2.0-M2
      6.2.0-M3
      6.2.0-RC1
      6.2.0-RC2
      6.2.0
      6.2.1
      6.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-core
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-data-geode

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer incremental version available. Incremental updates are typically passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-data-geode
      Current Version2.7.1
      Scope
      Classifier
      Typejar
      Newer versions2.7.2 Latest Incremental
      3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5 Latest Major
      +

      org.springframework.session:spring-session-data-mongodb

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-data-mongodb
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-data-redis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-data-redis
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-hazelcast

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-hazelcast
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.session:spring-session-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.session
      Artifact Idspring-session-jdbc
      Current Version2.7.4
      Scope
      Classifier
      Typejar
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.1.0-M1
      3.1.0-RC1
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.2.0-M1
      3.2.0-RC1
      3.2.0
      3.2.1
      3.3.0-M1 Latest Major
      +

      org.springframework.ws:spring-ws-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-core
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-ws-security

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-security
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-ws-support

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-support
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-ws-test

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-ws-test
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.springframework.ws:spring-xml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.ws
      Artifact Idspring-xml
      Current Version3.1.8
      Scope
      Classifier
      Typejar
      Newer versions4.0.0-M1
      4.0.0-M2
      4.0.0-M3
      4.0.0-RC1
      4.0.0
      4.0.1
      4.0.2
      4.0.3
      4.0.4
      4.0.5
      4.0.6
      4.0.7
      4.0.8
      4.0.9
      4.0.10 Latest Major
      +

      org.thymeleaf:thymeleaf

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.thymeleaf
      Artifact Idthymeleaf
      Current Version3.0.15.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.1.0.M1
      3.1.0.M2
      3.1.0.M3
      3.1.0.RC1
      3.1.0.RC2
      3.1.0.RELEASE
      3.1.1.RELEASE
      3.1.2.RELEASE Latest Minor
      +

      org.thymeleaf:thymeleaf-spring5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.thymeleaf
      Artifact Idthymeleaf-spring5
      Current Version3.0.15.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.1.0.M1
      3.1.0.M2
      3.1.0.M3
      3.1.0.RC1
      3.1.0.RC2
      3.1.0.RELEASE
      3.1.1.RELEASE
      3.1.2.RELEASE Latest Minor
      +

      org.thymeleaf.extras:thymeleaf-extras-java8time

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.thymeleaf.extras
      Artifact Idthymeleaf-extras-java8time
      Current Version3.0.4.RELEASE
      Scope
      Classifier
      Typejar
      +

      org.thymeleaf.extras:thymeleaf-extras-springsecurity5

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.thymeleaf.extras
      Artifact Idthymeleaf-extras-springsecurity5
      Current Version3.0.5.RELEASE
      Scope
      Classifier
      Typejar
      Newer versions3.1.0.M1
      3.1.0.RC1
      3.1.0.RC2
      3.1.0.RELEASE
      3.1.1.RELEASE
      3.1.2.RELEASE Latest Minor
      +

      org.webjars:webjars-locator-core

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.webjars
      Artifact Idwebjars-locator-core
      Current Version0.50
      Scope
      Classifier
      Typejar
      Newer versions0.51
      0.52
      0.53
      0.54
      0.55 Latest Minor
      +

      org.xerial:sqlite-jdbc

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.xerial
      Artifact Idsqlite-jdbc
      Current Version3.36.0.3
      Scope
      Classifier
      Typejar
      Newer versions3.39.2.0
      3.39.2.1
      3.39.3.0
      3.39.4.0
      3.39.4.1
      3.40.0.0
      3.40.1.0
      3.41.0.0
      3.41.0.1
      3.41.2.0
      3.41.2.1
      3.41.2.2
      3.42.0.0
      3.42.0.1
      3.43.0.0
      3.43.2.0
      3.43.2.1
      3.43.2.2
      3.44.0.0
      3.44.1.0
      3.45.0.0
      3.45.1.0 Latest Minor
      +

      org.xmlunit:xmlunit-assertj

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-assertj
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-assertj3

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-assertj3
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-core

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-core
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-legacy

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-legacy
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-matchers

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-matchers
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.xmlunit:xmlunit-placeholders

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.xmlunit
      Artifact Idxmlunit-placeholders
      Current Version2.9.1
      Scope
      Classifier
      Typejar
      +

      org.yaml:snakeyaml

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.yaml
      Artifact Idsnakeyaml
      Current Version1.30
      Scope
      Classifier
      Typejar
      Newer versions1.31
      1.32
      1.33 Latest Minor
      2.0
      2.1
      2.2 Latest Major
      +

      redis.clients:jedis

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idredis.clients
      Artifact Idjedis
      Current Version3.8.0
      Scope
      Classifier
      Typejar
      Newer versions3.9.0
      3.10.0 Latest Minor
      4.0.0-beta1
      4.0.0-beta2
      4.0.0-beta3
      4.0.0-beta4
      4.0.0-RC1
      4.0.0-rc2
      4.0.0
      4.0.1
      4.1.0
      4.1.1
      4.2.0-m1
      4.2.0-rc1
      4.2.0
      4.2.1
      4.2.2
      4.2.3
      4.3.0-m1
      4.3.0-m2
      4.3.0
      4.3.1
      4.3.2
      4.4.0-m1
      4.4.0-m2
      4.4.0-rc1
      4.4.0
      4.4.1
      4.4.2
      4.4.3
      4.4.4
      4.4.5
      4.4.6
      5.0.0-alpha1
      5.0.0-alpha2
      5.0.0-beta1
      5.0.0-beta2
      5.0.0
      5.0.1
      5.0.2
      5.1.0
      5.2.0-alpha2 Latest Major
      +

      wsdl4j:wsdl4j

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idwsdl4j
      Artifact Idwsdl4j
      Current Version1.6.3
      Scope
      Classifier
      Typejar
      +
      +
      +
      +
      + + + + diff --git a/ko/distribution-management.html b/ko/distribution-management.html new file mode 100644 index 0000000..b2cf987 --- /dev/null +++ b/ko/distribution-management.html @@ -0,0 +1,79 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Distribution Management + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      The following is the distribution management information used by this project.

      +

      Repository - ossrh

      https://oss.sonatype.org/service/local/staging/deploy/maven2/
      +

      Snapshot Repository - ossrh

      https://oss.sonatype.org/content/repositories/snapshots
      +

      Site - gh-pages-scm

      +

      scm:git:ssh://git@github.com/mybatis/spring-native.git/mybatis-spring-native-docs

      +
      +
      +
      +
      + + + + diff --git a/ko/fonts/glyphicons-halflings-regular.eot b/ko/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..423bd5d Binary files /dev/null and b/ko/fonts/glyphicons-halflings-regular.eot differ diff --git a/ko/fonts/glyphicons-halflings-regular.svg b/ko/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..c8f06d9 --- /dev/null +++ b/ko/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ko/fonts/glyphicons-halflings-regular.ttf b/ko/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..a498ef4 Binary files /dev/null and b/ko/fonts/glyphicons-halflings-regular.ttf differ diff --git a/ko/fonts/glyphicons-halflings-regular.woff b/ko/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..d83c539 Binary files /dev/null and b/ko/fonts/glyphicons-halflings-regular.woff differ diff --git a/ko/images/accessories-text-editor.png b/ko/images/accessories-text-editor.png new file mode 100644 index 0000000..abc3366 Binary files /dev/null and b/ko/images/accessories-text-editor.png differ diff --git a/ko/images/add.gif b/ko/images/add.gif new file mode 100644 index 0000000..1cb3dbf Binary files /dev/null and b/ko/images/add.gif differ diff --git a/ko/images/apache-maven-project-2.png b/ko/images/apache-maven-project-2.png new file mode 100644 index 0000000..a44db6e Binary files /dev/null and b/ko/images/apache-maven-project-2.png differ diff --git a/ko/images/application-certificate.png b/ko/images/application-certificate.png new file mode 100644 index 0000000..cc6aff6 Binary files /dev/null and b/ko/images/application-certificate.png differ diff --git a/ko/images/close.gif b/ko/images/close.gif new file mode 100644 index 0000000..1c26bbc Binary files /dev/null and b/ko/images/close.gif differ diff --git a/ko/images/contact-new.png b/ko/images/contact-new.png new file mode 100644 index 0000000..ebc4316 Binary files /dev/null and b/ko/images/contact-new.png differ diff --git a/ko/images/document-properties.png b/ko/images/document-properties.png new file mode 100644 index 0000000..34c2409 Binary files /dev/null and b/ko/images/document-properties.png differ diff --git a/ko/images/drive-harddisk.png b/ko/images/drive-harddisk.png new file mode 100644 index 0000000..d7ce475 Binary files /dev/null and b/ko/images/drive-harddisk.png differ diff --git a/ko/images/fix.gif b/ko/images/fix.gif new file mode 100644 index 0000000..b7eb3dc Binary files /dev/null and b/ko/images/fix.gif differ diff --git a/ko/images/icon_error_sml.gif b/ko/images/icon_error_sml.gif new file mode 100644 index 0000000..12e9a01 Binary files /dev/null and b/ko/images/icon_error_sml.gif differ diff --git a/ko/images/icon_help_sml.gif b/ko/images/icon_help_sml.gif new file mode 100644 index 0000000..aaf20e6 Binary files /dev/null and b/ko/images/icon_help_sml.gif differ diff --git a/ko/images/icon_info_sml.gif b/ko/images/icon_info_sml.gif new file mode 100644 index 0000000..b776326 Binary files /dev/null and b/ko/images/icon_info_sml.gif differ diff --git a/ko/images/icon_success_sml.gif b/ko/images/icon_success_sml.gif new file mode 100644 index 0000000..0a19527 Binary files /dev/null and b/ko/images/icon_success_sml.gif differ diff --git a/ko/images/icon_warning_sml.gif b/ko/images/icon_warning_sml.gif new file mode 100644 index 0000000..ac6ad6a Binary files /dev/null and b/ko/images/icon_warning_sml.gif differ diff --git a/ko/images/image-x-generic.png b/ko/images/image-x-generic.png new file mode 100644 index 0000000..ab49efb Binary files /dev/null and b/ko/images/image-x-generic.png differ diff --git a/ko/images/internet-web-browser.png b/ko/images/internet-web-browser.png new file mode 100644 index 0000000..307d6ac Binary files /dev/null and b/ko/images/internet-web-browser.png differ diff --git a/ko/images/logos/build-by-maven-black.png b/ko/images/logos/build-by-maven-black.png new file mode 100644 index 0000000..919fd0f Binary files /dev/null and b/ko/images/logos/build-by-maven-black.png differ diff --git a/ko/images/logos/build-by-maven-white.png b/ko/images/logos/build-by-maven-white.png new file mode 100644 index 0000000..7d44c9c Binary files /dev/null and b/ko/images/logos/build-by-maven-white.png differ diff --git a/ko/images/logos/maven-feather.png b/ko/images/logos/maven-feather.png new file mode 100644 index 0000000..b5ada83 Binary files /dev/null and b/ko/images/logos/maven-feather.png differ diff --git a/ko/images/network-server.png b/ko/images/network-server.png new file mode 100644 index 0000000..1d12e19 Binary files /dev/null and b/ko/images/network-server.png differ diff --git a/ko/images/package-x-generic.png b/ko/images/package-x-generic.png new file mode 100644 index 0000000..8b7e9e6 Binary files /dev/null and b/ko/images/package-x-generic.png differ diff --git a/ko/images/profiles/pre-release.png b/ko/images/profiles/pre-release.png new file mode 100644 index 0000000..d448e85 Binary files /dev/null and b/ko/images/profiles/pre-release.png differ diff --git a/ko/images/profiles/retired.png b/ko/images/profiles/retired.png new file mode 100644 index 0000000..f89f6a2 Binary files /dev/null and b/ko/images/profiles/retired.png differ diff --git a/ko/images/profiles/sandbox.png b/ko/images/profiles/sandbox.png new file mode 100644 index 0000000..f88b362 Binary files /dev/null and b/ko/images/profiles/sandbox.png differ diff --git a/ko/images/remove.gif b/ko/images/remove.gif new file mode 100644 index 0000000..fc65631 Binary files /dev/null and b/ko/images/remove.gif differ diff --git a/ko/images/rss.png b/ko/images/rss.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/ko/images/rss.png differ diff --git a/ko/images/update.gif b/ko/images/update.gif new file mode 100644 index 0000000..b2a6d0b Binary files /dev/null and b/ko/images/update.gif differ diff --git a/ko/images/window-new.png b/ko/images/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/ko/images/window-new.png differ diff --git a/ko/img/glyphicons-halflings-white.png b/ko/img/glyphicons-halflings-white.png new file mode 100644 index 0000000..3bf6484 Binary files /dev/null and b/ko/img/glyphicons-halflings-white.png differ diff --git a/ko/img/glyphicons-halflings.png b/ko/img/glyphicons-halflings.png new file mode 100644 index 0000000..a996999 Binary files /dev/null and b/ko/img/glyphicons-halflings.png differ diff --git a/ko/index.html b/ko/index.html new file mode 100644 index 0000000..785bf6e --- /dev/null +++ b/ko/index.html @@ -0,0 +1,296 @@ + + + + + + + + + + mybatis-spring-native-docs – 개요 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      개요

      +

      마이바티스 스프링 네이티브란?

      +

      마이바티스 스프링 네이티브는 Spring Native에 MyBatis 애플리케이션을 빠르게 만들 수 있도록 도와줍니다.

      +

      지원 기능

      +

      마이바티스 핵심

      +
        + +
      • SQL 주석(@Select/@Insert/기타 등등…)에 정적 SQLs과 동적 SQLs(OGNL 표현식으로) 작성
      • +
      • 클래스경로와 로드 SQLs에 xml 파일 매퍼(mapper, 단계별 접근법) 기반으로 한 규칙 감지 (예시. 매퍼 인터페이스 정규화된 클래스 이름(FQCN)이 com.example.SampleMapper이면, com/example/SampleMapper.xml file를 찾아냅니다)
      • +
      • SQL 제공자 사용(@SelectProvider/@InsertProvider/기타 등등…)
      • +
      • Use built-in 2nd cache feature(in-memory 2nd cache)
      • +
      • 빌트인 2단계 캐시 기능
      • +
      +

      마이바티스 스프링

      +
        + +
      • 자동 스캔 대신 @MapperScan을 이용한 스캔 매퍼 인터페이스
      • +
      +

      마이바티스 스프링 부트

      +
        + +
      • SqlSessionFactorySqlSessionTemplate의 자동 설정합니다
      • +
      • @Mapper표기 된 매퍼 인터페이스 자동 스캔합니다
      • +
      • 환경설정 속성(application.properties)을 이용한 마이바티스 작동 습성 커스토마이즈 맞춤 설정합니다
      • +
      • DI 컨테이너에서 마이바티스 컴포넌트(Interceptor, TypeHandler, LanguageDriver 그리고 DatabaseIdProvider)를 찾아냅니다
      • +
      • DI 컨테이너를 구성하는 커스토마이저 컴포넌트 (ConfigurationCustomizer 또는 SqlSessionFactoryBeanCustomizer 가 적용 된 클래스)를 찾아냅니다
      • +
      +

      마이바티스 확장 모듈

      +
      +

      마이바티스 스프링 네이티브

      +
        + +
      • @MyBatisResourcesScan를 이용한 타입 에일리어스, 타입 핸들러 그리고 xml file 매퍼 스캔
      • +
      • 빌드 작동 시 @MyBatisResourcesScan를 이용하여 reflection hint로 어떤 클래스 든지 스캔
      • +
      • 빌드 작동 시 @MyBatisResourcesScan를 이용하여 어떤 리소스 든지 스캔
      • +
      • 파라미터 타입, 리턴 타입 그리고 네이티브 힌트(반사 힌트)에 대한 SQL 공급 타입 자동 등록 (표준 패턴만 지원)
      • +
      +

      알려진 제한사항

      +
      +

      통합 지원 모듈

      +

      스프링-네이티브 작동을 위한 일반 구성을 제공합니다

      + + + + + + + + + + + +
      NameDescription
      mybatis-spring-native-coreIntegrating module for mybatis and mybatis-spring(mybatis-spring-boot-starter) module basic features
      mybatis-spring-native-extensionsIntegrating module for extension module(using mybatis-thymeleaf, mybatis-velocity, mybatis-freemarker and mybatis-dynamic-sql) features
      +
      +

      사용법

      +

      @MyBatisResourcesScan 이용하기

      +

      In native-image, dynamic scanning does not work at runtime. +Therefore, we support to scan type aliases, type handlers and mapper xml files at build time using Spring AOT feature. +These resources will apply to MyBatis components using ConfigurationCustomizer and SqlSessionFactoryBeanCustomizer at startup time.

      + +
      +
      // ...
      +import org.mybatis.spring.nativex.MyBatisResourcesScan;
      +// ...
      +@MyBatisResourcesScan(typeAliasesPackages = "com.example.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml")
      +@SpringBootApplication
      +public class MybatisSpringNativeSampleApplication {
      +  // ...
      +}
      +
      +

      속성:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      AttributeDescription
      typeAliasesPackagesSpecify package names for scanning type aliases
      typeAliasesSupperTypeSpecify filter type(super class) for scanning type aliases
      typeHandlerPackagesSpecify package names for scanning type handlers
      mapperLocationPatternsSpecify location patterns for scanning mapper xml files
      reflectionTypePackagesSpecify package names for adding as reflection hint type
      reflectionTypeSuperTypeSpecify filter type(super class) for scanning reflection type
      typeAccessesSpecify access scopes for applying scanned classes to reflection hint
      resourceLocationPatternsSpecify location patterns for adding as resource hint file
      +
      +

      고지 사항

      +

      @MapperScan 사용

      +

      @MapperScan 사용 한다면, sqlSessionTemplateRef 또는 sqlSessionFactoryRef이 다음과 같이 명기되어야 합니다:

      + +
      +
      @MapperScan(basePackages = "com.example.mapper", sqlSessionTemplateRef = "sqlSessionTemplate")
      +@SpringBootApplication
      +public class MybatisSpringNativeSampleApplication {
      +  // ...
      +}
      +
      +

      2nd cache 사용

      +

      만약 2nd cache 기능을 사용한다면, serialization hints 설정이 필요합니다. +따라서 JEP-290 serial filter로 설정을 권합니다 .

      +
      + +

      중요:

      +

      다음의 경고 로그가 출력 되는 경우, JEP-290 serial filter 정의를 추가하는 것을 고려하십시오.

      + +
      +
      2022-01-16 13:18:21.045  WARN 21917 --- [           main] o.apache.ibatis.io.SerialFilterChecker   : As you are using functionality that deserializes object streams, it is recommended to define the JEP-290 serial filter. Please refer to https://docs.oracle.com/pls/topic/lookup?ctx=javase15&id=GUID-8296D8E8-2B93-4B9A-856E-0A65AF9B8C66
      +
      +
      +

      serialization hints 설정 방법

      +

      @SerializationHint를 사용하여 설정합니다.

      + +
      +
      @NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class, Number.class })) // Adding @SerializationHint
      +@SpringBootApplication
      +public class MybatisSpringNativeSampleApplication {
      +  // ...
      +}
      +
      +

      JEP-290 serial filter 정의 방법

      +

      Define -Djdk.serialFilter(system properties) on buildArgs of native-maven-plugin at pom.xml. +pom.xmlnative-maven-pluginbuildArgs 상의 -Djdk.serialFilter(시스템 속성) 설정

      +

      예시)

      + +
      +
      <plugin>
      +  <groupId>org.graalvm.buildtools</groupId>
      +  <artifactId>native-maven-plugin</artifactId>
      +  <version>${native-buildtools.version}</version>
      +  <extensions>true</extensions>
      +  <configuration>
      +    <buildArgs>
      +      <arg>-Djdk.serialFilter=org.mybatis.spring.nativex.sample.cache.*;java.util.*;java.lang.*;!*</arg> <!-- Adding definition -->
      +    </buildArgs>
      +  </configuration>
      +  <!-- ... -->
      +</plugin>
      +
      +

      샘플

      +

      스프링-네이티브에 마이바티스 실행을 위한 예제를 제공합니다.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NameDescription
      mybatis-spring-native-sample-simpleThe very simple sample application using annotation driven mapper (@Select/@Insert/etc…)
      mybatis-spring-native-sample-xmlThe very simple sample application using xml file driven mapper
      mybatis-spring-native-sample-sqlproviderThe very simple sample application using SQL provider driven mapper (@SelectProvider/@InsertProvider/etc…)
      mybatis-spring-native-sample-scanThe sample application using @MapperScan and @MyBatisResourcesScan annotation
      mybatis-spring-native-sample-daoThe sample application with DAO pattern (without mapper interface)
      mybatis-spring-native-sample-thymeleafThe sample application using mybatis-thymeleaf
      mybatis-spring-native-sample-thymeleaf-sqlgeneratorThe sample application using SqlGenerator provided by mybatis-thymeleaf without mybatis and mybatis-spring module
      mybatis-spring-native-sample-velocityThe sample application using mybatis-velocity
      mybatis-spring-native-sample-freemarkerThe sample application using mybatis-freemarker
      mybatis-spring-native-sample-cacheThe sample application with built-in 2nd cache feature
      mybatis-spring-native-sample-configurationThe sample application with customizing MyBatis's configuration using configuration properties feature(application.properties)
      mybatis-spring-native-sample-dynamic-sqlThe sample application using mybatis-dynamic-sql
      +
      +

      번역

      +

      마이바티스-스프링-네이티브에 대하여 다음 언어로 확인 가능합니다:

      + + +
      +
      +
      +
      +
      + + + + diff --git a/ko/issue-management.html b/ko/issue-management.html new file mode 100644 index 0000000..ecbde0b --- /dev/null +++ b/ko/issue-management.html @@ -0,0 +1,79 @@ + + + + + + + + + + mybatis-spring-native-docs – 이슈 추적 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      개요

      +

      이 프로젝트는 이슈 관리를 위해 GitHub Issue Management을(를) 사용합니다.

      +

      이슈 추적

      +

      이슈, 버그, 피쳐 요청 사항들은 이 프로젝트를 위한 다음 이슈관리시스템에 제출하셔야 합니다.

      +
      +
      +
      +
      +
      + + + + diff --git a/ko/js/apache-maven-fluido-2.0.0-M8.min.js b/ko/js/apache-maven-fluido-2.0.0-M8.min.js new file mode 100644 index 0000000..819716a --- /dev/null +++ b/ko/js/apache-maven-fluido-2.0.0-M8.min.js @@ -0,0 +1,287 @@ +(function(g,p){"object"===typeof module&&"object"===typeof module.exports?module.exports=g.document?p(g,!0):function(g){if(!g.document)throw Error("jQuery requires a window with a document");return p(g)}:p(g)})("undefined"!==typeof window?window:this,function(g,p){function x(a){var b=a.length,e=d.type(a);return"function"===e||d.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===e||0===b||"number"===typeof b&&0b;b+=2)"margin"=== +e&&(u+=d.css(a,e+oa[b],!0,l)),k?("content"===e&&(u-=d.css(a,"padding"+oa[b],!0,l)),"margin"!==e&&(u-=d.css(a,"border"+oa[b]+"Width",!0,l))):(u+=d.css(a,"padding"+oa[b],!0,l),"padding"!==e&&(u+=d.css(a,"border"+oa[b]+"Width",!0,l)));return u}function U(a,b,e){var k=!0,l="width"===b?a.offsetWidth:a.offsetHeight,u=ga(a),c=w.boxSizing&&"border-box"===d.css(a,"boxSizing",!1,u);if(0>=l||null==l){l=pa(a,b,u);if(0>l||null==l)l=a.style[b];if(Ja.test(l))return l;k=c&&(w.boxSizingReliable()||l===a.style[b]); +l=parseFloat(l)||0}return l+S(a,b,e||(c?"border":"content"),k,u)+"px"}function H(a,b,e,d,l){return new H.prototype.init(a,b,e,d,l)}function J(){setTimeout(function(){wa=void 0});return wa=d.now()}function v(a,b){var e,d={height:a},l=0;for(b=b?1:0;4>l;l+=2-b)e=oa[l],d["margin"+e]=d["padding"+e]=a;b&&(d.opacity=d.width=a);return d}function da(a,b,e){for(var d,l=(xa[b]||[]).concat(xa["*"]),c=0,f=l.length;ce&&l)return b;f.resolveWith(a,[h]);return!1}, +h=f.promise({elem:a,props:d.extend({},b),opts:d.extend(!0,{specialEasing:{}},e),originalProperties:b,originalOptions:e,startTime:wa||J(),duration:e.duration,tweens:[],createTween:function(b,e){b=d.Tween(a,h.opts,b,e,h.opts.specialEasing[b]||h.opts.easing);h.tweens.push(b);return b},stop:function(b){var e=0,d=b?h.tweens.length:0;if(k)return this;for(k=!0;ea?this[a+this.length]:this[a]:ba.call(this)},pushStack:function(a){a=d.merge(this.constructor(),a);a.prevObject=this;a.context=this.context;return a},each:function(a,b){return d.each(this,a,b)},map:function(a){return this.pushStack(d.map(this,function(b,e){return a.call(b,e,b)}))},slice:function(){return this.pushStack(ba.apply(this,arguments))},first:function(){return this.eq(0)}, +last:function(){return this.eq(-1)},eq:function(a){var b=this.length;a=+a+(0>a?b:0);return this.pushStack(0<=a&&ae?Math.max(0,d+e):e:0;eF.cacheLength&&delete a[b.shift()];return a[d+" "]=e}var b=[];return a}function k(a){a[Q]=!0;return a}function l(a){var b=I.createElement("div");try{return!!a(b)}catch(ma){return!1}finally{b.parentNode&&b.parentNode.removeChild(b)}}function c(a,b){var d=a.split("|");for(a=a.length;a--;)F.attrHandle[d[a]]=b}function f(a,b){var d=b&&a,e=d&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex|| +-2147483648)-(~a.sourceIndex||-2147483648);if(e)return e;if(d)for(;d=d.nextSibling;)if(d===b)return-1;return a?1:-1}function g(a){return function(b){return"input"===b.nodeName.toLowerCase()&&b.type===a}}function h(a){return function(b){var d=b.nodeName.toLowerCase();return("input"===d||"button"===d)&&b.type===a}}function m(a){return k(function(b){b=+b;return k(function(d,e){for(var k,l=a([],d.length,b),c=l.length;c--;)d[k=l[c]]&&(d[k]=!(e[k]=d[k]))})})}function t(a){return a&&"undefined"!==typeof a.getElementsByTagName&& +a}function n(){}function v(a){for(var b=0,d=a.length,e="";b+~]|[\x20\t\r\n\f])[\x20\t\r\n\f]*/,ta=/=[\x20\t\r\n\f]*([^\]'"]*?)[\x20\t\r\n\f]*\]/g,ua=new RegExp(ia),wa=new RegExp("^"+ka+"$"),ja={ID:/^#((?:\\.|[\w-]|[^\x00-\xa0])+)/,CLASS:/^\.((?:\\.|[\w-]|[^\x00-\xa0])+)/,TAG:new RegExp("^("+"(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+".replace("w","w*")+")"),ATTR:new RegExp("^"+la),PSEUDO:new RegExp("^"+ia), +CHILD:/^:(only|first|last|nth|nth-last)-(child|of-type)(?:\([\x20\t\r\n\f]*(even|odd|(([+-]|)(\d*)n|)[\x20\t\r\n\f]*(?:([+-]|)[\x20\t\r\n\f]*(\d+)|))[\x20\t\r\n\f]*\)|)/i,bool:/^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,needsContext:/^[\x20\t\r\n\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\([\x20\t\r\n\f]*((?:-\d)?\d*)[\x20\t\r\n\f]*\)|)(?=[^-]|$)/i},ya=/^(?:input|select|textarea|button)$/i,za=/^h\d$/i,ha= +/^[^{]+\{\s*\[native \w/,Aa=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,na=/[+~]/,Ca=/'|\\/g,qa=/\\([\da-f]{1,6}[\x20\t\r\n\f]?|([\x20\t\r\n\f])|.)/ig,ra=function(a,b,d){a="0x"+b-65536;return a!==a||d?b:0>a?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,a&1023|56320)},xa=function(){R()};try{Y.apply(V=Ga.call(E.childNodes),E.childNodes),V[E.childNodes.length].nodeType}catch(T){Y={apply:V.length?function(a,b){La.apply(a,Ga.call(b))}:function(a,b){for(var d=a.length,e=0;a[d++]=b[e++];);a.length= +d-1}}}B=b.support={};G=b.isXML=function(a){return(a=a&&(a.ownerDocument||a).documentElement)?"HTML"!==a.nodeName:!1};R=b.setDocument=function(a){var b=a?a.ownerDocument||a:E;if(b===I||9!==b.nodeType||!b.documentElement)return I;I=b;O=b.documentElement;(a=b.defaultView)&&a!==a.top&&(a.addEventListener?a.addEventListener("unload",xa,!1):a.attachEvent&&a.attachEvent("onunload",xa));H=!G(b);B.attributes=l(function(a){a.className="i";return!a.getAttribute("className")});B.getElementsByTagName=l(function(a){a.appendChild(b.createComment("")); +return!a.getElementsByTagName("*").length});B.getElementsByClassName=ha.test(b.getElementsByClassName);B.getById=l(function(a){O.appendChild(a).id=Q;return!b.getElementsByName||!b.getElementsByName(Q).length});B.getById?(F.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&H)return(a=b.getElementById(a))&&a.parentNode?[a]:[]},F.filter.ID=function(a){var b=a.replace(qa,ra);return function(a){return a.getAttribute("id")===b}}):(delete F.find.ID,F.filter.ID=function(a){var b=a.replace(qa, +ra);return function(a){return(a="undefined"!==typeof a.getAttributeNode&&a.getAttributeNode("id"))&&a.value===b}});F.find.TAG=B.getElementsByTagName?function(a,b){if("undefined"!==typeof b.getElementsByTagName)return b.getElementsByTagName(a);if(B.qsa)return b.querySelectorAll(a)}:function(a,b){var d=[],e=0;b=b.getElementsByTagName(a);if("*"===a){for(;a=b[e++];)1===a.nodeType&&d.push(a);return d}return b};F.find.CLASS=B.getElementsByClassName&&function(a,b){if(H)return b.getElementsByClassName(a)}; +J=[];r=[];if(B.qsa=ha.test(b.querySelectorAll))l(function(a){O.appendChild(a).innerHTML="\x3ca id\x3d'"+Q+"'\x3e\x3c/a\x3e\x3cselect id\x3d'"+Q+"-\f]' msallowcapture\x3d''\x3e\x3coption selected\x3d''\x3e\x3c/option\x3e\x3c/select\x3e";a.querySelectorAll("[msallowcapture^\x3d'']").length&&r.push("[*^$]\x3d[\\x20\\t\\r\\n\\f]*(?:''|\"\")");a.querySelectorAll("[selected]").length||r.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)"); +a.querySelectorAll("[id~\x3d"+Q+"-]").length||r.push("~\x3d");a.querySelectorAll(":checked").length||r.push(":checked");a.querySelectorAll("a#"+Q+"+*").length||r.push(".#.+[+~]")}),l(function(a){var d=b.createElement("input");d.setAttribute("type","hidden");a.appendChild(d).setAttribute("name","D");a.querySelectorAll("[name\x3dd]").length&&r.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?\x3d");a.querySelectorAll(":enabled").length||r.push(":enabled",":disabled");a.querySelectorAll("*,:x");r.push(",.*:")}); +(B.matchesSelector=ha.test(Ba=O.matches||O.webkitMatchesSelector||O.mozMatchesSelector||O.oMatchesSelector||O.msMatchesSelector))&&l(function(a){B.disconnectedMatch=Ba.call(a,"div");Ba.call(a,"[s!\x3d'']:x");J.push("!\x3d",ia)});r=r.length&&new RegExp(r.join("|"));J=J.length&&new RegExp(J.join("|"));va=(a=ha.test(O.compareDocumentPosition))||ha.test(O.contains)?function(a,b){var d=9===a.nodeType?a.documentElement:a;b=b&&b.parentNode;return a===b||!!(b&&1===b.nodeType&&(d.contains?d.contains(b):a.compareDocumentPosition&& +a.compareDocumentPosition(b)&16))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1};ca=a?function(a,d){if(a===d)return x=!0,0;var e=!a.compareDocumentPosition-!d.compareDocumentPosition;if(e)return e;e=(a.ownerDocument||a)===(d.ownerDocument||d)?a.compareDocumentPosition(d):1;return e&1||!B.sortDetached&&d.compareDocumentPosition(a)===e?a===b||a.ownerDocument===E&&va(E,a)?-1:d===b||d.ownerDocument===E&&va(E,d)?1:P?ba(P,a)-ba(P,d):0:e&4?-1:1}:function(a,d){if(a===d)return x=!0,0; +var e=0,k=a.parentNode,l=d.parentNode,c=[a],u=[d];if(!k||!l)return a===b?-1:d===b?1:k?-1:l?1:P?ba(P,a)-ba(P,d):0;if(k===l)return f(a,d);for(;a=a.parentNode;)c.unshift(a);for(a=d;a=a.parentNode;)u.unshift(a);for(;c[e]===u[e];)e++;return e?f(c[e],u[e]):c[e]===E?-1:u[e]===E?1:0};return b};b.matches=function(a,d){return b(a,null,null,d)};b.matchesSelector=function(a,d){(a.ownerDocument||a)!==I&&R(a);d=d.replace(ta,"\x3d'$1']");if(!(!B.matchesSelector||!H||J&&J.test(d)||r&&r.test(d)))try{var e=Ba.call(a, +d);if(e||B.disconnectedMatch||a.document&&11!==a.document.nodeType)return e}catch(Da){}return 0a.nodeType)return!1;return!0},parent:function(a){return!F.pseudos.empty(a)},header:function(a){return za.test(a.nodeName)},input:function(a){return ya.test(a.nodeName)}, +button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:m(function(){return[0]}),last:m(function(a,b){return[b-1]}),eq:m(function(a,b,d){return[0>d?d+b:d]}),even:m(function(a,b){for(var d=0;dd?d+b:d;0<=--b;)a.push(b);return a}),gt:m(function(a,b,d){for(d=0>d?d+b:d;++d(?:<\/\1>|)$/,Gb=/^.[^:#\[\.,]*$/;d.filter=function(a,b,e){var k=b[0];e&&(a=":not("+a+")");return 1===b.length&&1===k.nodeType?d.find.matchesSelector(k,a)?[k]:[]:d.find.matches(a,d.grep(b,function(a){return 1===a.nodeType}))};d.fn.extend({find:function(a){var b,e=[],k=this,l=k.length;if("string"!==typeof a)return this.pushStack(d(a).filter(function(){for(b= +0;b)[^>]*|#([\w-]*))$/;(d.fn.init=function(a,b){var e;if(!a)return this;if("string"=== +typeof a){e="\x3c"===a.charAt(0)&&"\x3e"===a.charAt(a.length-1)&&3<=a.length?[null,a,null]:Vb.exec(a);if(!e||!e[1]&&b)return!b||b.jquery?(b||Ha).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof d?b[0]:b,d.merge(this,d.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),mb.test(e[1])&&d.isPlainObject(b))for(e in b)if(d.isFunction(this[e]))this[e](b[e]);else this.attr(e,b[e])}else{if((b=z.getElementById(e[2]))&&b.parentNode){if(b.id!==e[2])return Ha.find(a);this.length=1;this[0]=b}this.context= +z;this.selector=a}return this}if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(d.isFunction(a))return"undefined"!==typeof Ha.ready?Ha.ready(a):a(d);void 0!==a.selector&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)}).prototype=d.fn;Ha=d(z);var Wb=/^(?:parents|prev(?:Until|All))/,Xb={children:!0,contents:!0,next:!0,prev:!0};d.extend({dir:function(a,b,e){var k=[];for(a=a[b];a&&9!==a.nodeType&&(void 0===e||1!==a.nodeType||!d(a).is(e));)1===a.nodeType&& +k.push(a),a=a[b];return k},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&d.push(a);return d}});d.fn.extend({has:function(a){var b,e=d(a,this),k=e.length;return this.filter(function(){for(b=0;be.nodeType&&(f?-1p.indexOf(":")&&"on"+p,a=a[d.expando]?a: +new d.Event(p,"object"===typeof a&&a),a.isTrigger=k?2:3,a.namespace=n.join("."),a.namespace_re=a.namespace?new RegExp("(^|\\.)"+n.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,a.result=void 0,a.target||(a.target=e),b=null==b?[a]:d.makeArray(b,[a]),n=d.event.special[p]||{},k||!n.trigger||!1!==n.trigger.apply(e,b))){if(!k&&!n.noBubble&&!d.isWindow(e)){m=n.delegateType||p;nb.test(m+p)||(h=h.parentNode);for(;h;h=h.parentNode)t.push(h),c=h;c===(e.ownerDocument||z)&&t.push(c.defaultView||c.parentWindow||g)}for(v= +0;(h=t[v++])&&!a.isPropagationStopped();)a.type=1]*)\/>/gi,rb=/<([\w:]+)/,sb=/\s*$/g,ca={option:[1,"\x3cselect multiple\x3d'multiple'\x3e","\x3c/select\x3e"],legend:[1,"\x3cfieldset\x3e","\x3c/fieldset\x3e"],area:[1, +"\x3cmap\x3e","\x3c/map\x3e"],param:[1,"\x3cobject\x3e","\x3c/object\x3e"],thead:[1,"\x3ctable\x3e","\x3c/table\x3e"],tr:[2,"\x3ctable\x3e\x3ctbody\x3e","\x3c/tbody\x3e\x3c/table\x3e"],col:[2,"\x3ctable\x3e\x3ctbody\x3e\x3c/tbody\x3e\x3ccolgroup\x3e","\x3c/colgroup\x3e\x3c/table\x3e"],td:[3,"\x3ctable\x3e\x3ctbody\x3e\x3ctr\x3e","\x3c/tr\x3e\x3c/tbody\x3e\x3c/table\x3e"],_default:w.htmlSerialize?[0,"",""]:[1,"X\x3cdiv\x3e","\x3c/div\x3e"]},Za=Aa(z).appendChild(z.createElement("div"));ca.optgroup= +ca.option;ca.tbody=ca.tfoot=ca.colgroup=ca.caption=ca.thead;ca.th=ca.td;d.extend({clone:function(a,b,e){var c,l,f,g,h,m=d.contains(a.ownerDocument,a);w.html5Clone||d.isXMLDoc(a)||!pb.test("\x3c"+a.nodeName+"\x3e")?f=a.cloneNode(!0):(Za.innerHTML=a.outerHTML,Za.removeChild(f=Za.firstChild));if(!(w.noCloneEvent&&w.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||d.isXMLDoc(a)))for(c=N(f),h=N(a),g=0;null!=(l=h[g]);++g)if(c[g]){var n=c[g],t,p=void 0,v;if(1===n.nodeType){t=n.nodeName.toLowerCase();if(!w.noCloneEvent&& +n[d.expando]){v=d._data(n);for(p in v.events)d.removeEvent(n,p,v.handle);n.removeAttribute(d.expando)}if("script"===t&&n.text!==l.text)ia(n).text=l.text,A(n);else if("object"===t)n.parentNode&&(n.outerHTML=l.outerHTML),w.html5Clone&&l.innerHTML&&!d.trim(n.innerHTML)&&(n.innerHTML=l.innerHTML);else if("input"===t&&Ua.test(l.type))n.defaultChecked=n.checked=l.checked,n.value!==l.value&&(n.value=l.value);else if("option"===t)n.defaultSelected=n.selected=l.defaultSelected;else if("input"===t||"textarea"=== +t)n.defaultValue=l.defaultValue}}if(b)if(e)for(h=h||N(a),c=c||N(f),g=0;null!=(l=h[g]);g++)P(l,c[g]);else P(a,f);c=N(f,"script");0e;e++)c[a+oa[e]+b]=d[e]||d[e-2]||d[0];return c}};ub.test(a)||(d.cssHooks[a+b].set=va)});d.fn.extend({css:function(a,b){return sa(this,function(a,b,c){var e,f={},k=0;if(d.isArray(b)){c=ga(a);for(e=b.length;kc)?null:[],g=a?c+1:e.length,h=0>c?g:a?c:0;hc.indexOf(" "+f+" ")&&(c+=f+" ");c=d.trim(c);e.className!==c&&(e.className=c)}return this},removeClass:function(a){var b, +e,c,f,g,h=0,m=this.length;b=0===arguments.length||"string"===typeof a&&a;if(d.isFunction(a))return this.each(function(b){d(this).removeClass(a.call(this,b,this.className))});if(b)for(b=(a||"").match(Y)||[];ha||304===a;if(c){l=t;for(var p=B,I,z,r,D,G=l.contents,K=l.dataTypes;"*"===K[0];)K.shift(),void 0===z&&(z=l.mimeType||p.getResponseHeader("Content-Type"));if(z)for(D in G)if(G[D]&&G[D].test(z)){K.unshift(D);break}if(K[0]in c)r=K[0];else{for(D in c){if(!K[0]||l.converters[D+" "+K[0]]){r=D;break}I||(I=D)}r=r||I}r?(r!==K[0]&&K.unshift(r),l=c[r]):l=void 0}a:{c=t;I=l;z=B;r=e;var P, +O,F,p={},G=c.dataTypes.slice();if(G[1])for(O in c.converters)p[O.toLowerCase()]=c.converters[O];for(D=G.shift();D;)if(c.responseFields[D]&&(z[c.responseFields[D]]=I),!F&&r&&c.dataFilter&&(I=c.dataFilter(I,c.dataType)),F=D,D=G.shift())if("*"===D)D=F;else if("*"!==F&&F!==D){O=p[F+" "+D]||p["* "+D];if(!O)for(P in p)if(l=P.split(" "),l[1]===D&&(O=p[F+" "+l[0]]||p["* "+l[0]])){!0===O?O=p[P]:!0!==p[P]&&(D=l[0],G.unshift(l[1]));break}if(!0!==O)if(O&&c["throws"])I=O(I);else try{I=O(I)}catch(Tb){l={state:"parsererror", +error:O?Tb:"No conversion from "+F+" to "+D};break a}}l={state:"success",data:I}}if(e)t.ifModified&&((u=B.getResponseHeader("Last-Modified"))&&(d.lastModified[g]=u),(u=B.getResponseHeader("etag"))&&(d.etag[g]=u)),204===a||"HEAD"===t.type?u="nocontent":304===a?u="notmodified":(u=l.state,f=l.data,k=l.error,e=!k);else if(k=u,a||!u)u="error",0>a&&(a=0);B.status=a;B.statusText=(b||u)+"";e?w.resolveWith(y,[f,u,B]):w.rejectWith(y,[B,u,k]);B.statusCode(da);da=void 0;n&&C.trigger(e?"ajaxSuccess":"ajaxError", +[B,t,e?f:k]);A.fireWith(y,[B,u]);n&&(C.trigger("ajaxComplete",[B,t]),--d.active||d.event.trigger("ajaxStop"))}}"object"===typeof a&&(b=a,a=void 0);b=b||{};var f,g,h,m,n,v,p,t=d.ajaxSetup({},b),y=t.context||t,C=t.context&&(y.nodeType||y.jquery)?d(y):d.event,w=d.Deferred(),A=d.Callbacks("once memory"),da=t.statusCode||{},I={},z={},L=0,r="canceled",B={readyState:0,getResponseHeader:function(a){var b;if(2===L){if(!p)for(p={};b=rc.exec(h);)p[b[1].toLowerCase()]=b[2];b=p[a.toLowerCase()]}return null==b? +null:b},getAllResponseHeaders:function(){return 2===L?h:null},setRequestHeader:function(a,b){var d=a.toLowerCase();L||(a=z[d]=z[d]||a,I[a]=b);return this},overrideMimeType:function(a){L||(t.mimeType=a);return this},statusCode:function(a){var b;if(a)if(2>L)for(b in a)da[b]=[da[b],a[b]];else B.always(a[B.status]);return this},abort:function(a){a=a||r;v&&v.abort(a);c(0,a);return this}};w.promise(B).complete=A.add;B.success=B.done;B.error=B.fail;t.url=((a||t.url||la)+"").replace(qc,"").replace(tc,ua[1]+ +"//");t.type=b.method||b.type||t.method||t.type;t.dataTypes=d.trim(t.dataType||"*").toLowerCase().match(Y)||[""];null==t.crossDomain&&(a=zb.exec(t.url.toLowerCase()),t.crossDomain=!(!a||a[1]===ua[1]&&a[2]===ua[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(ua[3]||("http:"===ua[1]?"80":"443"))));t.data&&t.processData&&"string"!==typeof t.data&&(t.data=d.param(t.data,t.traditional));D(Ab,t,b,B);if(2===L)return B;(n=d.event&&t.global)&&0===d.active++&&d.event.trigger("ajaxStart");t.type=t.type.toUpperCase(); +t.hasContent=!sc.test(t.type);g=t.url;t.hasContent||(t.data&&(g=t.url+=(db.test(g)?"\x26":"?")+t.data,delete t.data),!1===t.cache&&(t.url=yb.test(g)?g.replace(yb,"$1_\x3d"+cb++):g+(db.test(g)?"\x26":"?")+"_\x3d"+cb++));t.ifModified&&(d.lastModified[g]&&B.setRequestHeader("If-Modified-Since",d.lastModified[g]),d.etag[g]&&B.setRequestHeader("If-None-Match",d.etag[g]));(t.data&&t.hasContent&&!1!==t.contentType||b.contentType)&&B.setRequestHeader("Content-Type",t.contentType);B.setRequestHeader("Accept", +t.dataTypes[0]&&t.accepts[t.dataTypes[0]]?t.accepts[t.dataTypes[0]]+("*"!==t.dataTypes[0]?", "+Bb+"; q\x3d0.01":""):t.accepts["*"]);for(f in t.headers)B.setRequestHeader(f,t.headers[f]);if(t.beforeSend&&(!1===t.beforeSend.call(y,B,t)||2===L))return B.abort();r="abort";for(f in{success:1,error:1,complete:1})B[f](t[f]);if(v=D(Va,t,b,B)){B.readyState=1;n&&C.trigger("ajaxSend",[B,t]);t.async&&0L)c(-1, +F);else throw F;}}else c(-1,"No Transport");return B},getJSON:function(a,b,c){return d.get(a,b,c,"json")},getScript:function(a,b){return d.get(a,void 0,b,"script")}});d.each(["get","post"],function(a,b){d[b]=function(a,c,f,g){d.isFunction(c)&&(g=g||f,f=c,c=void 0);return d.ajax({url:a,type:b,dataType:g,data:c,success:f})}});d._evalUrl=function(a){return d.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})};d.fn.extend({wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this, +b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var a=this;a.firstChild&&1===a.firstChild.nodeType;)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return d.isFunction(a)?this.each(function(b){d(this).wrapInner(a.call(this,b))}):this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=d.isFunction(a);return this.each(function(c){d(this).wrapAll(b? +a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()}});d.expr.filters.hidden=function(a){return 0>=a.offsetWidth&&0>=a.offsetHeight||!w.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||d.css(a,"display"))};d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)};var uc=/%20/g,Nb=/\[\]$/,Cb=/\r?\n/g,vc=/^(?:submit|button|image|reset|file)$/i,wc=/^(?:input|select|textarea|keygen)/i;d.param= +function(a,b){var c,f=[],g=function(a,b){b=d.isFunction(b)?b():null==b?"":b;f[f.length]=encodeURIComponent(a)+"\x3d"+encodeURIComponent(b)};void 0===b&&(b=d.ajaxSettings&&d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){g(this.name,this.value)});else for(c in a)ea(c,a[c],b,g);return f.join("\x26").replace(uc,"+")};d.fn.extend({serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=d.prop(this, +"elements");return a?d.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!d(this).is(":disabled")&&wc.test(this.nodeName)&&!vc.test(a)&&(this.checked||!Ua.test(a))}).map(function(a,b){a=d(this).val();return null==a?null:d.isArray(a)?d.map(a,function(a){return{name:b.name,value:a.replace(Cb,"\r\n")}}):{name:b.name,value:a.replace(Cb,"\r\n")}}).get()}});d.ajaxSettings.xhr=void 0!==g.ActiveXObject?function(){var a;if(!(a=!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&& +La()))a:{try{a=new g.ActiveXObject("Microsoft.XMLHTTP");break a}catch(b){}a=void 0}return a}:La;var xc=0,Ra={},Sa=d.ajaxSettings.xhr();g.attachEvent&&g.attachEvent("onunload",function(){for(var a in Ra)Ra[a](void 0,!0)});w.cors=!!Sa&&"withCredentials"in Sa;(Sa=w.ajax=!!Sa)&&d.ajaxTransport(function(a){if(!a.crossDomain||w.cors){var b;return{send:function(c,f){var e,g=a.xhr(),k=++xc;g.open(a.type,a.url,a.async,a.username,a.password);if(a.xhrFields)for(e in a.xhrFields)g[e]=a.xhrFields[e];a.mimeType&& +g.overrideMimeType&&g.overrideMimeType(a.mimeType);a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&g.setRequestHeader(e,c[e]+"");g.send(a.hasContent&&a.data||null);b=function(c,e){var h,l,m;if(b&&(e||4===g.readyState))if(delete Ra[k],b=void 0,g.onreadystatechange=d.noop,e)4!==g.readyState&&g.abort();else{m={};h=g.status;"string"===typeof g.responseText&&(m.text=g.responseText);try{l=g.statusText}catch(Mb){l=""}h||!a.isLocal||a.crossDomain?1223=== +h&&(h=204):h=m.text?200:404}m&&f(h,l,m,g.getAllResponseHeaders())};a.async?4===g.readyState?setTimeout(b):g.onreadystatechange=Ra[k]=b:b()},abort:function(){b&&b(void 0,!0)}}}});d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){d.globalEval(a);return a}}});d.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1);a.crossDomain&&(a.type="GET", +a.global=!1)});d.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=z.head||d("head")[0]||z.documentElement;return{send:function(d,e){b=z.createElement("script");b.async=!0;a.scriptCharset&&(b.charset=a.scriptCharset);b.src=a.url;b.onload=b.onreadystatechange=function(a,d){if(d||!b.readyState||/loaded|complete/.test(b.readyState))b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,d||e(200,"success")};c.insertBefore(b,c.firstChild)},abort:function(){if(b)b.onload(void 0, +!0)}}}});var Db=[],eb=/(=)\?(?=&|$)|\?\?/;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Db.pop()||d.expando+"_"+cb++;this[a]=!0;return a}});d.ajaxPrefilter("json jsonp",function(a,b,c){var e,f,h,m=!1!==a.jsonp&&(eb.test(a.url)?"url":"string"===typeof a.data&&!(a.contentType||"").indexOf("application/x-www-form-urlencoded")&&eb.test(a.data)&&"data");if(m||"jsonp"===a.dataTypes[0])return e=a.jsonpCallback=d.isFunction(a.jsonpCallback)?a.jsonpCallback():a.jsonpCallback,m?a[m]=a[m].replace(eb, +"$1"+e):!1!==a.jsonp&&(a.url+=(db.test(a.url)?"\x26":"?")+a.jsonp+"\x3d"+e),a.converters["script json"]=function(){h||d.error(e+" was not called");return h[0]},a.dataTypes[0]="json",f=g[e],g[e]=function(){h=arguments},c.always(function(){g[e]=f;a[e]&&(a.jsonpCallback=b.jsonpCallback,Db.push(e));h&&d.isFunction(f)&&f(h[0]);h=f=void 0}),"script"});d.parseHTML=function(a,b,c){if(!a||"string"!==typeof a)return null;"boolean"===typeof b&&(c=b,b=!1);b=b||z;var e=mb.exec(a);c=!c&&[];if(e)return[b.createElement(e[1])]; +e=d.buildFragment([a],b,c);c&&c.length&&d(c).remove();return d.merge([],e.childNodes)};var Eb=d.fn.load;d.fn.load=function(a,b,c){if("string"!==typeof a&&Eb)return Eb.apply(this,arguments);var e,f,g,h=this,m=a.indexOf(" ");0<=m&&(e=d.trim(a.slice(m,a.length)),a=a.slice(0,m));d.isFunction(b)?(c=b,b=void 0):b&&"object"===typeof b&&(g="POST");0this.$items.length-1||0>c))return this.sliding?this.$element.one("slid",function(){h.to(c)}):f==c?this.pause().cycle():this.slide(c>f?"next":"prev",g(this.$items[c]))},pause:function(c){c||(this.paused=!0);this.$element.find(".next, .prev").length&&g.support.transition.end&&(this.$element.trigger(g.support.transition.end), +this.cycle(!0));clearInterval(this.interval);this.interval=null;return this},next:function(){if(!this.sliding)return this.slide("next")},prev:function(){if(!this.sliding)return this.slide("prev")},slide:function(c,f){var h=this.$element.find(".item.active"),m=f||h[c]();f=this.interval;var n="next"==c?"left":"right",p="next"==c?"first":"last",r=this;this.sliding=!0;f&&this.pause();m=m.length?m:this.$element.find(".item")[p]();p=g.Event("slide",{relatedTarget:m[0],direction:n});if(!m.hasClass("active")){this.$indicators.length&& +(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var c=g(r.$indicators.children()[r.getActiveIndex()]);c&&c.addClass("active")}));if(g.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(p);if(p.isDefaultPrevented())return;m.addClass(c);m[0].offsetWidth;h.addClass(n);m.addClass(n);this.$element.one(g.support.transition.end,function(){m.removeClass([c,n].join(" ")).addClass("active");h.removeClass(["active",n].join(" "));r.sliding=!1; +setTimeout(function(){r.$element.trigger("slid")},0)})}else{this.$element.trigger(p);if(p.isDefaultPrevented())return;h.removeClass("active");m.addClass("active");this.sliding=!1;this.$element.trigger("slid")}f&&this.cycle();return this}}};var x=g.fn.carousel;g.fn.carousel=function(c){return this.each(function(){var f=g(this),h=f.data("carousel"),m=g.extend({},g.fn.carousel.defaults,"object"==typeof c&&c),n="string"==typeof c?c:m.slide;h||f.data("carousel",h=new p(this,m));if("number"==typeof c)h.to(c); +else if(n)h[n]();else m.interval&&h.pause().cycle()})};g.fn.carousel.defaults={interval:5E3,pause:"hover"};g.fn.carousel.Constructor=p;g.fn.carousel.noConflict=function(){g.fn.carousel=x;return this};g(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(c){var f=g(this),h,m=g(f.attr("data-target")||(h=f.attr("href"))&&h.replace(/.*(?=#[^\s]+$)/,""));h=g.extend({},m.data(),f.data());var n;m.carousel(h);(n=f.attr("data-slide-to"))&&m.data("carousel").pause().to(n).cycle(); +c.preventDefault()})}(window.jQuery); +!function(g){var p=function(c,f){this.$element=g(c);this.options=g.extend({},g.fn.collapse.defaults,f);this.options.parent&&(this.$parent=g(this.options.parent));this.options.toggle&&this.toggle()};p.prototype={constructor:p,dimension:function(){return this.$element.hasClass("width")?"width":"height"},show:function(){var c,f,h,m;if(!this.transitioning&&!this.$element.hasClass("in")){c=this.dimension();f=g.camelCase(["scroll",c].join("-"));if((h=this.$parent&&this.$parent.find("\x3e .accordion-group \x3e .in"))&&h.length){if((m= +h.data("collapse"))&&m.transitioning)return;h.collapse("hide");m||h.data("collapse",null)}this.$element[c](0);this.transition("addClass",g.Event("show"),"shown");g.support.transition&&this.$element[c](this.$element[0][f])}},hide:function(){var c;!this.transitioning&&this.$element.hasClass("in")&&(c=this.dimension(),this.reset(this.$element[c]()),this.transition("removeClass",g.Event("hide"),"hidden"),this.$element[c](0))},reset:function(c){var f=this.dimension();this.$element.removeClass("collapse")[f](c|| +"auto")[0].offsetWidth;this.$element[null!==c?"addClass":"removeClass"]("collapse");return this},transition:function(c,f,h){var m=this,n=function(){"show"==f.type&&m.reset();m.transitioning=0;m.$element.trigger(h)};this.$element.trigger(f);f.isDefaultPrevented()||(this.transitioning=1,this.$element[c]("in"),g.support.transition&&this.$element.hasClass("collapse")?this.$element.one(g.support.transition.end,n):n())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var x=g.fn.collapse; +g.fn.collapse=function(c){return this.each(function(){var f=g(this),h=f.data("collapse"),m=g.extend({},g.fn.collapse.defaults,f.data(),"object"==typeof c&&c);h||f.data("collapse",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.collapse.defaults={toggle:!0};g.fn.collapse.Constructor=p;g.fn.collapse.noConflict=function(){g.fn.collapse=x;return this};g(document).on("click.collapse.data-api","[data-toggle\x3dcollapse]",function(c){var f=g(this),h;c=f.attr("data-target")||c.preventDefault()||(h= +f.attr("href"))&&h.replace(/.*(?=#[^\s]+$)/,"");h=g(c).data("collapse")?"toggle":f.data();f[g(c).hasClass("in")?"addClass":"removeClass"]("collapsed");g(c).collapse(h)})}(window.jQuery); +!function(g){function p(){g(".dropdown-backdrop").remove();g("[data-toggle\x3ddropdown]").each(function(){x(g(this)).removeClass("open")})}function x(c){var f=c.attr("data-target");f||(f=(f=c.attr("href"))&&/#/.test(f)&&f.replace(/.*(?=#[^\s]*$)/,""));(f=f&&g(f))&&f.length||(f=c.parent());return f}var c=function(c){var f=g(c).on("click.dropdown.data-api",this.toggle);g("html").on("click.dropdown.data-api",function(){f.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(c){c= +g(this);var f,h;if(!c.is(".disabled, :disabled")){f=x(c);h=f.hasClass("open");p();if(!h){if("ontouchstart"in document.documentElement)g('\x3cdiv class\x3d"dropdown-backdrop"/\x3e').insertBefore(g(this)).on("click",p);f.toggleClass("open")}c.focus();return!1}},keydown:function(c){var f,h,p;if(/(38|40|27)/.test(c.keyCode)&&(f=g(this),c.preventDefault(),c.stopPropagation(),!f.is(".disabled, :disabled"))){h=x(f);p=h.hasClass("open");if(!p||p&&27==c.keyCode)return 27==c.which&&h.find("[data-toggle\x3ddropdown]").focus(), +f.click();f=g("[role\x3dmenu] li:not(.divider):visible a",h);f.length&&(h=f.index(f.filter(":focus")),38==c.keyCode&&0c.left&&(f=-2*c.left,c.left=0,g.offset(c),p=g[0].offsetWidth),this.replaceArrow(f-m+p,p,"left")):this.replaceArrow(r-n,r,"top");x&&g.offset(c)},replaceArrow:function(c,f,g){this.arrow().css(g,c?50*(1-c/f)+"%":"")},setContent:function(){var c=this.tip(),f=this.getTitle();c.find(".tooltip-inner")[this.options.html?"html":"text"](f);c.removeClass("fade in top bottom left right")},hide:function(){function c(){var c= +setTimeout(function(){f.off(g.support.transition.end).detach()},500);f.one(g.support.transition.end,function(){clearTimeout(c);f.detach()})}var f=this.tip(),h=g.Event("hide");this.$element.trigger(h);if(!h.isDefaultPrevented())return f.removeClass("in"),g.support.transition&&this.$tip.hasClass("fade")?c():f.detach(),this.$element.trigger("hidden"),this},fixTitle:function(){var c=this.$element;(c.attr("title")||"string"!=typeof c.attr("data-original-title"))&&c.attr("data-original-title",c.attr("title")|| +"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var c=this.$element[0];return g.extend({},"function"==typeof c.getBoundingClientRect?c.getBoundingClientRect():{width:c.offsetWidth,height:c.offsetHeight},this.$element.offset())},getTitle:function(){var c=this.$element,f=this.options;return c.attr("data-original-title")||("function"==typeof f.title?f.title.call(c[0]):f.title)},tip:function(){return this.$tip=this.$tip||g(this.options.template)},arrow:function(){return this.$arrow= +this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.options=this.$element=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(c){c=c?g(c.currentTarget)[this.type](this._options).data(this.type):this;c.tip().hasClass("in")?c.hide():c.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var x=g.fn.tooltip; +g.fn.tooltip=function(c){return this.each(function(){var f=g(this),h=f.data("tooltip"),m="object"==typeof c&&c;h||f.data("tooltip",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.tooltip.Constructor=p;g.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'\x3cdiv class\x3d"tooltip"\x3e\x3cdiv class\x3d"tooltip-arrow"\x3e\x3c/div\x3e\x3cdiv class\x3d"tooltip-inner"\x3e\x3c/div\x3e\x3c/div\x3e',trigger:"hover focus",title:"",delay:0,html:!1,container:!1};g.fn.tooltip.noConflict= +function(){g.fn.tooltip=x;return this}}(window.jQuery); +!function(g){var p=function(c,f){this.init("popover",c,f)};p.prototype=g.extend({},g.fn.tooltip.Constructor.prototype,{constructor:p,setContent:function(){var c=this.tip(),f=this.getTitle(),g=this.getContent();c.find(".popover-title")[this.options.html?"html":"text"](f);c.find(".popover-content")[this.options.html?"html":"text"](g);c.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var c=this.$element,f=this.options; +return("function"==typeof f.content?f.content.call(c[0]):f.content)||c.attr("data-content")},tip:function(){this.$tip||(this.$tip=g(this.options.template));return this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var x=g.fn.popover;g.fn.popover=function(c){return this.each(function(){var f=g(this),h=f.data("popover"),m="object"==typeof c&&c;h||f.data("popover",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.popover.Constructor=p;g.fn.popover.defaults= +g.extend({},g.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'\x3cdiv class\x3d"popover"\x3e\x3cdiv class\x3d"arrow"\x3e\x3c/div\x3e\x3ch3 class\x3d"popover-title"\x3e\x3c/h3\x3e\x3cdiv class\x3d"popover-content"\x3e\x3c/div\x3e\x3c/div\x3e'});g.fn.popover.noConflict=function(){g.fn.popover=x;return this}}(window.jQuery); +!function(g){function p(c,f){var h=g.proxy(this.process,this),m=g(c).is("body")?g(window):g(c),n;this.options=g.extend({},g.fn.scrollspy.defaults,f);this.$scrollElement=m.on("scroll.scroll-spy.data-api",h);this.selector=(this.options.target||(n=g(c).attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li \x3e a";this.$body=g("body");this.refresh();this.process()}p.prototype={constructor:p,refresh:function(){var c=this;this.offsets=g([]);this.targets=g([]);this.$body.find(this.selector).map(function(){var f= +g(this),f=f.data("target")||f.attr("href"),h=/^#\w/.test(f)&&g(f);return h&&h.length&&[[h.position().top+(!g.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),f]]||null}).sort(function(c,g){return c[0]-g[0]}).each(function(){c.offsets.push(this[0]);c.targets.push(this[1])})},process:function(){var c=this.$scrollElement.scrollTop()+this.options.offset,f=(this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight)-this.$scrollElement.height(),g=this.offsets,m=this.targets,n=this.activeTarget, +p;if(c>=f)return n!=(p=m.last()[0])&&this.activate(p);for(p=g.length;p--;)n!=m[p]&&c>=g[p]&&(!g[p+1]||c<=g[p+1])&&this.activate(m[p])},activate:function(c){this.activeTarget=c;g(this.selector).parent(".active").removeClass("active");c=g(this.selector+'[data-target\x3d"'+c+'"],'+this.selector+'[href\x3d"'+c+'"]').parent("li").addClass("active");c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active"));c.trigger("activate")}};var x=g.fn.scrollspy;g.fn.scrollspy=function(c){return this.each(function(){var f= +g(this),h=f.data("scrollspy"),m="object"==typeof c&&c;h||f.data("scrollspy",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.scrollspy.Constructor=p;g.fn.scrollspy.defaults={offset:10};g.fn.scrollspy.noConflict=function(){g.fn.scrollspy=x;return this};g(window).on("load",function(){g('[data-spy\x3d"scroll"]').each(function(){var c=g(this);c.scrollspy(c.data())})})}(window.jQuery); +!function(g){var p=function(c){this.element=g(c)};p.prototype={constructor:p,show:function(){var c=this.element,f=c.closest("ul:not(.dropdown-menu)"),h=c.attr("data-target"),m,n;h||(h=(h=c.attr("href"))&&h.replace(/.*(?=#[^\s]*$)/,""));c.parent("li").hasClass("active")||(m=f.find(".active:last a")[0],n=g.Event("show",{relatedTarget:m}),c.trigger(n),n.isDefaultPrevented()||(h=g(h),this.activate(c.parent("li"),f),this.activate(h,h.parent(),function(){c.trigger({type:"shown",relatedTarget:m})})))},activate:function(c, +f,h){function m(){n.removeClass("active").find("\x3e .dropdown-menu \x3e .active").removeClass("active");c.addClass("active");p?(c[0].offsetWidth,c.addClass("in")):c.removeClass("fade");c.parent(".dropdown-menu")&&c.closest("li.dropdown").addClass("active");h&&h()}var n=f.find("\x3e .active"),p=h&&g.support.transition&&n.hasClass("fade");p?n.one(g.support.transition.end,m):m();n.removeClass("in")}};var x=g.fn.tab;g.fn.tab=function(c){return this.each(function(){var f=g(this),h=f.data("tab");h||f.data("tab", +h=new p(this));if("string"==typeof c)h[c]()})};g.fn.tab.Constructor=p;g.fn.tab.noConflict=function(){g.fn.tab=x;return this};g(document).on("click.tab.data-api",'[data-toggle\x3d"tab"], [data-toggle\x3d"pill"]',function(c){c.preventDefault();g(this).tab("show")})}(window.jQuery); +!function(g){var p=function(c,f){this.$element=g(c);this.options=g.extend({},g.fn.typeahead.defaults,f);this.matcher=this.options.matcher||this.matcher;this.sorter=this.options.sorter||this.sorter;this.highlighter=this.options.highlighter||this.highlighter;this.updater=this.options.updater||this.updater;this.source=this.options.source;this.$menu=g(this.options.menu);this.shown=!1;this.listen()};p.prototype={constructor:p,select:function(){var c=this.$menu.find(".active").attr("data-value");this.$element.val(this.updater(c)).change(); +return this.hide()},updater:function(c){return c},show:function(){var c=g.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});this.$menu.insertAfter(this.$element).css({top:c.top+c.height,left:c.left}).show();this.shown=!0;return this},hide:function(){this.$menu.hide();this.shown=!1;return this},lookup:function(c){this.query=this.$element.val();return!this.query||this.query.length=c-n?"bottom":null!=p&&f<=p?"top":!1;this.affixed!==c&&(this.affixed=c,this.unpin="bottom"==c?h.top-f:null,this.$element.removeClass("affix affix-top affix-bottom").addClass("affix"+(c?"-"+c:"")))}};var x=g.fn.affix;g.fn.affix=function(c){return this.each(function(){var f=g(this),h=f.data("affix"),m="object"==typeof c&&c;h||f.data("affix", +h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.affix.Constructor=p;g.fn.affix.defaults={offset:0};g.fn.affix.noConflict=function(){g.fn.affix=x;return this};g(window).on("load",function(){g('[data-spy\x3d"affix"]').each(function(){var c=g(this),f=c.data();f.offset=f.offset||{};f.offsetBottom&&(f.offset.bottom=f.offsetBottom);f.offsetTop&&(f.offset.top=f.offsetTop);c.affix(f)})})}(window.jQuery);var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; +(function(){function g(c){function f(c){var f=c.charCodeAt(0);if(92!==f)return f;var g=c.charAt(1);return(f=H[g])?f:"0"<=g&&"7">=g?parseInt(c.substring(1),8):"u"===g||"x"===g?parseInt(c.substring(2),16):c.charCodeAt(1)}function g(c){if(32>c)return(16>c?"\\x0":"\\x")+c.toString(16);c=String.fromCharCode(c);if("\\"===c||"-"===c||"["===c||"]"===c)c="\\"+c;return c}function h(c){var h=c.substring(1,c.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g);c= +[];for(var m=[],n="^"===h[0],p=n?1:0,v=h.length;pr||122r||90r||122v[0]&&(v[1]+1>v[0]&&m.push("-"),m.push(g(v[1])));m.push("]");return m.join("")}function m(c){for(var f=c.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),g=f.length,m=[],v=0,A=0;v/, +q])):g.push(["com",/^#[^\n\r]*/,q,"#"]));f.cStyleComments&&(h.push(["com",/^\/\/[^\n\r]*/,q]),h.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));f.regexLiterals&&h.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(m=f.types)&& +h.push(["typ",m]);f=(""+f.keywords).replace(/^ | $/g,"");f.length&&h.push(["kwd",RegExp("^(?:"+f.replace(/[\s,]+/g,"|")+")\\b"),q]);g.push(["pln",/^\s+/,q," \r\n\t "]);h.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return c(g,h)}function h(c,f){function g(c){switch(c.nodeType){case 1:if(m.test(c.className))break; +if("BR"===c.nodeName)h(c),c.parentNode&&c.parentNode.removeChild(c);else for(c=c.firstChild;c;c=c.nextSibling)g(c);break;case 3:case 4:if(A){var f=c.nodeValue,r=f.match(p);if(r){var v=f.substring(0,r.index);c.nodeValue=v;(f=f.substring(r.index+r[0].length))&&c.parentNode.insertBefore(n.createTextNode(f),c.nextSibling);h(c);v||c.parentNode.removeChild(c)}}}}function h(c){function f(c,g){g=g?c.cloneNode(!1):c;var h=c.parentNode;if(h){h=f(h,1);c=c.nextSibling;h.appendChild(g);for(var m=c;m;m=c)c=m.nextSibling, +h.appendChild(m)}return g}for(;!c.nextSibling;)if(c=c.parentNode,!c)return;c=f(c.nextSibling,0);for(var g;(g=c.parentNode)&&1===g.nodeType;)c=g;x.push(c)}var m=/(?:^|\s)nocode(?:\s|$)/,p=/\r\n?|\n/,n=c.ownerDocument,r;c.currentStyle?r=c.currentStyle.whiteSpace:window.getComputedStyle&&(r=n.defaultView.getComputedStyle(c,q).getPropertyValue("white-space"));var A=r&&"pre"===r.substring(0,3);for(r=n.createElement("LI");c.firstChild;)r.appendChild(c.firstChild);for(var x=[r],E=0;E=G&&(h+=2);g>=C&&(c+=2)}}catch(Z){"console"in window&&console.log(Z&&Z.stack?Z.stack:Z)}}var r=["break,continue,do,else,for,if,return,while"],E=[[r,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], +"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],fa=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],aa=[E,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], +V=[aa,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],ha=[r,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], +Aa=[r,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],r=[r,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],N=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,Ta=/\S/,Ia=f({keywords:[fa,V,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ +ha,Aa,r],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),ia={};m(Ia,["default-code"]);m(c([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), +"default-markup htm html mxml xhtml xml xsl".split(" "));m(c([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", +/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);m(c([],[["atv",/^[\S\s]+/]]),["uq.val"]);m(f({keywords:fa,hashComments:!0,cStyleComments:!0,types:N}),"c cc cpp cxx cyc m".split(" "));m(f({keywords:"null,true,false"}),["json"]);m(f({keywords:V,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:N}),["cs"]);m(f({keywords:aa,cStyleComments:!0}),["java"]);m(f({keywords:r,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);m(f({keywords:ha,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), +["cv","py"]);m(f({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);m(f({keywords:Aa,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);m(f({keywords:E,cStyleComments:!0,regexLiterals:!0}),["js"]);m(f({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", +hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);m(c([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(c,f,g){var m=document.createElement("PRE");m.innerHTML=c;g&&h(m,g);W({g:f,i:g,h:m});return m.innerHTML};window.prettyPrint=function(c){function f(){for(var g=window.PR_SHOULD_USE_CONTINUATION?x.now()+250:Infinity;A\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()};this.hasAnchorJSLink=function(c){var f=c.firstChild&&-1<(" "+c.firstChild.className+" ").indexOf(" anchorjs-link ");c=c.lastChild&&-1<(" "+c.lastChild.className+" ").indexOf(" anchorjs-link ");return f||c||!1}}}); \ No newline at end of file diff --git a/ko/licenses.html b/ko/licenses.html new file mode 100644 index 0000000..0489c22 --- /dev/null +++ b/ko/licenses.html @@ -0,0 +1,281 @@ + + + + + + + + + + mybatis-spring-native-docs – 프로젝트 라이센스 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      개요

      +

      일반적으로 이 프로젝트의 라이센스들은 이 프로젝트 자체를 위한 것들이며, 의존물들에 대한 라이센스들이 아닙니다.

      +

      프로젝트 라이센스

      +

      The Apache Software License, Version 2.0

      +
      +
      +                                 Apache License
      +                           Version 2.0, January 2004
      +                        http://www.apache.org/licenses/
      +
      +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
      +
      +   1. Definitions.
      +
      +      "License" shall mean the terms and conditions for use, reproduction,
      +      and distribution as defined by Sections 1 through 9 of this document.
      +
      +      "Licensor" shall mean the copyright owner or entity authorized by
      +      the copyright owner that is granting the License.
      +
      +      "Legal Entity" shall mean the union of the acting entity and all
      +      other entities that control, are controlled by, or are under common
      +      control with that entity. For the purposes of this definition,
      +      "control" means (i) the power, direct or indirect, to cause the
      +      direction or management of such entity, whether by contract or
      +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      +      outstanding shares, or (iii) beneficial ownership of such entity.
      +
      +      "You" (or "Your") shall mean an individual or Legal Entity
      +      exercising permissions granted by this License.
      +
      +      "Source" form shall mean the preferred form for making modifications,
      +      including but not limited to software source code, documentation
      +      source, and configuration files.
      +
      +      "Object" form shall mean any form resulting from mechanical
      +      transformation or translation of a Source form, including but
      +      not limited to compiled object code, generated documentation,
      +      and conversions to other media types.
      +
      +      "Work" shall mean the work of authorship, whether in Source or
      +      Object form, made available under the License, as indicated by a
      +      copyright notice that is included in or attached to the work
      +      (an example is provided in the Appendix below).
      +
      +      "Derivative Works" shall mean any work, whether in Source or Object
      +      form, that is based on (or derived from) the Work and for which the
      +      editorial revisions, annotations, elaborations, or other modifications
      +      represent, as a whole, an original work of authorship. For the purposes
      +      of this License, Derivative Works shall not include works that remain
      +      separable from, or merely link (or bind by name) to the interfaces of,
      +      the Work and Derivative Works thereof.
      +
      +      "Contribution" shall mean any work of authorship, including
      +      the original version of the Work and any modifications or additions
      +      to that Work or Derivative Works thereof, that is intentionally
      +      submitted to Licensor for inclusion in the Work by the copyright owner
      +      or by an individual or Legal Entity authorized to submit on behalf of
      +      the copyright owner. For the purposes of this definition, "submitted"
      +      means any form of electronic, verbal, or written communication sent
      +      to the Licensor or its representatives, including but not limited to
      +      communication on electronic mailing lists, source code control systems,
      +      and issue tracking systems that are managed by, or on behalf of, the
      +      Licensor for the purpose of discussing and improving the Work, but
      +      excluding communication that is conspicuously marked or otherwise
      +      designated in writing by the copyright owner as "Not a Contribution."
      +
      +      "Contributor" shall mean Licensor and any individual or Legal Entity
      +      on behalf of whom a Contribution has been received by Licensor and
      +      subsequently incorporated within the Work.
      +
      +   2. Grant of Copyright License. Subject to the terms and conditions of
      +      this License, each Contributor hereby grants to You a perpetual,
      +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      +      copyright license to reproduce, prepare Derivative Works of,
      +      publicly display, publicly perform, sublicense, and distribute the
      +      Work and such Derivative Works in Source or Object form.
      +
      +   3. Grant of Patent License. Subject to the terms and conditions of
      +      this License, each Contributor hereby grants to You a perpetual,
      +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      +      (except as stated in this section) patent license to make, have made,
      +      use, offer to sell, sell, import, and otherwise transfer the Work,
      +      where such license applies only to those patent claims licensable
      +      by such Contributor that are necessarily infringed by their
      +      Contribution(s) alone or by combination of their Contribution(s)
      +      with the Work to which such Contribution(s) was submitted. If You
      +      institute patent litigation against any entity (including a
      +      cross-claim or counterclaim in a lawsuit) alleging that the Work
      +      or a Contribution incorporated within the Work constitutes direct
      +      or contributory patent infringement, then any patent licenses
      +      granted to You under this License for that Work shall terminate
      +      as of the date such litigation is filed.
      +
      +   4. Redistribution. You may reproduce and distribute copies of the
      +      Work or Derivative Works thereof in any medium, with or without
      +      modifications, and in Source or Object form, provided that You
      +      meet the following conditions:
      +
      +      (a) You must give any other recipients of the Work or
      +          Derivative Works a copy of this License; and
      +
      +      (b) You must cause any modified files to carry prominent notices
      +          stating that You changed the files; and
      +
      +      (c) You must retain, in the Source form of any Derivative Works
      +          that You distribute, all copyright, patent, trademark, and
      +          attribution notices from the Source form of the Work,
      +          excluding those notices that do not pertain to any part of
      +          the Derivative Works; and
      +
      +      (d) If the Work includes a "NOTICE" text file as part of its
      +          distribution, then any Derivative Works that You distribute must
      +          include a readable copy of the attribution notices contained
      +          within such NOTICE file, excluding those notices that do not
      +          pertain to any part of the Derivative Works, in at least one
      +          of the following places: within a NOTICE text file distributed
      +          as part of the Derivative Works; within the Source form or
      +          documentation, if provided along with the Derivative Works; or,
      +          within a display generated by the Derivative Works, if and
      +          wherever such third-party notices normally appear. The contents
      +          of the NOTICE file are for informational purposes only and
      +          do not modify the License. You may add Your own attribution
      +          notices within Derivative Works that You distribute, alongside
      +          or as an addendum to the NOTICE text from the Work, provided
      +          that such additional attribution notices cannot be construed
      +          as modifying the License.
      +
      +      You may add Your own copyright statement to Your modifications and
      +      may provide additional or different license terms and conditions
      +      for use, reproduction, or distribution of Your modifications, or
      +      for any such Derivative Works as a whole, provided Your use,
      +      reproduction, and distribution of the Work otherwise complies with
      +      the conditions stated in this License.
      +
      +   5. Submission of Contributions. Unless You explicitly state otherwise,
      +      any Contribution intentionally submitted for inclusion in the Work
      +      by You to the Licensor shall be under the terms and conditions of
      +      this License, without any additional terms or conditions.
      +      Notwithstanding the above, nothing herein shall supersede or modify
      +      the terms of any separate license agreement you may have executed
      +      with Licensor regarding such Contributions.
      +
      +   6. Trademarks. This License does not grant permission to use the trade
      +      names, trademarks, service marks, or product names of the Licensor,
      +      except as required for reasonable and customary use in describing the
      +      origin of the Work and reproducing the content of the NOTICE file.
      +
      +   7. Disclaimer of Warranty. Unless required by applicable law or
      +      agreed to in writing, Licensor provides the Work (and each
      +      Contributor provides its Contributions) on an "AS IS" BASIS,
      +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      +      implied, including, without limitation, any warranties or conditions
      +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      +      PARTICULAR PURPOSE. You are solely responsible for determining the
      +      appropriateness of using or redistributing the Work and assume any
      +      risks associated with Your exercise of permissions under this License.
      +
      +   8. Limitation of Liability. In no event and under no legal theory,
      +      whether in tort (including negligence), contract, or otherwise,
      +      unless required by applicable law (such as deliberate and grossly
      +      negligent acts) or agreed to in writing, shall any Contributor be
      +      liable to You for damages, including any direct, indirect, special,
      +      incidental, or consequential damages of any character arising as a
      +      result of this License or out of the use or inability to use the
      +      Work (including but not limited to damages for loss of goodwill,
      +      work stoppage, computer failure or malfunction, or any and all
      +      other commercial damages or losses), even if such Contributor
      +      has been advised of the possibility of such damages.
      +
      +   9. Accepting Warranty or Additional Liability. While redistributing
      +      the Work or Derivative Works thereof, You may choose to offer,
      +      and charge a fee for, acceptance of support, warranty, indemnity,
      +      or other liability obligations and/or rights consistent with this
      +      License. However, in accepting such obligations, You may act only
      +      on Your own behalf and on Your sole responsibility, not on behalf
      +      of any other Contributor, and only if You agree to indemnify,
      +      defend, and hold each Contributor harmless for any liability
      +      incurred by, or claims asserted against, such Contributor by reason
      +      of your accepting any such warranty or additional liability.
      +
      +   END OF TERMS AND CONDITIONS
      +
      +   APPENDIX: How to apply the Apache License to your work.
      +
      +      To apply the Apache License to your work, attach the following
      +      boilerplate notice, with the fields enclosed by brackets "[]"
      +      replaced with your own identifying information. (Don't include
      +      the brackets!)  The text should be enclosed in the appropriate
      +      comment syntax for the file format. We also recommend that a
      +      file or class name and description of purpose be included on the
      +      same "printed page" as the copyright notice for easier
      +      identification within third-party archives.
      +
      +   Copyright [yyyy] [name of copyright owner]
      +
      +   Licensed under the Apache License, Version 2.0 (the "License");
      +   you may not use this file except in compliance with the License.
      +   You may obtain a copy of the License at
      +
      +       http://www.apache.org/licenses/LICENSE-2.0
      +
      +   Unless required by applicable law or agreed to in writing, software
      +   distributed under the License is distributed on an "AS IS" BASIS,
      +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +   See the License for the specific language governing permissions and
      +   limitations under the License.
      +
      +
      +
      +
      +
      + + + + diff --git a/ko/mailing-lists.html b/ko/mailing-lists.html new file mode 100644 index 0000000..867a239 --- /dev/null +++ b/ko/mailing-lists.html @@ -0,0 +1,100 @@ + + + + + + + + + + mybatis-spring-native-docs – 프로젝트 메일링 리스트 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      프로젝트 메일링 리스트

      +

      다음은 이 프로젝트를 위해 구축된 메일링 리스트들입니다. 각각의 리스트들에 대해, 구독신청, 구독해지, 그리고 아카이브 링크가 제공됩니다.

      + + + + + + + + + + + + + + + + + + + + + + + + +
      이름구독신청구독해지올리기아카이브
      mybatis-dev구독신청구독해지올리기groups.google.com
      mybatis-user구독신청구독해지올리기groups.google.com
      mybatis-commits구독신청구독해지올리기groups.google.com
      +
      +
      +
      +
      + + + + diff --git a/ko/modules.html b/ko/modules.html new file mode 100644 index 0000000..7234f80 --- /dev/null +++ b/ko/modules.html @@ -0,0 +1,90 @@ + + + + + + + + + + mybatis-spring-native – Project Modules + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Project Modules

      +

      This project has declared the following modules:

      + + + + + + + + + + + + + + + +
      NameDescription
      mybatis-spring-native-coreMyBatis integration with Spring Native feature for core modules
      mybatis-spring-native-extensionsMyBatis integration with Spring Native feature for extension modules(scripting, cache, and more)
      mybatis-spring-native-samplesMyBatis integration with Spring Native feature
      mybatis-spring-native-docsDocuments for MyBatis integration with Spring Native feature
      +
      +
      +
      +
      + + + + diff --git a/ko/parent-updates-report.html b/ko/parent-updates-report.html new file mode 100644 index 0000000..c93c782 --- /dev/null +++ b/ko/parent-updates-report.html @@ -0,0 +1,137 @@ + + + + + + + + + + mybatis-spring-native – Parent Updates Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's parent artifacts

      +

      Parent artifact

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      org.mybatismybatis-parent42pom
      StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      +

      Parent Update

      +

      +

      org.mybatis:mybatis-parent

      + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis
      Artifact Idmybatis-parent
      Current Version42
      Scope
      Classifier
      Typepom
      +
      +
      +
      +
      + + + + diff --git a/ko/plugin-management.html b/ko/plugin-management.html new file mode 100644 index 0000000..881108d --- /dev/null +++ b/ko/plugin-management.html @@ -0,0 +1,235 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Plugin Management + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Project Plugin Management

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      GroupIdArtifactIdVersion
      biz.aQute.bndbnd-maven-plugin7.0.0
      com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
      com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
      com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
      com.github.spotbugsspotbugs-maven-plugin4.8.3.0
      com.mycilalicense-maven-plugin4.3
      io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
      net.revelc.codeimpsort-maven-plugin1.9.0
      net.revelc.code.formatterformatter-maven-plugin2.23.0
      org.apache.maven.pluginsmaven-antrun-plugin3.1.0
      org.apache.maven.pluginsmaven-assembly-plugin3.6.0
      org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
      org.apache.maven.pluginsmaven-clean-plugin3.3.2
      org.apache.maven.pluginsmaven-compiler-plugin3.12.1
      org.apache.maven.pluginsmaven-dependency-plugin3.6.1
      org.apache.maven.pluginsmaven-deploy-plugin3.1.1
      org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
      org.apache.maven.pluginsmaven-gpg-plugin3.1.0
      org.apache.maven.pluginsmaven-install-plugin3.1.1
      org.apache.maven.pluginsmaven-jar-plugin3.3.0
      org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
      org.apache.maven.pluginsmaven-jxr-plugin3.3.2
      org.apache.maven.pluginsmaven-pdf-plugin1.6.1
      org.apache.maven.pluginsmaven-pmd-plugin3.21.2
      org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
      org.apache.maven.pluginsmaven-release-plugin3.0.1
      org.apache.maven.pluginsmaven-resources-plugin3.3.1
      org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
      org.apache.maven.pluginsmaven-shade-plugin3.5.1
      org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
      org.apache.maven.pluginsmaven-source-plugin3.3.0
      org.apache.maven.pluginsmaven-surefire-plugin3.2.5
      org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
      org.codehaus.mojoclirr-maven-plugin2.8
      org.codehaus.mojotaglist-maven-plugin3.0.0
      org.codehaus.mojoversions-maven-plugin2.16.2
      org.gaulmodernizer-maven-plugin2.7.0
      org.jacocojacoco-maven-plugin0.8.11
      org.openrewrite.mavenrewrite-maven-plugin5.21.0
      +
      +
      +
      +
      + + + + diff --git a/ko/plugin-updates-aggregate-report.html b/ko/plugin-updates-aggregate-report.html new file mode 100644 index 0000000..bb4c0bb --- /dev/null +++ b/ko/plugin-updates-aggregate-report.html @@ -0,0 +1,1619 @@ + + + + + + + + + + mybatis-spring-native – Plugin Updates Aggregate Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's various plugins.

      + + + + + + + + + + + + + + + + + + + + + + + + + +
      # of plugins using the latest version available39
      # of plugins where the next version available is smaller than an incremental version update1
      # of plugins where the next version available is an incremental version update0
      # of plugins where the next version available is a minor version update1
      # of plugins where the next version available is a major version update1
      # of plugins where a dependencies section containes a dependency with an updated version0
      +

      Plugin Management

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      biz.aQute.bndbnd-maven-plugin7.0.0
      com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
      com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
      com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
      com.github.spotbugsspotbugs-maven-plugin4.8.3.04.8.3.1
      com.mycilalicense-maven-plugin4.3
      io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
      net.revelc.codeimpsort-maven-plugin1.9.0
      net.revelc.code.formatterformatter-maven-plugin2.23.0
      org.apache.maven.pluginsmaven-antrun-plugin3.1.0
      org.apache.maven.pluginsmaven-assembly-plugin3.6.0
      org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
      org.apache.maven.pluginsmaven-clean-plugin3.3.2
      org.apache.maven.pluginsmaven-compiler-plugin3.12.1
      org.apache.maven.pluginsmaven-dependency-plugin3.6.1
      org.apache.maven.pluginsmaven-deploy-plugin3.1.1
      org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
      org.apache.maven.pluginsmaven-gpg-plugin3.1.0
      org.apache.maven.pluginsmaven-install-plugin3.1.1
      org.apache.maven.pluginsmaven-jar-plugin3.3.0
      org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
      org.apache.maven.pluginsmaven-jxr-plugin3.3.2
      org.apache.maven.pluginsmaven-pdf-plugin1.6.1
      org.apache.maven.pluginsmaven-pmd-plugin3.21.2
      org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
      org.apache.maven.pluginsmaven-release-plugin3.0.1
      org.apache.maven.pluginsmaven-resources-plugin3.3.1
      org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
      org.apache.maven.pluginsmaven-shade-plugin3.5.1
      org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
      org.apache.maven.pluginsmaven-source-plugin3.3.0
      org.apache.maven.pluginsmaven-surefire-plugin3.2.5
      org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
      org.codehaus.mojoclirr-maven-plugin2.8
      org.codehaus.mojotaglist-maven-plugin3.0.0
      org.codehaus.mojoversions-maven-plugin2.16.2
      org.gaulmodernizer-maven-plugin2.7.0
      org.graalvm.buildtoolsnative-maven-plugin0.10.0
      org.jacocojacoco-maven-plugin0.8.11
      org.openrewrite.mavenrewrite-maven-plugin5.21.05.22.0
      StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Plugins

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.springframework.bootspring-boot-maven-plugin2.7.183.3.0-M1
      org.springframework.experimentalspring-aot-maven-plugin0.12.2
      StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Plugin Updates

      +

      +

      Plugin biz.aQute.bnd:bnd-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idbiz.aQute.bnd
      Artifact Idbnd-maven-plugin
      Current Version7.0.0
      +

      Dependencies of biz.aQute.bnd:bnd-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      biz.aQute.bndbiz.aQute.bndlib7.0.0jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency biz.aQute.bnd:biz.aQute.bndlib

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idbiz.aQute.bnd
      Artifact Idbiz.aQute.bndlib
      Current Version7.0.0
      Classifier
      Typejar
      +

      Plugin com.github.ekryd.sortpom:sortpom-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.ekryd.sortpom
      Artifact Idsortpom-maven-plugin
      Current Version3.3.0
      +

      Plugin com.github.hazendaz.maven:coveralls-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.hazendaz.maven
      Artifact Idcoveralls-maven-plugin
      Current Version4.5.0-M3
      +

      Plugin com.github.hazendaz.maven:whitespace-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.hazendaz.maven
      Artifact Idwhitespace-maven-plugin
      Current Version1.3.1
      +

      Plugin com.github.spotbugs:spotbugs-maven-plugin

      + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idcom.github.spotbugs
      Artifact Idspotbugs-maven-plugin
      Current Version4.8.3.0
      Newer versions4.8.3.1 Latest Subincremental
      +

      Plugin com.mycila:license-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.mycila
      Artifact Idlicense-maven-plugin
      Current Version4.3
      +

      Dependencies of com.mycila:license-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      com.mycilalicense-maven-plugin-git4.3jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency com.mycila:license-maven-plugin-git

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.mycila
      Artifact Idlicense-maven-plugin-git
      Current Version4.3
      Classifier
      Typejar
      +

      Plugin io.github.git-commit-id:git-commit-id-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.github.git-commit-id
      Artifact Idgit-commit-id-maven-plugin
      Current Version7.0.0
      +

      Plugin net.revelc.code:impsort-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.revelc.code
      Artifact Idimpsort-maven-plugin
      Current Version1.9.0
      +

      Plugin net.revelc.code.formatter:formatter-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.revelc.code.formatter
      Artifact Idformatter-maven-plugin
      Current Version2.23.0
      +

      Dependencies of net.revelc.code.formatter:formatter-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      com.github.hazendazbuild-tools1.3.1jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency com.github.hazendaz:build-tools

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.hazendaz
      Artifact Idbuild-tools
      Current Version1.3.1
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-antrun-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-antrun-plugin
      Current Version3.1.0
      +

      Plugin org.apache.maven.plugins:maven-assembly-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-assembly-plugin
      Current Version3.6.0
      +

      Dependencies of org.apache.maven.plugins:maven-assembly-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.mybatisbase-bundle-descriptor11jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.mybatis:base-bundle-descriptor

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis
      Artifact Idbase-bundle-descriptor
      Current Version11
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-checkstyle-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-checkstyle-plugin
      Current Version3.3.1
      +

      Plugin org.apache.maven.plugins:maven-clean-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-clean-plugin
      Current Version3.3.2
      +

      Plugin org.apache.maven.plugins:maven-compiler-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-compiler-plugin
      Current Version3.12.1
      +

      Plugin org.apache.maven.plugins:maven-dependency-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-dependency-plugin
      Current Version3.6.1
      +

      Plugin org.apache.maven.plugins:maven-deploy-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-deploy-plugin
      Current Version3.1.1
      +

      Plugin org.apache.maven.plugins:maven-enforcer-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-enforcer-plugin
      Current Version3.4.1
      +

      Dependencies of org.apache.maven.plugins:maven-enforcer-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.codehaus.mojoextra-enforcer-rules1.7.0jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.codehaus.mojo:extra-enforcer-rules

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idextra-enforcer-rules
      Current Version1.7.0
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-gpg-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-gpg-plugin
      Current Version3.1.0
      +

      Plugin org.apache.maven.plugins:maven-install-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-install-plugin
      Current Version3.1.1
      +

      Plugin org.apache.maven.plugins:maven-jar-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-jar-plugin
      Current Version3.3.0
      +

      Plugin org.apache.maven.plugins:maven-javadoc-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-javadoc-plugin
      Current Version3.6.3
      +

      Plugin org.apache.maven.plugins:maven-jxr-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-jxr-plugin
      Current Version3.3.2
      +

      Plugin org.apache.maven.plugins:maven-pdf-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-pdf-plugin
      Current Version1.6.1
      +

      Plugin org.apache.maven.plugins:maven-pmd-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-pmd-plugin
      Current Version3.21.2
      +

      Plugin org.apache.maven.plugins:maven-project-info-reports-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-project-info-reports-plugin
      Current Version3.5.0
      +

      Plugin org.apache.maven.plugins:maven-release-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-release-plugin
      Current Version3.0.1
      +

      Plugin org.apache.maven.plugins:maven-resources-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-resources-plugin
      Current Version3.3.1
      +

      Plugin org.apache.maven.plugins:maven-scm-publish-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-scm-publish-plugin
      Current Version3.2.1
      +

      Plugin org.apache.maven.plugins:maven-shade-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-shade-plugin
      Current Version3.5.1
      +

      Plugin org.apache.maven.plugins:maven-site-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-site-plugin
      Current Version4.0.0-M13
      +

      Dependencies of org.apache.maven.plugins:maven-site-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.apache.maven.skinsmaven-fluido-skin2.0.0-M8jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.apache.maven.skins:maven-fluido-skin

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.skins
      Artifact Idmaven-fluido-skin
      Current Version2.0.0-M8
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-source-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-source-plugin
      Current Version3.3.0
      +

      Plugin org.apache.maven.plugins:maven-surefire-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-surefire-plugin
      Current Version3.2.5
      +

      Plugin org.apache.maven.plugins:maven-surefire-report-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-surefire-report-plugin
      Current Version3.2.5
      +

      Plugin org.codehaus.mojo:clirr-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idclirr-maven-plugin
      Current Version2.8
      +

      Dependencies of org.codehaus.mojo:clirr-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.apache.bcelbcel6.8.1jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.apache.bcel:bcel

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.bcel
      Artifact Idbcel
      Current Version6.8.1
      Classifier
      Typejar
      +

      Plugin org.codehaus.mojo:taglist-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idtaglist-maven-plugin
      Current Version3.0.0
      +

      Plugin org.codehaus.mojo:versions-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idversions-maven-plugin
      Current Version2.16.2
      +

      Plugin org.gaul:modernizer-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.gaul
      Artifact Idmodernizer-maven-plugin
      Current Version2.7.0
      +

      Dependencies of org.gaul:modernizer-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.ow2.asmasm9.6jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.ow2.asm:asm

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ow2.asm
      Artifact Idasm
      Current Version9.6
      Classifier
      Typejar
      +

      Plugin org.graalvm.buildtools:native-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.graalvm.buildtools
      Artifact Idnative-maven-plugin
      Current Version0.10.0
      +

      Plugin org.jacoco:jacoco-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.jacoco
      Artifact Idjacoco-maven-plugin
      Current Version0.8.11
      +

      Plugin org.openrewrite.maven:rewrite-maven-plugin

      + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.openrewrite.maven
      Artifact Idrewrite-maven-plugin
      Current Version5.21.0
      Newer versions5.22.0 Latest Minor
      +

      Plugin org.springframework.boot:spring-boot-maven-plugin

      + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Group Idorg.springframework.boot
      Artifact Idspring-boot-maven-plugin
      Current Version2.7.18
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      +

      Plugin org.springframework.experimental:spring-aot-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.springframework.experimental
      Artifact Idspring-aot-maven-plugin
      Current Version0.12.2
      +
      +
      +
      +
      + + + + diff --git a/ko/plugin-updates-report.html b/ko/plugin-updates-report.html new file mode 100644 index 0000000..ef192b9 --- /dev/null +++ b/ko/plugin-updates-report.html @@ -0,0 +1,1525 @@ + + + + + + + + + + mybatis-spring-native-docs – Plugin Updates Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's various plugins.

      + + + + + + + + + + + + + + + + + + + + + + + + + +
      # of plugins using the latest version available37
      # of plugins where the next version available is smaller than an incremental version update1
      # of plugins where the next version available is an incremental version update0
      # of plugins where the next version available is a minor version update1
      # of plugins where the next version available is a major version update0
      # of plugins where a dependencies section containes a dependency with an updated version0
      +

      Plugin Management

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      biz.aQute.bndbnd-maven-plugin7.0.0
      com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
      com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
      com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
      com.github.spotbugsspotbugs-maven-plugin4.8.3.04.8.3.1
      com.mycilalicense-maven-plugin4.3
      io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
      net.revelc.codeimpsort-maven-plugin1.9.0
      net.revelc.code.formatterformatter-maven-plugin2.23.0
      org.apache.maven.pluginsmaven-antrun-plugin3.1.0
      org.apache.maven.pluginsmaven-assembly-plugin3.6.0
      org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
      org.apache.maven.pluginsmaven-clean-plugin3.3.2
      org.apache.maven.pluginsmaven-compiler-plugin3.12.1
      org.apache.maven.pluginsmaven-dependency-plugin3.6.1
      org.apache.maven.pluginsmaven-deploy-plugin3.1.1
      org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
      org.apache.maven.pluginsmaven-gpg-plugin3.1.0
      org.apache.maven.pluginsmaven-install-plugin3.1.1
      org.apache.maven.pluginsmaven-jar-plugin3.3.0
      org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
      org.apache.maven.pluginsmaven-jxr-plugin3.3.2
      org.apache.maven.pluginsmaven-pdf-plugin1.6.1
      org.apache.maven.pluginsmaven-pmd-plugin3.21.2
      org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
      org.apache.maven.pluginsmaven-release-plugin3.0.1
      org.apache.maven.pluginsmaven-resources-plugin3.3.1
      org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
      org.apache.maven.pluginsmaven-shade-plugin3.5.1
      org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
      org.apache.maven.pluginsmaven-source-plugin3.3.0
      org.apache.maven.pluginsmaven-surefire-plugin3.2.5
      org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
      org.codehaus.mojoclirr-maven-plugin2.8
      org.codehaus.mojotaglist-maven-plugin3.0.0
      org.codehaus.mojoversions-maven-plugin2.16.2
      org.gaulmodernizer-maven-plugin2.7.0
      org.jacocojacoco-maven-plugin0.8.11
      org.openrewrite.mavenrewrite-maven-plugin5.21.05.22.0
      StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Plugins

      +

      This project does not declare any plugins in a build/plugins section.

      +

      Plugin Updates

      +

      +

      Plugin biz.aQute.bnd:bnd-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idbiz.aQute.bnd
      Artifact Idbnd-maven-plugin
      Current Version7.0.0
      +

      Dependencies of biz.aQute.bnd:bnd-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      biz.aQute.bndbiz.aQute.bndlib7.0.0jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency biz.aQute.bnd:biz.aQute.bndlib

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idbiz.aQute.bnd
      Artifact Idbiz.aQute.bndlib
      Current Version7.0.0
      Classifier
      Typejar
      +

      Plugin com.github.ekryd.sortpom:sortpom-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.ekryd.sortpom
      Artifact Idsortpom-maven-plugin
      Current Version3.3.0
      +

      Plugin com.github.hazendaz.maven:coveralls-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.hazendaz.maven
      Artifact Idcoveralls-maven-plugin
      Current Version4.5.0-M3
      +

      Plugin com.github.hazendaz.maven:whitespace-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.hazendaz.maven
      Artifact Idwhitespace-maven-plugin
      Current Version1.3.1
      +

      Plugin com.github.spotbugs:spotbugs-maven-plugin

      + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Group Idcom.github.spotbugs
      Artifact Idspotbugs-maven-plugin
      Current Version4.8.3.0
      Newer versions4.8.3.1 Latest Subincremental
      +

      Plugin com.mycila:license-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.mycila
      Artifact Idlicense-maven-plugin
      Current Version4.3
      +

      Dependencies of com.mycila:license-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      com.mycilalicense-maven-plugin-git4.3jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency com.mycila:license-maven-plugin-git

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.mycila
      Artifact Idlicense-maven-plugin-git
      Current Version4.3
      Classifier
      Typejar
      +

      Plugin io.github.git-commit-id:git-commit-id-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idio.github.git-commit-id
      Artifact Idgit-commit-id-maven-plugin
      Current Version7.0.0
      +

      Plugin net.revelc.code:impsort-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.revelc.code
      Artifact Idimpsort-maven-plugin
      Current Version1.9.0
      +

      Plugin net.revelc.code.formatter:formatter-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idnet.revelc.code.formatter
      Artifact Idformatter-maven-plugin
      Current Version2.23.0
      +

      Dependencies of net.revelc.code.formatter:formatter-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      com.github.hazendazbuild-tools1.3.1jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency com.github.hazendaz:build-tools

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idcom.github.hazendaz
      Artifact Idbuild-tools
      Current Version1.3.1
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-antrun-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-antrun-plugin
      Current Version3.1.0
      +

      Plugin org.apache.maven.plugins:maven-assembly-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-assembly-plugin
      Current Version3.6.0
      +

      Dependencies of org.apache.maven.plugins:maven-assembly-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.mybatisbase-bundle-descriptor11jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.mybatis:base-bundle-descriptor

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.mybatis
      Artifact Idbase-bundle-descriptor
      Current Version11
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-checkstyle-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-checkstyle-plugin
      Current Version3.3.1
      +

      Plugin org.apache.maven.plugins:maven-clean-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-clean-plugin
      Current Version3.3.2
      +

      Plugin org.apache.maven.plugins:maven-compiler-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-compiler-plugin
      Current Version3.12.1
      +

      Plugin org.apache.maven.plugins:maven-dependency-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-dependency-plugin
      Current Version3.6.1
      +

      Plugin org.apache.maven.plugins:maven-deploy-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-deploy-plugin
      Current Version3.1.1
      +

      Plugin org.apache.maven.plugins:maven-enforcer-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-enforcer-plugin
      Current Version3.4.1
      +

      Dependencies of org.apache.maven.plugins:maven-enforcer-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.codehaus.mojoextra-enforcer-rules1.7.0jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.codehaus.mojo:extra-enforcer-rules

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idextra-enforcer-rules
      Current Version1.7.0
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-gpg-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-gpg-plugin
      Current Version3.1.0
      +

      Plugin org.apache.maven.plugins:maven-install-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-install-plugin
      Current Version3.1.1
      +

      Plugin org.apache.maven.plugins:maven-jar-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-jar-plugin
      Current Version3.3.0
      +

      Plugin org.apache.maven.plugins:maven-javadoc-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-javadoc-plugin
      Current Version3.6.3
      +

      Plugin org.apache.maven.plugins:maven-jxr-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-jxr-plugin
      Current Version3.3.2
      +

      Plugin org.apache.maven.plugins:maven-pdf-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-pdf-plugin
      Current Version1.6.1
      +

      Plugin org.apache.maven.plugins:maven-pmd-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-pmd-plugin
      Current Version3.21.2
      +

      Plugin org.apache.maven.plugins:maven-project-info-reports-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-project-info-reports-plugin
      Current Version3.5.0
      +

      Plugin org.apache.maven.plugins:maven-release-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-release-plugin
      Current Version3.0.1
      +

      Plugin org.apache.maven.plugins:maven-resources-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-resources-plugin
      Current Version3.3.1
      +

      Plugin org.apache.maven.plugins:maven-scm-publish-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-scm-publish-plugin
      Current Version3.2.1
      +

      Plugin org.apache.maven.plugins:maven-shade-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-shade-plugin
      Current Version3.5.1
      +

      Plugin org.apache.maven.plugins:maven-site-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-site-plugin
      Current Version4.0.0-M13
      +

      Dependencies of org.apache.maven.plugins:maven-site-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.apache.maven.skinsmaven-fluido-skin2.0.0-M8jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.apache.maven.skins:maven-fluido-skin

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.skins
      Artifact Idmaven-fluido-skin
      Current Version2.0.0-M8
      Classifier
      Typejar
      +

      Plugin org.apache.maven.plugins:maven-source-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-source-plugin
      Current Version3.3.0
      +

      Plugin org.apache.maven.plugins:maven-surefire-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-surefire-plugin
      Current Version3.2.5
      +

      Plugin org.apache.maven.plugins:maven-surefire-report-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.maven.plugins
      Artifact Idmaven-surefire-report-plugin
      Current Version3.2.5
      +

      Plugin org.codehaus.mojo:clirr-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idclirr-maven-plugin
      Current Version2.8
      +

      Dependencies of org.codehaus.mojo:clirr-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.apache.bcelbcel6.8.1jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.apache.bcel:bcel

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.apache.bcel
      Artifact Idbcel
      Current Version6.8.1
      Classifier
      Typejar
      +

      Plugin org.codehaus.mojo:taglist-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idtaglist-maven-plugin
      Current Version3.0.0
      +

      Plugin org.codehaus.mojo:versions-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.codehaus.mojo
      Artifact Idversions-maven-plugin
      Current Version2.16.2
      +

      Plugin org.gaul:modernizer-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.gaul
      Artifact Idmodernizer-maven-plugin
      Current Version2.7.0
      +

      Dependencies of org.gaul:modernizer-maven-plugin

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      org.ow2.asmasm9.6jar
      StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
      +

      Dependency org.ow2.asm:asm

      + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.ow2.asm
      Artifact Idasm
      Current Version9.6
      Classifier
      Typejar
      +

      Plugin org.jacoco:jacoco-maven-plugin

      + + + + + + + + + + + + +
      Status No newer versions available.
      Group Idorg.jacoco
      Artifact Idjacoco-maven-plugin
      Current Version0.8.11
      +

      Plugin org.openrewrite.maven:rewrite-maven-plugin

      + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Group Idorg.openrewrite.maven
      Artifact Idrewrite-maven-plugin
      Current Version5.21.0
      Newer versions5.22.0 Latest Minor
      +
      +
      +
      +
      + + + + diff --git a/ko/plugins.html b/ko/plugins.html new file mode 100644 index 0000000..5b0adf7 --- /dev/null +++ b/ko/plugins.html @@ -0,0 +1,193 @@ + + + + + + + + + + mybatis-spring-native-docs – Project Plugins + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Project Build Plugins

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      GroupIdArtifactIdVersion
      biz.aQute.bndbnd-maven-plugin7.0.0
      com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
      com.mycilalicense-maven-plugin4.3
      io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
      org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
      org.apache.maven.pluginsmaven-clean-plugin3.3.2
      org.apache.maven.pluginsmaven-compiler-plugin3.12.1
      org.apache.maven.pluginsmaven-deploy-plugin3.1.1
      org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
      org.apache.maven.pluginsmaven-install-plugin3.1.1
      org.apache.maven.pluginsmaven-jar-plugin3.3.0
      org.apache.maven.pluginsmaven-resources-plugin3.3.1
      org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
      org.apache.maven.pluginsmaven-surefire-plugin3.2.5
      org.gaulmodernizer-maven-plugin2.7.0
      org.jacocojacoco-maven-plugin0.8.11
      +

      Project Report Plugins

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      GroupIdArtifactIdVersion
      com.github.spotbugsspotbugs-maven-plugin4.8.3.0
      org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
      org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
      org.apache.maven.pluginsmaven-jxr-plugin3.3.2
      org.apache.maven.pluginsmaven-pmd-plugin3.21.2
      org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
      org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
      org.codehaus.mojoclirr-maven-plugin2.8
      org.codehaus.mojotaglist-maven-plugin3.0.0
      org.codehaus.mojoversions-maven-plugin2.16.2
      org.jacocojacoco-maven-plugin0.8.11
      +
      +
      +
      +
      + + + + diff --git a/ko/pmd.html b/ko/pmd.html new file mode 100644 index 0000000..2cf4fee --- /dev/null +++ b/ko/pmd.html @@ -0,0 +1,76 @@ + + + + + + + + + + mybatis-spring-native-docs – PMD Results + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      PMD Results

      +

      The following document contains the results of PMD 6.55.0.

      +

      PMD found no problems in your source code.

      +
      +
      +
      +
      + + + + diff --git a/ko/project-info.html b/ko/project-info.html new file mode 100644 index 0000000..c117c63 --- /dev/null +++ b/ko/project-info.html @@ -0,0 +1,119 @@ + + + + + + + + + + mybatis-spring-native-docs – 프로젝트 정보 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      프로젝트 정보

      +

      이 문서는 다양한 문서들의 개요와 이 프로젝트와 관련된 여러 링크 정보들을 제공합니다. 이 문서의 모든 내용은 자동으로 생성됩니다. Maven (프로젝트팀을 대신하여 자동 생성)

      +

      개요

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      문서설명
      연속통합 (Continuous Integration)이는 정기적으로 수행하는 빌드/테스트에 대한 연속 통합 공정에 대한 링크입니다.
      Dependency InformationThis document describes how to include this project as a dependency using various dependency management tools.
      Dependency ManagementThis document lists the dependencies that are defined through dependencyManagement.
      Distribution ManagementThis document provides informations on the distribution management of this project.
      정보Documents for MyBatis integration with Spring Native feature
      이슈 추적이 프로젝트를 위한 이슈관리시스템에 대한 링크입니다. 이 링크를 통해 이슈들(버그, 피쳐, 변경요청)을 생성하고 조회할 수 있습니다.
      프로젝트 라이센스이는 프로젝트 라이센스들에 대한 정의에 대한 링크입니다.
      메일링 리스트이 문서는 이 프로젝트의 메일링 리스트에 대한 구독 방법과 아카이브 정보에 대한 접근 방법들을 제공합니다.
      Plugin ManagementThis document lists the plugins that are defined through pluginManagement.
      PluginsThis document lists the build plugins and the report plugins used by this project.
      소스 레파지토리이는 웹 브라우저를 통해 볼 수 있는 온라인 소스 레파지토리에 대한 링크입니다.
      프로젝트 요약이 문서는 이 프로젝트의 기타 정보들을 나열합니다.
      프로젝트 팀이 문서는 이 프로젝트의 구성원들에 대한 정보를 제공합니다. 다음은 이 프로젝트에 여러 방식으로 기여하신 분들입니다.
      +
      +
      +
      +
      + + + + diff --git a/ko/project-reports.html b/ko/project-reports.html new file mode 100644 index 0000000..30896e1 --- /dev/null +++ b/ko/project-reports.html @@ -0,0 +1,104 @@ + + + + + + + + + + mybatis-spring-native-docs – 생성된 보고서 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      생성된 보고서

      +

      이 문서는 자동으로 생성된 다양한 보고서들의 개요를 제공합니다. Maven 아래에서는 각 보고서에 대해 간략히 설명합니다.

      +

      개요

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      문서설명
      SurefireReport on the test results of the project.
      CheckstyleReport on coding style conventions.
      CPDDuplicate code detection.
      PMDVerification of coding rules.
      ClirrReport on binary and source API differences between releases
      Dependency Updates ReportProvides details of the dependencies which have updated versions available.
      Plugin Updates ReportProvides details of the plugins used by this project which have newer versions available.
      Property Updates ReportProvides details of properties which control versions of dependencies and/or plugins, and indicates any newer versions which are available.
      +
      +
      +
      +
      + + + + diff --git a/ko/property-updates-aggregate-report.html b/ko/property-updates-aggregate-report.html new file mode 100644 index 0000000..5c702c1 --- /dev/null +++ b/ko/property-updates-aggregate-report.html @@ -0,0 +1,2203 @@ + + + + + + + + + + mybatis-spring-native – Property Updates Aggregate Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's various properties associated with artifacts.

      + + + + + + + + + + + + + + + + + + + + + +
      # of properties using the latest version available51
      # of properties where the next version available is smaller than an incremental version update1
      # of properties where the next version available is an incremental version update0
      # of properties where the next version available is a minor version update1
      # of properties where the next version available is a major version update3
      +

      Summary of properties associated with artifact versions

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      ${antrun.plugin}3.1.0
      ${asm.version}9.6
      ${assembly.plugin}3.6.0
      ${base-bundle.version}11
      ${bnd.plugin}7.0.0
      ${bnd.version}7.0.0
      ${build-tools.version}1.3.1
      ${checkstyle.plugin}3.3.1
      ${checkstyle.version}10.13.0
      ${clean.plugin}3.3.2
      ${clirr.plugin}2.8
      ${compiler.plugin}3.12.1
      ${coveralls.plugin}4.5.0-M3
      ${dependency.plugin}3.6.1
      ${deploy.plugin}3.1.1
      ${enforcer.plugin}3.4.1
      ${extra-enforcer-rules.version}1.7.0
      ${fluido.version}2.0.0-M8
      ${formatter.plugin}2.23.0
      ${git-commit.plugin}7.0.0
      ${gpg.plugin}3.1.0
      ${impsort.plugin}1.9.0
      ${install.plugin}3.1.1
      ${jacoco.plugin}0.8.11
      ${jar.plugin}3.3.0
      ${javadoc.plugin}3.6.3
      ${jxr.plugin}3.3.2
      ${license.plugin}4.3
      ${license.version}4.3
      ${modernizer.plugin}2.7.0
      ${mybatis-dynamic-sql.version}1.5.0
      ${mybatis-freemarker.version}1.2.4
      ${mybatis-spring-boot.version}2.3.23.0.3
      ${mybatis-spring.version}2.1.23.0.3
      ${mybatis-thymeleaf.version}1.0.4
      ${mybatis-velocity.version}2.1.2
      ${mybatis.version}3.5.15
      ${native-buildtools.version}0.10.0
      ${pdf.plugin}1.6.1
      ${pmd.plugin}3.21.2
      ${project-info.plugin}3.5.0
      ${release.plugin}3.0.1
      ${resources.plugin}3.3.1
      ${rewrite.plugin}5.21.05.22.0
      ${scm-publish.plugin}3.2.1
      ${shade.plugin}3.5.1
      ${site.plugin}4.0.0-M13
      ${sortpom.plugin}3.3.0
      ${source.plugin}3.3.0
      ${spotbugs.plugin}4.8.3.04.8.3.1
      ${spring-boot.version}2.7.183.3.0-M1
      ${spring-native.version}0.12.2
      ${surefire.plugin}3.2.5
      ${taglist.plugin}3.0.0
      ${versions.plugin}2.16.2
      ${whitespace.plugin}1.3.1
      StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      +

      Properties associated with artifact versions

      +

      +

      ${antrun.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${antrun.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-antrun-plugin
      Current Version3.1.0
      Allowed version range3.1.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${asm.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${asm.version}
      Associated artifactsorg.ow2.asm:asm
      Current Version9.6
      Allowed version range9.6
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${assembly.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${assembly.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-assembly-plugin
      Current Version3.6.0
      Allowed version range3.6.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${base-bundle.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${base-bundle.version}
      Associated artifactsorg.mybatis:base-bundle-descriptor
      Current Version11
      Allowed version range11
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${bnd.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${bnd.plugin}
      Associated artifactsbiz.aQute.bnd:bnd-maven-plugin
      Current Version7.0.0
      Allowed version range7.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${bnd.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${bnd.version}
      Associated artifactsbiz.aQute.bnd:biz.aQute.bndlib
      Current Version7.0.0
      Allowed version range7.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${build-tools.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${build-tools.version}
      Associated artifactscom.github.hazendaz:build-tools
      Current Version1.3.1
      Allowed version range1.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${checkstyle.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${checkstyle.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-checkstyle-plugin
      Current Version3.3.1
      Allowed version range3.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${checkstyle.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${checkstyle.version}
      Associated artifactscom.puppycrawl.tools:checkstyle
      Current Version10.13.0
      Allowed version range10.13.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${clean.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${clean.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-clean-plugin
      Current Version3.3.2
      Allowed version range3.3.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${clirr.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${clirr.plugin}
      Associated artifactsorg.codehaus.mojo:clirr-maven-plugin
      Current Version2.8
      Allowed version range2.8
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${compiler.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${compiler.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-compiler-plugin
      Current Version3.12.1
      Allowed version range3.12.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${coveralls.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${coveralls.plugin}
      Associated artifactscom.github.hazendaz.maven:coveralls-maven-plugin
      Current Version4.5.0-M3
      Allowed version range4.5.0-M3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${dependency.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${dependency.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-dependency-plugin
      Current Version3.6.1
      Allowed version range3.6.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${deploy.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${deploy.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-deploy-plugin
      Current Version3.1.1
      Allowed version range3.1.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${enforcer.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${enforcer.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-enforcer-plugin
      Current Version3.4.1
      Allowed version range3.4.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${extra-enforcer-rules.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${extra-enforcer-rules.version}
      Associated artifactsorg.codehaus.mojo:extra-enforcer-rules
      Current Version1.7.0
      Allowed version range1.7.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${fluido.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${fluido.version}
      Associated artifactsorg.apache.maven.skins:maven-fluido-skin
      Current Version2.0.0-M8
      Allowed version range2.0.0-M8
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${formatter.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${formatter.plugin}
      Associated artifactsnet.revelc.code.formatter:formatter-maven-plugin
      Current Version2.23.0
      Allowed version range2.23.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${git-commit.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${git-commit.plugin}
      Associated artifactsio.github.git-commit-id:git-commit-id-maven-plugin
      Current Version7.0.0
      Allowed version range7.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${gpg.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${gpg.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-gpg-plugin
      Current Version3.1.0
      Allowed version range3.1.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${impsort.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${impsort.plugin}
      Associated artifactsnet.revelc.code:impsort-maven-plugin
      Current Version1.9.0
      Allowed version range1.9.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${install.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${install.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-install-plugin
      Current Version3.1.1
      Allowed version range3.1.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${jacoco.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${jacoco.plugin}
      Associated artifactsorg.jacoco:jacoco-maven-plugin
      Current Version0.8.11
      Allowed version range0.8.11
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${jar.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${jar.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-jar-plugin
      Current Version3.3.0
      Allowed version range3.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${javadoc.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${javadoc.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-javadoc-plugin
      Current Version3.6.3
      Allowed version range3.6.3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${jxr.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${jxr.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-jxr-plugin
      Current Version3.3.2
      Allowed version range3.3.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${license.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${license.plugin}
      Associated artifactscom.mycila:license-maven-plugin
      Current Version4.3
      Allowed version range4.3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${license.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${license.version}
      Associated artifactscom.mycila:license-maven-plugin-git
      Current Version4.3
      Allowed version range4.3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${modernizer.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${modernizer.plugin}
      Associated artifactsorg.gaul:modernizer-maven-plugin
      Current Version2.7.0
      Allowed version range2.7.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-dynamic-sql.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-dynamic-sql.version}
      Associated artifactsorg.mybatis.dynamic-sql:mybatis-dynamic-sql
      Current Version1.5.0
      Allowed version range1.5.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-freemarker.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-freemarker.version}
      Associated artifactsorg.mybatis.scripting:mybatis-freemarker
      Current Version1.2.4
      Allowed version range1.2.4
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-spring-boot.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Property${mybatis-spring-boot.version}
      Associated artifactsorg.mybatis.spring.boot:mybatis-spring-boot-autoconfigure
      org.mybatis.spring.boot:mybatis-spring-boot-starter
      Current Version2.3.2
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      Allowed version range2.3.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-spring.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Property${mybatis-spring.version}
      Associated artifactsorg.mybatis:mybatis-spring
      Current Version2.1.2
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      Allowed version range2.1.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-thymeleaf.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-thymeleaf.version}
      Associated artifactsorg.mybatis.scripting:mybatis-thymeleaf
      Current Version1.0.4
      Allowed version range1.0.4
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-velocity.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-velocity.version}
      Associated artifactsorg.mybatis.scripting:mybatis-velocity
      Current Version2.1.2
      Allowed version range2.1.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis.version}
      Associated artifactsorg.mybatis:mybatis
      Current Version3.5.15
      Allowed version range3.5.15
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${native-buildtools.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${native-buildtools.version}
      Associated artifactsorg.graalvm.buildtools:native-maven-plugin
      Current Version0.10.0
      Allowed version range0.10.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${pdf.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${pdf.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-pdf-plugin
      Current Version1.6.1
      Allowed version range1.6.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${pmd.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${pmd.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-pmd-plugin
      Current Version3.21.2
      Allowed version range3.21.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${project-info.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${project-info.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-project-info-reports-plugin
      Current Version3.5.0
      Allowed version range3.5.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${release.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${release.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-release-plugin
      Current Version3.0.1
      Allowed version range3.0.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${resources.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${resources.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-resources-plugin
      Current Version3.3.1
      Allowed version range3.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${rewrite.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Property${rewrite.plugin}
      Associated artifactsorg.openrewrite.maven:rewrite-maven-plugin
      Current Version5.21.0
      Newer versions5.22.0 Latest Minor
      Allowed version range5.21.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${scm-publish.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${scm-publish.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-scm-publish-plugin
      Current Version3.2.1
      Allowed version range3.2.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${shade.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${shade.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-shade-plugin
      Current Version3.5.1
      Allowed version range3.5.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${site.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${site.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-site-plugin
      Current Version4.0.0-M13
      Allowed version range4.0.0-M13
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${sortpom.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${sortpom.plugin}
      Associated artifactscom.github.ekryd.sortpom:sortpom-maven-plugin
      Current Version3.3.0
      Allowed version range3.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${source.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${source.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-source-plugin
      Current Version3.3.0
      Allowed version range3.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${spotbugs.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Property${spotbugs.plugin}
      Associated artifactscom.github.spotbugs:spotbugs-maven-plugin
      Current Version4.8.3.0
      Newer versions4.8.3.1 Latest Subincremental
      Allowed version range4.8.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${spring-boot.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Property${spring-boot.version}
      Associated artifactsorg.springframework.boot:spring-boot-starter-parent
      Current Version2.7.18
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      Allowed version range2.7.18
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${spring-native.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${spring-native.version}
      Associated artifactsorg.springframework.experimental:spring-aot
      org.springframework.experimental:spring-native
      Current Version0.12.2
      Allowed version range0.12.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${surefire.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${surefire.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-surefire-plugin
      org.apache.maven.plugins:maven-surefire-report-plugin
      Current Version3.2.5
      Allowed version range3.2.5
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${taglist.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${taglist.plugin}
      Associated artifactsorg.codehaus.mojo:taglist-maven-plugin
      Current Version3.0.0
      Allowed version range3.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${versions.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${versions.plugin}
      Associated artifactsorg.codehaus.mojo:versions-maven-plugin
      Current Version2.16.2
      Allowed version range2.16.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${whitespace.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${whitespace.plugin}
      Associated artifactscom.github.hazendaz.maven:whitespace-maven-plugin
      Current Version1.3.1
      Allowed version range1.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +
      +
      +
      +
      + + + + diff --git a/ko/property-updates-report.html b/ko/property-updates-report.html new file mode 100644 index 0000000..22cfdf0 --- /dev/null +++ b/ko/property-updates-report.html @@ -0,0 +1,2167 @@ + + + + + + + + + + mybatis-spring-native-docs – Property Updates Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Overview

      +

      This report summarizes newer versions that may be available for your project's various properties associated with artifacts.

      + + + + + + + + + + + + + + + + + + + + + +
      # of properties using the latest version available50
      # of properties where the next version available is smaller than an incremental version update1
      # of properties where the next version available is an incremental version update0
      # of properties where the next version available is a minor version update1
      # of properties where the next version available is a major version update3
      +

      Summary of properties associated with artifact versions

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      ${antrun.plugin}3.1.0
      ${asm.version}9.6
      ${assembly.plugin}3.6.0
      ${base-bundle.version}11
      ${bnd.plugin}7.0.0
      ${bnd.version}7.0.0
      ${build-tools.version}1.3.1
      ${checkstyle.plugin}3.3.1
      ${checkstyle.version}10.13.0
      ${clean.plugin}3.3.2
      ${clirr.plugin}2.8
      ${compiler.plugin}3.12.1
      ${coveralls.plugin}4.5.0-M3
      ${dependency.plugin}3.6.1
      ${deploy.plugin}3.1.1
      ${enforcer.plugin}3.4.1
      ${extra-enforcer-rules.version}1.7.0
      ${fluido.version}2.0.0-M8
      ${formatter.plugin}2.23.0
      ${git-commit.plugin}7.0.0
      ${gpg.plugin}3.1.0
      ${impsort.plugin}1.9.0
      ${install.plugin}3.1.1
      ${jacoco.plugin}0.8.11
      ${jar.plugin}3.3.0
      ${javadoc.plugin}3.6.3
      ${jxr.plugin}3.3.2
      ${license.plugin}4.3
      ${license.version}4.3
      ${modernizer.plugin}2.7.0
      ${mybatis-dynamic-sql.version}1.5.0
      ${mybatis-freemarker.version}1.2.4
      ${mybatis-spring-boot.version}2.3.23.0.3
      ${mybatis-spring.version}2.1.23.0.3
      ${mybatis-thymeleaf.version}1.0.4
      ${mybatis-velocity.version}2.1.2
      ${mybatis.version}3.5.15
      ${pdf.plugin}1.6.1
      ${pmd.plugin}3.21.2
      ${project-info.plugin}3.5.0
      ${release.plugin}3.0.1
      ${resources.plugin}3.3.1
      ${rewrite.plugin}5.21.05.22.0
      ${scm-publish.plugin}3.2.1
      ${shade.plugin}3.5.1
      ${site.plugin}4.0.0-M13
      ${sortpom.plugin}3.3.0
      ${source.plugin}3.3.0
      ${spotbugs.plugin}4.8.3.04.8.3.1
      ${spring-boot.version}2.7.183.3.0-M1
      ${spring-native.version}0.12.2
      ${surefire.plugin}3.2.5
      ${taglist.plugin}3.0.0
      ${versions.plugin}2.16.2
      ${whitespace.plugin}1.3.1
      StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
      +

      Properties associated with artifact versions

      +

      +

      ${antrun.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${antrun.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-antrun-plugin
      Current Version3.1.0
      Allowed version range3.1.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${asm.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${asm.version}
      Associated artifactsorg.ow2.asm:asm
      Current Version9.6
      Allowed version range9.6
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${assembly.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${assembly.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-assembly-plugin
      Current Version3.6.0
      Allowed version range3.6.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${base-bundle.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${base-bundle.version}
      Associated artifactsorg.mybatis:base-bundle-descriptor
      Current Version11
      Allowed version range11
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${bnd.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${bnd.plugin}
      Associated artifactsbiz.aQute.bnd:bnd-maven-plugin
      Current Version7.0.0
      Allowed version range7.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${bnd.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${bnd.version}
      Associated artifactsbiz.aQute.bnd:biz.aQute.bndlib
      Current Version7.0.0
      Allowed version range7.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${build-tools.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${build-tools.version}
      Associated artifactscom.github.hazendaz:build-tools
      Current Version1.3.1
      Allowed version range1.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${checkstyle.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${checkstyle.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-checkstyle-plugin
      Current Version3.3.1
      Allowed version range3.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${checkstyle.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${checkstyle.version}
      Associated artifactscom.puppycrawl.tools:checkstyle
      Current Version10.13.0
      Allowed version range10.13.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${clean.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${clean.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-clean-plugin
      Current Version3.3.2
      Allowed version range3.3.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${clirr.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${clirr.plugin}
      Associated artifactsorg.codehaus.mojo:clirr-maven-plugin
      Current Version2.8
      Allowed version range2.8
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${compiler.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${compiler.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-compiler-plugin
      Current Version3.12.1
      Allowed version range3.12.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${coveralls.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${coveralls.plugin}
      Associated artifactscom.github.hazendaz.maven:coveralls-maven-plugin
      Current Version4.5.0-M3
      Allowed version range4.5.0-M3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${dependency.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${dependency.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-dependency-plugin
      Current Version3.6.1
      Allowed version range3.6.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${deploy.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${deploy.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-deploy-plugin
      Current Version3.1.1
      Allowed version range3.1.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${enforcer.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${enforcer.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-enforcer-plugin
      Current Version3.4.1
      Allowed version range3.4.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${extra-enforcer-rules.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${extra-enforcer-rules.version}
      Associated artifactsorg.codehaus.mojo:extra-enforcer-rules
      Current Version1.7.0
      Allowed version range1.7.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${fluido.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${fluido.version}
      Associated artifactsorg.apache.maven.skins:maven-fluido-skin
      Current Version2.0.0-M8
      Allowed version range2.0.0-M8
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${formatter.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${formatter.plugin}
      Associated artifactsnet.revelc.code.formatter:formatter-maven-plugin
      Current Version2.23.0
      Allowed version range2.23.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${git-commit.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${git-commit.plugin}
      Associated artifactsio.github.git-commit-id:git-commit-id-maven-plugin
      Current Version7.0.0
      Allowed version range7.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${gpg.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${gpg.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-gpg-plugin
      Current Version3.1.0
      Allowed version range3.1.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${impsort.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${impsort.plugin}
      Associated artifactsnet.revelc.code:impsort-maven-plugin
      Current Version1.9.0
      Allowed version range1.9.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${install.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${install.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-install-plugin
      Current Version3.1.1
      Allowed version range3.1.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${jacoco.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${jacoco.plugin}
      Associated artifactsorg.jacoco:jacoco-maven-plugin
      Current Version0.8.11
      Allowed version range0.8.11
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${jar.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${jar.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-jar-plugin
      Current Version3.3.0
      Allowed version range3.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${javadoc.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${javadoc.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-javadoc-plugin
      Current Version3.6.3
      Allowed version range3.6.3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${jxr.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${jxr.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-jxr-plugin
      Current Version3.3.2
      Allowed version range3.3.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${license.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${license.plugin}
      Associated artifactscom.mycila:license-maven-plugin
      Current Version4.3
      Allowed version range4.3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${license.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${license.version}
      Associated artifactscom.mycila:license-maven-plugin-git
      Current Version4.3
      Allowed version range4.3
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${modernizer.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${modernizer.plugin}
      Associated artifactsorg.gaul:modernizer-maven-plugin
      Current Version2.7.0
      Allowed version range2.7.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-dynamic-sql.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-dynamic-sql.version}
      Associated artifactsorg.mybatis.dynamic-sql:mybatis-dynamic-sql
      Current Version1.5.0
      Allowed version range1.5.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-freemarker.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-freemarker.version}
      Associated artifactsorg.mybatis.scripting:mybatis-freemarker
      Current Version1.2.4
      Allowed version range1.2.4
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-spring-boot.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Property${mybatis-spring-boot.version}
      Associated artifactsorg.mybatis.spring.boot:mybatis-spring-boot-autoconfigure
      org.mybatis.spring.boot:mybatis-spring-boot-starter
      Current Version2.3.2
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      Allowed version range2.3.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-spring.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Property${mybatis-spring.version}
      Associated artifactsorg.mybatis:mybatis-spring
      Current Version2.1.2
      Newer versions3.0.0
      3.0.1
      3.0.2
      3.0.3 Latest Major
      Allowed version range2.1.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-thymeleaf.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-thymeleaf.version}
      Associated artifactsorg.mybatis.scripting:mybatis-thymeleaf
      Current Version1.0.4
      Allowed version range1.0.4
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis-velocity.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis-velocity.version}
      Associated artifactsorg.mybatis.scripting:mybatis-velocity
      Current Version2.1.2
      Allowed version range2.1.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${mybatis.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${mybatis.version}
      Associated artifactsorg.mybatis:mybatis
      Current Version3.5.15
      Allowed version range3.5.15
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${pdf.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${pdf.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-pdf-plugin
      Current Version1.6.1
      Allowed version range1.6.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${pmd.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${pmd.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-pmd-plugin
      Current Version3.21.2
      Allowed version range3.21.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${project-info.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${project-info.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-project-info-reports-plugin
      Current Version3.5.0
      Allowed version range3.5.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${release.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${release.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-release-plugin
      Current Version3.0.1
      Allowed version range3.0.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${resources.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${resources.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-resources-plugin
      Current Version3.3.1
      Allowed version range3.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${rewrite.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer minor version available. Minor updates are sometimes passive.
      Property${rewrite.plugin}
      Associated artifactsorg.openrewrite.maven:rewrite-maven-plugin
      Current Version5.21.0
      Newer versions5.22.0 Latest Minor
      Allowed version range5.21.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${scm-publish.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${scm-publish.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-scm-publish-plugin
      Current Version3.2.1
      Allowed version range3.2.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${shade.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${shade.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-shade-plugin
      Current Version3.5.1
      Allowed version range3.5.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${site.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${site.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-site-plugin
      Current Version4.0.0-M13
      Allowed version range4.0.0-M13
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${sortpom.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${sortpom.plugin}
      Associated artifactscom.github.ekryd.sortpom:sortpom-maven-plugin
      Current Version3.3.0
      Allowed version range3.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${source.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${source.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-source-plugin
      Current Version3.3.0
      Allowed version range3.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${spotbugs.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer version available.
      Property${spotbugs.plugin}
      Associated artifactscom.github.spotbugs:spotbugs-maven-plugin
      Current Version4.8.3.0
      Newer versions4.8.3.1 Latest Subincremental
      Allowed version range4.8.3.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${spring-boot.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status There is at least one newer major version available. Major updates are rarely passive.
      Property${spring-boot.version}
      Associated artifactsorg.springframework.boot:spring-boot-starter-parent
      Current Version2.7.18
      Newer versions3.0.0-M1
      3.0.0-M2
      3.0.0-M3
      3.0.0-M4
      3.0.0-M5
      3.0.0-RC1
      3.0.0-RC2
      3.0.0
      3.0.1
      3.0.2
      3.0.3
      3.0.4
      3.0.5
      3.0.6
      3.0.7
      3.0.8
      3.0.9
      3.0.10
      3.0.11
      3.0.12
      3.0.13
      3.1.0-M1
      3.1.0-M2
      3.1.0-RC1
      3.1.0-RC2
      3.1.0
      3.1.1
      3.1.2
      3.1.3
      3.1.4
      3.1.5
      3.1.6
      3.1.7
      3.1.8
      3.2.0-M1
      3.2.0-M2
      3.2.0-M3
      3.2.0-RC1
      3.2.0-RC2
      3.2.0
      3.2.1
      3.2.2
      3.3.0-M1 Latest Major
      Allowed version range2.7.18
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${spring-native.version}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${spring-native.version}
      Associated artifactsorg.springframework.experimental:spring-aot
      org.springframework.experimental:spring-native
      Current Version0.12.2
      Allowed version range0.12.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${surefire.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${surefire.plugin}
      Associated artifactsorg.apache.maven.plugins:maven-surefire-plugin
      org.apache.maven.plugins:maven-surefire-report-plugin
      Current Version3.2.5
      Allowed version range3.2.5
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${taglist.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${taglist.plugin}
      Associated artifactsorg.codehaus.mojo:taglist-maven-plugin
      Current Version3.0.0
      Allowed version range3.0.0
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${versions.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${versions.plugin}
      Associated artifactsorg.codehaus.mojo:versions-maven-plugin
      Current Version2.16.2
      Allowed version range2.16.2
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +

      ${whitespace.plugin}

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Status No newer versions available.
      Property${whitespace.plugin}
      Associated artifactscom.github.hazendaz.maven:whitespace-maven-plugin
      Current Version1.3.1
      Allowed version range1.3.1
      Infer associations from projectYes
      Only use release versionsNo
      Include projects from reactorYes
      Always use reactor projects (even if older or -SNAPSHOT)Yes
      +
      +
      +
      +
      + + + + diff --git a/ko/scm.html b/ko/scm.html new file mode 100644 index 0000000..b8c6440 --- /dev/null +++ b/ko/scm.html @@ -0,0 +1,89 @@ + + + + + + + + + + mybatis-spring-native-docs – 소스 레파지토리 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      개요

      +

      This project uses Git to manage its source code. Instructions on Git use can be found at https://git-scm.com/documentation.

      +

      웹 접근

      +

      다음은 온라인 소스 레파지토리에 대한 링크입니다.

      +
      +

      익명에 의한 접근

      +

      The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

      +
      +
      $ git clone ssh://git@github.com/mybatis/spring-native.git
      +

      개발자 접근

      +

      Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

      +
      +
      $ git clone ssh://git@github.com/mybatis/spring-native.git
      +

      방화벽 안쪽에서 접근

      +

      방화벽 안쪽에서 접근하는 방법에 대한 더 많은 정보를 원하시면 SCM에 대한 문서들을 참조하십시오.

      +
      +
      +
      +
      + + + + diff --git a/ko/spotbugs.html b/ko/spotbugs.html new file mode 100644 index 0000000..68e02bc --- /dev/null +++ b/ko/spotbugs.html @@ -0,0 +1,111 @@ + + + + + + + + + + mybatis-spring-native-extensions – SpotBugs Bug Detector Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      SpotBugs Bug Detector Report

      +

      The following document contains the results of SpotBugs

      +

      SpotBugs Version is 4.8.3

      +

      Threshold is high

      +

      Effort is max

      +

      Summary

      + + + + + + + + + + +
      ClassesBugsErrorsMissing Classes
      0000
      +

      Files

      + + + +
      ClassBugs
      +
      +
      +
      +
      + + + + diff --git a/ko/summary.html b/ko/summary.html new file mode 100644 index 0000000..f670b66 --- /dev/null +++ b/ko/summary.html @@ -0,0 +1,119 @@ + + + + + + + + + + mybatis-spring-native-docs – 프로젝트 요약 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      프로젝트 요약

      +

      프로젝트 정보

      + + + + + + + + + + + + +
      필드가치
      이름mybatis-spring-native-docs
      설명Documents for MyBatis integration with Spring Native feature
      홈페이지https://www.mybatis.org/spring-native/mybatis-spring-native-docs/
      +

      프로젝트 조직

      + + + + + + + + + +
      필드가치
      이름MyBatis.org
      URLhttps://www.mybatis.org/
      +

      빌드 정보

      + + + + + + + + + + + + + + + + + + +
      필드가치
      그룹IDorg.mybatis.spring.native
      산출물IDmybatis-spring-native-docs
      버전0.1.0-SNAPSHOT
      형식jar
      Java Version11
      +
      +
      +
      +
      + + + + diff --git a/ko/surefire-report.html b/ko/surefire-report.html new file mode 100644 index 0000000..c6eeafc --- /dev/null +++ b/ko/surefire-report.html @@ -0,0 +1,107 @@ + + + + + + + + + + mybatis-spring-native-docs – Surefire Report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Surefire Report

      +

      Summary


      + + + + + + + + + + + + + + +
      TestsErrorsFailuresSkippedSuccess RateTime
      00000%0 s

      +

      Note: failures are anticipated and checked for with assertions while errors are unanticipated.


      +
      +
      +
      +
      + + + + diff --git a/ko/taglist.html b/ko/taglist.html new file mode 100644 index 0000000..c83d612 --- /dev/null +++ b/ko/taglist.html @@ -0,0 +1,108 @@ + + + + + + + + + + mybatis-spring-native-extensions – Tag List report + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      Tag List Report

      +

      The following document contains the listing of user tags found in the code. Below is the summary of the occurrences per tag.

      + +Tag Class +Total number of occurrences +Tag strings used by tag class + +Deprecated Work +0 +@deprecated + +FIXME Work +0 +fixme, @fixme + +Todo Work +0 +todo, @todo +

      Each tag is detailed below:

      +
      +
      +
      +
      + + + + diff --git a/ko/team.html b/ko/team.html new file mode 100644 index 0000000..2bf2c4a --- /dev/null +++ b/ko/team.html @@ -0,0 +1,216 @@ + + + + + + + + + + mybatis-spring-native-docs – 팀 목록 + + + + + + +
      +
      + + + +
      +
      +
      + + +
      +
      +
      +

      프로젝트 팀

      +

      프로젝트의 성공을 위해서는 많은 사람들이 많은 역할들을 수행해 주셔야 합니다. 어떤 구성원들은 코드나 문서를 작성하고, 또 어떤 분들은 테스터로서 가치 있는 일을 해 주시거나, 또는 패치나 제안을 보내주시기도 합니다.

      +

      프로젝트 팀은 구성원들과 기여자들로 이루어져 있습니다. 구성원들은 프로젝트 소스에 대해 직접 접근할 수 있으며 활동적으로 코드 베이스를 발전시켜 갑니다. 기여자들은 구성원들에게 패치와 제안을 제출함으로써 프로젝트를 개선시켜 갑니다. 이 프로젝트의 기여자 수는 제한이 없습니다. 오늘 바로 참여하십시오. 이 프로젝트의 모든 기여들에 대해 깊이 감사드립니다.

      +

      구성원

      +

      다음은 이 프로젝트에 여러 방식으로 직접적으로 기여하실 수 있는 커밋 권한을 가진 개발자들의 목록입니다.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ImageID이름전자우편역할시간대
      cbeginClinton Beginclinton.begin@gmail.comOwner, Founder, Committer-
      agustafsonAndrew Gustafsongus4000@gmail.comCommitter-
      brandon.goodinBrandon Goodinbrandon.goodin@gmail.comCommitter-
      christianpoitrasChristian Poitraschristian.poitras@ircm.qc.caCommitter-5
      emacarronEduardo Macarroneduardo.macarron@gmail.comCommitter-
      mnesarcoFrank Martinezmnesarco@gmail.comCommitter-
      hpresnallHunter Presnallhpresnall@gmail.comCommitter-
      harawataIwao Aveharawata@gmail.comCommitter-
      jeffgbutlerJeff Butlerjeffgbutler@gmail.comCommitter-
      hazendazJeremy Landisjeremylandis@hotmail.comCommitter-5
      nospam@kaigrabfelder.deKai Grabfeldernospam@kaigrabfelder.deCommitter-
      lmeadorsLarry Meadorslarry.meadors@gmail.comCommitter-
      marcosperanzaMarco Speranzamarco.speranza79@gmail.comCommitter+1
      nmavesNathan Mavesnathan.maves@gmail.comCommitter-
      pboonphongPutthiphong Boonphongputthiphong.boonphong@gmail.comCommitter-
      simonetripodiSimone Tripodisimone.tripodi@gmail.comCommitter+1
      h3adacheTim Chenchengt@gmail.comCommitter-
      +

      기여자

      +

      다음 사람들은 제안, 패치 또는 문서화를 통해 이 프로젝트에 기여하신 분들입니다.

      + + + + + + + + +
      Image이름전자우편
      Kazuki Shimizukazuki43zoo@gmail.com
      +
      +
      +
      +
      + + + + diff --git a/ko/xref-test/allclasses-frame.html b/ko/xref-test/allclasses-frame.html new file mode 100644 index 0000000..810c6d5 --- /dev/null +++ b/ko/xref-test/allclasses-frame.html @@ -0,0 +1,72 @@ + + + + + + + All Classes + + + +

      All Classes

      +
      + +
      + + diff --git a/ko/xref-test/index.html b/ko/xref-test/index.html new file mode 100644 index 0000000..acf9fc6 --- /dev/null +++ b/ko/xref-test/index.html @@ -0,0 +1,75 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html b/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html new file mode 100644 index 0000000..a2da651 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html @@ -0,0 +1,147 @@ + + + +MyBatisMapperFactoryBeanPostProcessorTest xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import org.assertj.core.api.Assertions;
      +19  import org.junit.jupiter.api.Test;
      +20  import org.mybatis.spring.mapper.MapperFactoryBean;
      +21  import org.mybatis.spring.nativex.mapper.SampleMapper;
      +22  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
      +23  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
      +24  import org.springframework.beans.factory.support.RootBeanDefinition;
      +25  
      +26  /**
      +27   * Test cases for {@link MyBatisMapperFactoryBeanPostProcessor}.
      +28   *
      +29   * @author Kazuki Shimizu
      +30   */
      +31  class MyBatisMapperFactoryBeanPostProcessorTest {
      +32  
      +33    @Test
      +34    void resolveMapperInterfaceType() {
      +35      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
      +36          .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class)
      +37          .getBeanDefinition();
      +38      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +39      postProcess(beanDefinition);
      +40      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
      +41      Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean.class);
      +42      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1);
      +43      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class);
      +44    }
      +45  
      +46    @Test
      +47    void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithOneGeneric() {
      +48      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
      +49          .rootBeanDefinition(MapperFactoryBean2.class).addPropertyValue("mapperInterface", SampleMapper.class)
      +50          .getBeanDefinition();
      +51      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +52      postProcess(beanDefinition);
      +53      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
      +54      Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean2.class);
      +55      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1);
      +56      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class);
      +57    }
      +58  
      +59    @Test
      +60    void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithoutGeneric() {
      +61      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
      +62          .rootBeanDefinition(SampleMapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class)
      +63          .getBeanDefinition();
      +64      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
      +65      postProcess(beanDefinition);
      +66      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
      +67    }
      +68  
      +69    // TODO Now this case is limitation using MapperFactoryBean's subclass
      +70    @Test
      +71    void failResolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithMultiGenerics() {
      +72      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
      +73          .rootBeanDefinition(MapperFactoryBean3.class).addPropertyValue("mapperInterface", SampleMapper.class)
      +74          .getBeanDefinition();
      +75      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +76      Assertions.assertThatIllegalArgumentException().isThrownBy(() -> postProcess(beanDefinition)).withMessage(
      +77          "Mismatched number of generics specified for private static class org.mybatis.spring.nativex.MyBatisMapperFactoryBeanPostProcessorTest$MapperFactoryBean3<T,Z>");
      +78    }
      +79  
      +80    @Test
      +81    void skipResolveMapperInterfaceTypeWhenNotPresentMapperInterface() {
      +82      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
      +83          .rootBeanDefinition(MapperFactoryBean.class).getBeanDefinition();
      +84      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +85      postProcess(beanDefinition);
      +86      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +87      Assertions.assertThat(beanDefinition.getTargetType()).isNull();
      +88    }
      +89  
      +90    @Test
      +91    void skipResolveMapperInterfaceTypeWhenFailGetMapperInterface() {
      +92      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
      +93          .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", "invalid value")
      +94          .getBeanDefinition();
      +95      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +96      postProcess(beanDefinition);
      +97      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
      +98      Assertions.assertThat(beanDefinition.getTargetType()).isNull();
      +99    }
      +100 
      +101   @Test
      +102   void skipResolveMapperInterfaceTypeWhenNotPresentBeanClass() {
      +103     RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition((Class<?>) null)
      +104         .getBeanDefinition();
      +105     postProcess(beanDefinition);
      +106     Assertions.assertThat(beanDefinition.getTargetType()).isNull();
      +107   }
      +108 
      +109   @Test
      +110   void skipResolveMapperInterfaceTypeWhenBeanClassNotMapperBeanFactory() {
      +111     RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition(String.class)
      +112         .getBeanDefinition();
      +113     postProcess(beanDefinition);
      +114     Assertions.assertThat(beanDefinition.getTargetType()).isNull();
      +115   }
      +116 
      +117   private void postProcess(RootBeanDefinition beanDefinition) {
      +118     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
      +119     MyBatisMapperFactoryBeanPostProcessor processor = new MyBatisMapperFactoryBeanPostProcessor();
      +120     processor.setBeanFactory(beanFactory);
      +121     processor.postProcessBeanDefinition("testBean", beanDefinition);
      +122   }
      +123 
      +124   private static class MapperFactoryBean2<T> extends MapperFactoryBean<T> {
      +125   }
      +126 
      +127   @SuppressWarnings("unused")
      +128   private static class MapperFactoryBean3<T, Z> extends MapperFactoryBean<T> {
      +129   }
      +130 
      +131   private static class SampleMapperFactoryBean extends MapperFactoryBean<SampleMapper> {
      +132   }
      +133 
      +134 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html b/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html new file mode 100644 index 0000000..75ac49c --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html @@ -0,0 +1,287 @@ + + + +MyBatisMapperNativeConfigurationProcessorTest xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
      +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
      +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
      +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
      +30  
      +31  import java.util.ArrayList;
      +32  import java.util.List;
      +33  import java.util.Map;
      +34  import java.util.Set;
      +35  import java.util.stream.Collectors;
      +36  
      +37  import org.assertj.core.api.Assertions;
      +38  import org.junit.jupiter.api.Test;
      +39  import org.mybatis.spring.mapper.MapperFactoryBean;
      +40  import org.mybatis.spring.nativex.mapper.Sample2Mapper;
      +41  import org.mybatis.spring.nativex.mapper.Sample3Mapper;
      +42  import org.mybatis.spring.nativex.mapper.SampleMapper;
      +43  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry;
      +44  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
      +45  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry;
      +46  import org.springframework.beans.factory.config.RuntimeBeanNameReference;
      +47  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
      +48  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
      +49  import org.springframework.nativex.domain.proxies.JdkProxyDescriptor;
      +50  import org.springframework.nativex.domain.proxies.ProxiesDescriptor;
      +51  import org.springframework.nativex.hint.TypeAccess;
      +52  
      +53  /**
      +54   * Test cases for {@link MyBatisMapperNativeConfigurationProcessor}.
      +55   *
      +56   * @author Kazuki Shimizu
      +57   */
      +58  class MyBatisMapperNativeConfigurationProcessorTest {
      +59  
      +60    private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
      +61        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
      +62        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
      +63  
      +64    @Test
      +65    @SuppressWarnings("java:S5961")
      +66    void registerMapperInterfaceAndRelationships() {
      +67      DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
      +68      beanFactory.registerBeanDefinition("sampleMapper",
      +69          BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
      +70              .addPropertyValue("mapperInterface", SampleMapper.class)
      +71              .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
      +72              .getBeanDefinition());
      +73      NativeConfigurationRegistry registry = process(beanFactory);
      +74      // reflection hint
      +75      {
      +76        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
      +77            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
      +78        Assertions.assertThat(entries).hasSize(13);
      +79        // mapper interface
      +80        Assertions.assertThat(entries.get(SampleMapper.class))
      +81            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +82        // mapper method argument and return type
      +83        Assertions.assertThat(entries.get(SampleMapper.Sample.class))
      +84            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +85        Assertions.assertThat(entries.get(SampleMapper.SampleParam.class))
      +86            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +87        Assertions.assertThat(entries.get(SampleMapper.Sample2.class))
      +88            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +89        Assertions.assertThat(entries.get(SampleMapper.Sample2Param.class))
      +90            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +91        // sql provider
      +92        Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass1.class))
      +93            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +94        Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass2.class))
      +95            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +96        Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass1.class))
      +97            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +98        Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass2.class))
      +99            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +100       Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass1.class))
      +101           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +102       Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass2.class))
      +103           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +104       Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass1.class))
      +105           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +106       Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass2.class))
      +107           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +108     }
      +109     // proxy hint
      +110     {
      +111       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
      +112       Assertions.assertThat(entries).hasSize(1);
      +113       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
      +114       entries.forEach(x -> x.contribute(proxiesDescriptor));
      +115       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
      +116       Assertions.assertThat(jdkProxyDescriptors).hasSize(1);
      +117       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
      +118         Assertions.assertThat(x.isClassProxy()).isFalse();
      +119         Assertions.assertThat(x.getTypes()).containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.SampleMapper");
      +120       });
      +121     }
      +122     // resource hint
      +123     {
      +124       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
      +125       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/SampleMapper.xml");
      +126     }
      +127   }
      +128 
      +129   @Test
      +130   void registerMultiMapperInterface() {
      +131     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
      +132     beanFactory.registerBeanDefinition("sample2Mapper",
      +133         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
      +134             .addPropertyValue("mapperInterface", Sample2Mapper.class)
      +135             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
      +136             .getBeanDefinition());
      +137     beanFactory.registerBeanDefinition("sample3Mapper",
      +138         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
      +139             .addPropertyValue("mapperInterface", Sample3Mapper.class)
      +140             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
      +141             .getBeanDefinition());
      +142     NativeConfigurationRegistry registry = process(beanFactory);
      +143     // reflection hint
      +144     {
      +145       Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
      +146           .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
      +147       Assertions.assertThat(entries).hasSize(2);
      +148       // mapper interface
      +149       Assertions.assertThat(entries.get(Sample2Mapper.class))
      +150           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +151       Assertions.assertThat(entries.get(Sample3Mapper.class))
      +152           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +153     }
      +154     // proxy hint
      +155     {
      +156       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
      +157       Assertions.assertThat(entries).hasSize(2);
      +158       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
      +159       entries.forEach(x -> x.contribute(proxiesDescriptor));
      +160       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
      +161       Assertions.assertThat(jdkProxyDescriptors).hasSize(2);
      +162       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
      +163         Assertions.assertThat(x.isClassProxy()).isFalse();
      +164         Assertions.assertThat(x.getTypes())
      +165             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper");
      +166       });
      +167       Assertions.assertThat(jdkProxyDescriptors.get(1)).satisfies(x -> {
      +168         Assertions.assertThat(x.isClassProxy()).isFalse();
      +169         Assertions.assertThat(x.getTypes())
      +170             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample3Mapper");
      +171       });
      +172     }
      +173     // resource hint
      +174     {
      +175       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
      +176       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml",
      +177           "org/mybatis/spring/nativex/mapper/Sample3Mapper.xml");
      +178     }
      +179   }
      +180 
      +181   @Test
      +182   void registerMapperInterfaceWithMapperFactoryBeanSubclass() {
      +183     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
      +184     beanFactory.registerBeanDefinition("sample2Mapper",
      +185         BeanDefinitionBuilder.rootBeanDefinition(MyMapperFactoryBean.class)
      +186             .addPropertyValue("mapperInterface", Sample2Mapper.class)
      +187             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
      +188             .getBeanDefinition());
      +189     NativeConfigurationRegistry registry = process(beanFactory);
      +190     // reflection hint
      +191     {
      +192       Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
      +193           .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
      +194       Assertions.assertThat(entries).hasSize(1);
      +195       // mapper interface
      +196       Assertions.assertThat(entries.get(Sample2Mapper.class))
      +197           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
      +198     }
      +199     // proxy hint
      +200     {
      +201       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
      +202       Assertions.assertThat(entries).hasSize(1);
      +203       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
      +204       entries.forEach(x -> x.contribute(proxiesDescriptor));
      +205       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
      +206       Assertions.assertThat(jdkProxyDescriptors).hasSize(1);
      +207       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
      +208         Assertions.assertThat(x.isClassProxy()).isFalse();
      +209         Assertions.assertThat(x.getTypes())
      +210             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper");
      +211       });
      +212     }
      +213     // resource hint
      +214     {
      +215       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
      +216       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml");
      +217     }
      +218   }
      +219 
      +220   @Test
      +221   void skipRegisterWhenMapperInterfaceNotPresent() {
      +222     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
      +223     beanFactory.registerBeanDefinition("sample2Mapper",
      +224         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
      +225             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
      +226             .getBeanDefinition());
      +227     NativeConfigurationRegistry registry = process(beanFactory);
      +228     // reflection hint
      +229     {
      +230       Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty();
      +231     }
      +232     // proxy hint
      +233     {
      +234       Assertions.assertThat(registry.proxy().getEntries()).isEmpty();
      +235     }
      +236     // resource hint
      +237     {
      +238       Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty();
      +239     }
      +240   }
      +241 
      +242   @Test
      +243   void skipRegisterWhenMapperInterfaceIsNull() {
      +244     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
      +245     beanFactory.registerBeanDefinition("sample2Mapper",
      +246         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", null)
      +247             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
      +248             .getBeanDefinition());
      +249     NativeConfigurationRegistry registry = process(beanFactory);
      +250     // reflection hint
      +251     {
      +252       Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty();
      +253     }
      +254     // proxy hint
      +255     {
      +256       Assertions.assertThat(registry.proxy().getEntries()).isEmpty();
      +257     }
      +258     // resource hint
      +259     {
      +260       Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty();
      +261     }
      +262   }
      +263 
      +264   private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) {
      +265     NativeConfigurationRegistry registry = new NativeConfigurationRegistry();
      +266     new MyBatisMapperNativeConfigurationProcessor().process(beanFactory, registry);
      +267     return registry;
      +268   }
      +269 
      +270   private static class MyMapperFactoryBean<T> extends MapperFactoryBean<T> {
      +271 
      +272   }
      +273 
      +274 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html b/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html new file mode 100644 index 0000000..4ad65d7 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html @@ -0,0 +1,372 @@ + + + +MyBatisMapperTypeUtilsTest xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import java.lang.reflect.Method;
      +19  import java.util.Arrays;
      +20  import java.util.Collection;
      +21  import java.util.HashMap;
      +22  import java.util.List;
      +23  import java.util.Map;
      +24  import java.util.Optional;
      +25  import java.util.Set;
      +26  import java.util.concurrent.ConcurrentMap;
      +27  import java.util.stream.Collectors;
      +28  
      +29  import org.assertj.core.api.Assertions;
      +30  import org.junit.jupiter.api.Test;
      +31  import org.springframework.util.ReflectionUtils;
      +32  
      +33  class MyBatisMapperTypeUtilsTest {
      +34  
      +35    @Test
      +36    void resolveReturnClassWithFinalValueClass() {
      +37      Class<?> mapper = TestMapper1.class;
      +38      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findString"));
      +39      Assertions.assertThat(type).isEqualTo(String.class);
      +40    }
      +41  
      +42    @Test
      +43    void resolveReturnClassWithAbstractValueClass() {
      +44      Class<?> mapper = TestMapper1.class;
      +45      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findNumber"));
      +46      Assertions.assertThat(type).isEqualTo(Number.class);
      +47    }
      +48  
      +49    @Test
      +50    void resolveReturnClassWithTopLayerInterface() {
      +51      Class<?> mapper = TestMapper1.class;
      +52      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +53          ReflectionUtils.findMethod(mapper, "findCharSequence"));
      +54      Assertions.assertThat(type).isEqualTo(CharSequence.class);
      +55    }
      +56  
      +57    @Test
      +58    void resolveReturnClassWithPrimitive() {
      +59      Class<?> mapper = TestMapper1.class;
      +60      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findInt"));
      +61      Assertions.assertThat(type).isEqualTo(int.class);
      +62    }
      +63  
      +64    @Test
      +65    void resolveReturnClassWithPrimitiveWrapper() {
      +66      Class<?> mapper = TestMapper1.class;
      +67      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findLong"));
      +68      Assertions.assertThat(type).isEqualTo(Long.class);
      +69    }
      +70  
      +71    @Test
      +72    void resolveReturnClassWithPrimitiveVoid() {
      +73      Class<?> mapper = TestMapper1.class;
      +74      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "insert"));
      +75      Assertions.assertThat(type).isEqualTo(void.class);
      +76    }
      +77  
      +78    @Test
      +79    void resolveReturnClassWithClassVoid() {
      +80      Class<?> mapper = TestMapper1.class;
      +81      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +82          ReflectionUtils.findMethod(mapper, "insertWithClassVoid"));
      +83      Assertions.assertThat(type).isEqualTo(Void.class);
      +84    }
      +85  
      +86    @Test
      +87    void resolveReturnClassWithSimpleBean() {
      +88      Class<?> mapper = TestMapper1.class;
      +89      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +90          ReflectionUtils.findMethod(mapper, "findSimpleBean"));
      +91      Assertions.assertThat(type).isEqualTo(MyBean.class);
      +92    }
      +93  
      +94    @Test
      +95    void resolveReturnClassWithSimpleBeanInCollection() {
      +96      Class<?> mapper = TestMapper1.class;
      +97      {
      +98        Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +99            ReflectionUtils.findMethod(mapper, "findSimpleBeanList"));
      +100       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +101     }
      +102     {
      +103       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +104           ReflectionUtils.findMethod(mapper, "findSimpleBeanCollection"));
      +105       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +106     }
      +107     {
      +108       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +109           ReflectionUtils.findMethod(mapper, "findSimpleBeanIterable"));
      +110       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +111     }
      +112     {
      +113       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +114           ReflectionUtils.findMethod(mapper, "findSimpleBeanArray"));
      +115       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +116     }
      +117     {
      +118       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +119           ReflectionUtils.findMethod(mapper, "findSimpleBeanMap"));
      +120       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +121     }
      +122     {
      +123       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +124           ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap"));
      +125       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +126     }
      +127   }
      +128 
      +129   @Test
      +130   void resolveReturnClassWithSimpleBeanInMap() {
      +131     Class<?> mapper = TestMapper1.class;
      +132     {
      +133       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +134           ReflectionUtils.findMethod(mapper, "findSimpleBeanMap"));
      +135       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +136     }
      +137     {
      +138       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +139           ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap"));
      +140       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +141     }
      +142   }
      +143 
      +144   @Test
      +145   void resolveReturnClassWithOptional() {
      +146     Class<?> mapper = TestMapper1.class;
      +147     {
      +148       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +149           ReflectionUtils.findMethod(mapper, "findStringWithOptional"));
      +150       Assertions.assertThat(type).isEqualTo(String.class);
      +151     }
      +152     {
      +153       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +154           ReflectionUtils.findMethod(mapper, "findSimpleBeanWithOptional"));
      +155       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +156     }
      +157   }
      +158 
      +159   @Test
      +160   void resolveReturnClassWithWildcard() {
      +161     Class<?> mapper = TestMapper1.class;
      +162     {
      +163       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +164           ReflectionUtils.findMethod(mapper, "findSimpleWildcardList"));
      +165       Assertions.assertThat(type).isEqualTo(List.class);
      +166     }
      +167     {
      +168       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +169           ReflectionUtils.findMethod(mapper, "findSimpleGenericsWildcardList"));
      +170       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +171     }
      +172   }
      +173 
      +174   @Test
      +175   void resolveReturnClassWithGenericsMapper() {
      +176     Class<?> mapper = TestMapper2.class;
      +177     {
      +178       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +179           Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper))
      +180               .collect(Collectors.toMap(Method::getName, x -> x)).get("findOne"));
      +181       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +182     }
      +183     {
      +184       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
      +185           Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper))
      +186               .collect(Collectors.toMap(Method::getName, x -> x)).get("findAll"));
      +187       Assertions.assertThat(type).isEqualTo(MyBean.class);
      +188     }
      +189   }
      +190 
      +191   @Test
      +192   void resolveParameterClassesSingleBean() {
      +193     Class<?> mapper = TestMapper3.class;
      +194     Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +195         ReflectionUtils.findMethod(mapper, "insertWithBean", MyBean.class));
      +196     Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +197   }
      +198 
      +199   @Test
      +200   void resolveParameterClassesMultiBean() {
      +201     Class<?> mapper = TestMapper3.class;
      +202     Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +203         ReflectionUtils.findMethod(mapper, "insertWithMultiBean", MyBeanKey.class, MyBean.class));
      +204     Assertions.assertThat(types).containsExactlyInAnyOrder(MyBeanKey.class, MyBean.class);
      +205   }
      +206 
      +207   @Test
      +208   void resolveParameterClassesWithBeanInMap() {
      +209     Class<?> mapper = TestMapper3.class;
      +210     {
      +211       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +212           ReflectionUtils.findMethod(mapper, "insertWithMap", Map.class));
      +213       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +214     }
      +215     {
      +216       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +217           ReflectionUtils.findMethod(mapper, "insertWithFixKeyMap", MyFixKeyMap.class));
      +218       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +219     }
      +220     {
      +221       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +222           ReflectionUtils.findMethod(mapper, "insertWithFixValueMap", MyFixValueMap.class));
      +223       Assertions.assertThat(types).containsExactlyInAnyOrder(Integer.class);
      +224     }
      +225   }
      +226 
      +227   @Test
      +228   void resolveParameterClassesWithBeanInCollection() {
      +229     Class<?> mapper = TestMapper3.class;
      +230     {
      +231       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +232           ReflectionUtils.findMethod(mapper, "insertWithBeanInList", List.class));
      +233       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +234     }
      +235     {
      +236       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +237           ReflectionUtils.findMethod(mapper, "insertWithBeanInCollection", Collection.class));
      +238       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +239     }
      +240     {
      +241       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +242           ReflectionUtils.findMethod(mapper, "insertWithBeanInIterable", Iterable.class));
      +243       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +244     }
      +245     {
      +246       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +247           ReflectionUtils.findMethod(mapper, "insertWithBeanInArray", MyBean[].class));
      +248       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +249     }
      +250   }
      +251 
      +252   @Test
      +253   void resolveParameterClassesWithWildcard() {
      +254     Class<?> mapper = TestMapper3.class;
      +255     {
      +256       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +257           ReflectionUtils.findMethod(mapper, "insertWithWildcardInList", List.class));
      +258       Assertions.assertThat(types).containsExactlyInAnyOrder(Object.class);
      +259     }
      +260     {
      +261       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
      +262           ReflectionUtils.findMethod(mapper, "insertWithGenericsWildcardInList", List.class));
      +263       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
      +264     }
      +265   }
      +266 
      +267   @SuppressWarnings("unused")
      +268   interface TestMapper1 {
      +269 
      +270     String findString();
      +271 
      +272     CharSequence findCharSequence();
      +273 
      +274     Number findNumber();
      +275 
      +276     Long findLong();
      +277 
      +278     int findInt();
      +279 
      +280     void insert();
      +281 
      +282     Void insertWithClassVoid();
      +283 
      +284     MyBean findSimpleBean();
      +285 
      +286     List<MyBean> findSimpleBeanList();
      +287 
      +288     Collection<MyBean> findSimpleBeanCollection();
      +289 
      +290     Iterable<MyBean> findSimpleBeanIterable();
      +291 
      +292     Map<String, MyBean> findSimpleBeanMap();
      +293 
      +294     ConcurrentMap<String, MyBean> findSimpleBeanConcurrentMap();
      +295 
      +296     MyBean[] findSimpleBeanArray();
      +297 
      +298     Optional<String> findStringWithOptional();
      +299 
      +300     Optional<MyBean> findSimpleBeanWithOptional();
      +301 
      +302     List<?> findSimpleWildcardList();
      +303 
      +304     <T extends MyBean> List<T> findSimpleGenericsWildcardList();
      +305 
      +306   }
      +307 
      +308   interface TestMapper2 extends BaseMapper<MyBean, MyBeanKey> {
      +309   }
      +310 
      +311   @SuppressWarnings("unused")
      +312   interface TestMapper3 {
      +313     void insertWithBean(MyBean bean);
      +314 
      +315     void insertWithBeanInList(List<MyBean> beans);
      +316 
      +317     void insertWithBeanInCollection(Collection<MyBean> beans);
      +318 
      +319     void insertWithBeanInIterable(Iterable<MyBean> beans);
      +320 
      +321     void insertWithBeanInArray(MyBean[] beans);
      +322 
      +323     void insertWithMultiBean(MyBeanKey key, MyBean bean);
      +324 
      +325     void insertWithMap(Map<String, MyBean> beans);
      +326 
      +327     void insertWithFixKeyMap(MyFixKeyMap<MyBean> beans);
      +328 
      +329     void insertWithFixValueMap(MyFixValueMap<Integer> beans);
      +330 
      +331     void insertWithWildcardInList(List<?> beans);
      +332 
      +333     <T extends MyBean> void insertWithGenericsWildcardInList(List<T> beans);
      +334   }
      +335 
      +336   @SuppressWarnings("unused")
      +337   interface BaseMapper<T, K> {
      +338     T findOne(K key);
      +339 
      +340     Collection<T> findAll();
      +341   }
      +342 
      +343   static class MyBean {
      +344 
      +345   }
      +346 
      +347   static class MyBeanKey {
      +348 
      +349   }
      +350 
      +351   static class MyFixKeyMap<T> extends HashMap<String, T> {
      +352 
      +353   }
      +354 
      +355   static class MyFixValueMap<K> extends HashMap<K, MyBean> {
      +356 
      +357   }
      +358 
      +359 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html b/ko/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html new file mode 100644 index 0000000..6a2a6ee --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html @@ -0,0 +1,353 @@ + + + +MyBatisResourcesScanTest xref + + + +
      +1   /*
      +2    *    Copyright 2022-2023 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import java.io.File;
      +19  import java.net.MalformedURLException;
      +20  import java.net.URL;
      +21  import java.net.URLClassLoader;
      +22  import java.util.Objects;
      +23  import java.util.Set;
      +24  import java.util.stream.Collectors;
      +25  import java.util.stream.Stream;
      +26  
      +27  import org.assertj.core.api.Assertions;
      +28  import org.junit.jupiter.api.Test;
      +29  import org.mybatis.spring.nativex.component.AbstractTypeHandler;
      +30  import org.mybatis.spring.nativex.component.BarService;
      +31  import org.mybatis.spring.nativex.component.BarTypeHandler;
      +32  import org.mybatis.spring.nativex.component.FooTypeHandler;
      +33  import org.mybatis.spring.nativex.component.TypeHandlers;
      +34  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
      +35  import org.mybatis.spring.nativex.entity.City;
      +36  import org.mybatis.spring.nativex.entity.Country;
      +37  import org.mybatis.spring.nativex.marker.StandardEntity;
      +38  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
      +39  import org.springframework.context.annotation.Configuration;
      +40  import org.springframework.nativex.hint.TypeAccess;
      +41  import org.springframework.util.ClassUtils;
      +42  
      +43  class MyBatisResourcesScanTest {
      +44  
      +45    @Test
      +46    void scanTypeAliases() {
      +47      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +48      context.registerBean(ConfigurationForScanTypeAliases.class);
      +49      context.refresh();
      +50      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +51      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class);
      +52      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
      +53      Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
      +54      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class);
      +55      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
      +56      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
      +57    }
      +58  
      +59    @Test
      +60    void scanTypeAliasesWithSupperType() {
      +61      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +62      context.registerBean(ConfigurationForScanTypeAliasesWithSupperType.class);
      +63      context.refresh();
      +64      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +65      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(Country.class);
      +66      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class);
      +67    }
      +68  
      +69    @Test
      +70    void scanTypeAliasesWithMultiPackage() {
      +71      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +72      context.registerBean(ConfigurationForScanTypeAliasesWithMultiPackage.class);
      +73      context.refresh();
      +74      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +75      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class,
      +76          BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class);
      +77      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
      +78      Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
      +79      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class,
      +80          BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class);
      +81      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
      +82      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
      +83    }
      +84  
      +85    @Test
      +86    void scanTypeHandler() {
      +87      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +88      context.registerBean(ConfigurationForScanTypeHandler.class);
      +89      context.refresh();
      +90      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +91      Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
      +92      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
      +93      Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
      +94          BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
      +95      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
      +96          BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
      +97      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
      +98      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
      +99    }
      +100 
      +101   @Test
      +102   void scanTypeHandlerWithMultiPackage() {
      +103     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +104     context.registerBean(ConfigurationForScanTypeHandlerWithMultiPackage.class);
      +105     context.refresh();
      +106     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +107     Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
      +108         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
      +109     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
      +110         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
      +111   }
      +112 
      +113   @Test
      +114   void scanMapperLocations() {
      +115     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +116     context.registerBean(ConfigurationForScanMapperLocations.class);
      +117     context.refresh();
      +118     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +119     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
      +120     Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
      +121         "mapper/sub1/FooMapper.xml");
      +122     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
      +123     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
      +124     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
      +125         "mapper/sub1/FooMapper.xml");
      +126     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
      +127   }
      +128 
      +129   @Test
      +130   void scanMapperLocationsWithMultiPattern() {
      +131     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +132     context.registerBean(ConfigurationForScanMapperLocationsWithMultiPattern.class);
      +133     context.refresh();
      +134     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +135     Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
      +136         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
      +137     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
      +138         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
      +139   }
      +140 
      +141   @Test
      +142   void scanReflectionType() {
      +143     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +144     context.registerBean(ConfigurationForScanReflectionType.class);
      +145     context.refresh();
      +146     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +147     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
      +148     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
      +149     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
      +150     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class);
      +151     Assertions.assertThat(holder.getResourceLocations()).isEmpty();
      +152     Assertions.assertThat(holder.getReflectionTypeAccesses()).containsExactlyInAnyOrder(TypeAccess.DECLARED_CLASSES);
      +153   }
      +154 
      +155   @Test
      +156   void scanReflectionTypeWithSupperType() {
      +157     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +158     context.registerBean(ConfigurationForScanReflectionTypeWithSuperType.class);
      +159     context.refresh();
      +160     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +161     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class);
      +162   }
      +163 
      +164   @Test
      +165   void scanReflectionTypeWithMultiPackage() {
      +166     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +167     context.registerBean(ConfigurationForScanReflectionTypeWithMultiPackage.class);
      +168     context.refresh();
      +169     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +170     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class,
      +171         BarService.class, BarTypeHandler.class, FooTypeHandler.class, TypeHandlers.class);
      +172   }
      +173 
      +174   @Test
      +175   void scanResourceLocations() {
      +176     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +177     context.registerBean(ConfigurationForScanResourceLocations.class);
      +178     context.refresh();
      +179     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +180     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
      +181     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
      +182     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
      +183     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
      +184     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
      +185         "mapper/sub1/FooMapper.xml");
      +186     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
      +187   }
      +188 
      +189   @Test
      +190   void scanResourceLocationsWithGradleBuildOutput() throws Exception {
      +191     String currentDir = Objects.requireNonNull(getClass().getResource("")).getPath();
      +192     String projectDir = currentDir.substring(0, currentDir.indexOf("/target/test-classes"));
      +193     SimulateGradleBuildResourcesURLClassLoader classLoader = new SimulateGradleBuildResourcesURLClassLoader(
      +194         projectDir + "/src/test/gradle_resources/", getClass().getClassLoader());
      +195     ClassUtils.overrideThreadContextClassLoader(classLoader);
      +196     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +197     context.registerBean(ConfigurationForScanResourceLocationsWithGradleOutputResources.class);
      +198     context.refresh();
      +199     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +200     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
      +201     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
      +202     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
      +203     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
      +204     Assertions.assertThat(holder.getResourceLocations())
      +205         .containsExactlyInAnyOrder("mapper/gradle_output/GradleOutputMapper.xml");
      +206     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
      +207   }
      +208 
      +209   @Test
      +210   void scanResourceLocationsWithMultiPattern() {
      +211     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +212     context.registerBean(ConfigurationForScanResourceLocationsWithMultiPattern.class);
      +213     context.refresh();
      +214     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
      +215     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
      +216         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
      +217   }
      +218 
      +219   @Test
      +220   void scanRepeat() {
      +221     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +222     context.registerBean(ConfigurationForRepeat.class);
      +223     context.refresh();
      +224     Set<MyBatisScannedResourcesHolder> list = Stream
      +225         .of(context.getBeanNamesForType(MyBatisScannedResourcesHolder.class))
      +226         .map(x -> context.getBean(x, MyBatisScannedResourcesHolder.class)).collect(Collectors.toSet());
      +227     Set<Class<?>> typeAliasesClasses = list.stream().flatMap(x -> x.getTypeAliasesClasses().stream())
      +228         .collect(Collectors.toSet());
      +229     Set<Class<?>> typeHandlerClasses = list.stream().flatMap(x -> x.getTypeHandlerClasses().stream())
      +230         .collect(Collectors.toSet());
      +231     Set<Class<?>> reflectionClasses = list.stream().flatMap(x -> x.getReflectionClasses().stream())
      +232         .collect(Collectors.toSet());
      +233     Set<String> mapperLocations = list.stream().flatMap(x -> x.getMapperLocations().stream())
      +234         .collect(Collectors.toSet());
      +235     Set<String> resourceLocations = list.stream().flatMap(x -> x.getResourceLocations().stream())
      +236         .collect(Collectors.toSet());
      +237     Assertions.assertThat(typeAliasesClasses).containsExactlyInAnyOrder(Country.class, City.class);
      +238     Assertions.assertThat(typeHandlerClasses).containsExactlyInAnyOrder(FooTypeHandler.class, BarTypeHandler.class,
      +239         TypeHandlers.InnerTypeHandler.class);
      +240     Assertions.assertThat(reflectionClasses).containsExactlyInAnyOrder(Country.class, City.class, FooTypeHandler.class,
      +241         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
      +242     Assertions.assertThat(mapperLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml",
      +243         "mapper/sub1/BarMapper.xml");
      +244     Assertions.assertThat(resourceLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml",
      +245         "mapper/sub2/AnyMapper.xml", "mapper/sub1/BarMapper.xml");
      +246   }
      +247 
      +248   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
      +249   @Configuration
      +250   static class ConfigurationForScanTypeAliases {
      +251   }
      +252 
      +253   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAliasesSupperType = StandardEntity.class)
      +254   @Configuration
      +255   static class ConfigurationForScanTypeAliasesWithSupperType {
      +256   }
      +257 
      +258   @MyBatisResourcesScan(typeAliasesPackages = { "org.mybatis.spring.nativex.entity",
      +259       "org.mybatis.spring.nativex.component" })
      +260   @Configuration
      +261   static class ConfigurationForScanTypeAliasesWithMultiPackage {
      +262   }
      +263 
      +264   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
      +265   @Configuration
      +266   static class ConfigurationForScanTypeHandler {
      +267   }
      +268 
      +269   @MyBatisResourcesScan(typeHandlerPackages = { "org.mybatis.spring.nativex.component",
      +270       "org.mybatis.spring.nativex.component2" })
      +271   @Configuration
      +272   static class ConfigurationForScanTypeHandlerWithMultiPackage {
      +273   }
      +274 
      +275   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
      +276   @Configuration
      +277   static class ConfigurationForScanMapperLocations {
      +278   }
      +279 
      +280   @MyBatisResourcesScan(mapperLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" })
      +281   @Configuration
      +282   static class ConfigurationForScanMapperLocationsWithMultiPattern {
      +283   }
      +284 
      +285   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", typeAccesses = TypeAccess.DECLARED_CLASSES)
      +286   @Configuration
      +287   static class ConfigurationForScanReflectionType {
      +288   }
      +289 
      +290   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", reflectionTypeSupperType = StandardEntity.class, typeAccesses = TypeAccess.DECLARED_CLASSES)
      +291   @Configuration
      +292   static class ConfigurationForScanReflectionTypeWithSuperType {
      +293   }
      +294 
      +295   @MyBatisResourcesScan(reflectionTypePackages = { "org.mybatis.spring.nativex.entity",
      +296       "org.mybatis.spring.nativex.component" })
      +297   @Configuration
      +298   static class ConfigurationForScanReflectionTypeWithMultiPackage {
      +299   }
      +300 
      +301   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub1/*.*")
      +302   @Configuration
      +303   static class ConfigurationForScanResourceLocations {
      +304   }
      +305 
      +306   @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/gradle_output/*.*" })
      +307   @Configuration
      +308   static class ConfigurationForScanResourceLocationsWithGradleOutputResources {
      +309   }
      +310 
      +311   @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" })
      +312   @Configuration
      +313   static class ConfigurationForScanResourceLocationsWithMultiPattern {
      +314   }
      +315 
      +316   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
      +317   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
      +318   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
      +319   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2")
      +320   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*")
      +321   @Configuration
      +322   static class ConfigurationForRepeat {
      +323 
      +324   }
      +325 
      +326   private static class SimulateGradleBuildResourcesURLClassLoader extends URLClassLoader {
      +327 
      +328     public SimulateGradleBuildResourcesURLClassLoader(String path, ClassLoader classLoader)
      +329         throws MalformedURLException {
      +330       super(new URL[] { new File(path).toURI().toURL() }, classLoader);
      +331     }
      +332 
      +333     @Override
      +334     public void addURL(URL url) {
      +335       super.addURL(url);
      +336     }
      +337 
      +338   }
      +339 
      +340 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html b/ko/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html new file mode 100644 index 0000000..d6b06ad --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html @@ -0,0 +1,158 @@ + + + +MyBatisScannedResourcesNativeConfigurationProcessorTest xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.*;
      +19  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
      +20  
      +21  import java.util.Map;
      +22  import java.util.Set;
      +23  import java.util.stream.Collectors;
      +24  
      +25  import org.assertj.core.api.Assertions;
      +26  import org.junit.jupiter.api.Test;
      +27  import org.mybatis.spring.nativex.component.BarTypeHandler;
      +28  import org.mybatis.spring.nativex.component.FooTypeHandler;
      +29  import org.mybatis.spring.nativex.component.TypeHandlers;
      +30  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
      +31  import org.mybatis.spring.nativex.entity.City;
      +32  import org.mybatis.spring.nativex.entity.Country;
      +33  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry;
      +34  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
      +35  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
      +36  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
      +37  import org.springframework.context.annotation.Configuration;
      +38  import org.springframework.nativex.hint.TypeAccess;
      +39  
      +40  class MyBatisScannedResourcesNativeConfigurationProcessorTest {
      +41  
      +42    private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
      +43        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
      +44        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
      +45  
      +46    @Test
      +47    void empty() {
      +48      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +49      context.refresh();
      +50      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
      +51      // reflection hint
      +52      {
      +53        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
      +54            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
      +55        Assertions.assertThat(entries).isEmpty();
      +56      }
      +57      // resource hint
      +58      {
      +59        Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
      +60        Assertions.assertThat(resources).isEmpty();
      +61      }
      +62    }
      +63  
      +64    @Test
      +65    void one() {
      +66      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +67      context.registerBean(ConfigurationForOne.class);
      +68      context.refresh();
      +69      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
      +70      // reflection hint
      +71      {
      +72        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
      +73            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
      +74        Assertions.assertThat(entries).hasSize(2);
      +75        Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
      +76            .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
      +77        Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
      +78            .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
      +79      }
      +80      // resource hint
      +81      {
      +82        Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
      +83        Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
      +84            "mapper/sub1/FooMapper.xml");
      +85      }
      +86    }
      +87  
      +88    @Test
      +89    void multi() {
      +90      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
      +91      context.registerBean(ConfigurationForMulti.class);
      +92      context.refresh();
      +93      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
      +94      // reflection hint
      +95      {
      +96        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
      +97            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
      +98        Assertions.assertThat(entries).hasSize(6);
      +99        Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
      +100           .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
      +101       Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
      +102           .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
      +103       Assertions.assertThat(entries.get(FooTypeHandler.class))
      +104           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
      +105       Assertions.assertThat(entries.get(BarTypeHandler.class))
      +106           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
      +107       Assertions.assertThat(entries.get(AnyTypeHandler.class))
      +108           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
      +109       Assertions.assertThat(entries.get(TypeHandlers.InnerTypeHandler.class))
      +110           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
      +111     }
      +112     // resource hint
      +113     {
      +114       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
      +115       Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
      +116           "mapper/sub1/FooMapper.xml", "mapper/sub2/AnyMapper.xml");
      +117     }
      +118 
      +119   }
      +120 
      +121   private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) {
      +122     NativeConfigurationRegistry registry = new NativeConfigurationRegistry();
      +123     new MyBatisScannedResourcesNativeConfigurationProcessor().process(beanFactory, registry);
      +124     return registry;
      +125   }
      +126 
      +127   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", mapperLocationPatterns = "mapper/sub1/*.*", typeAccesses = {
      +128       TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS })
      +129   @Configuration
      +130   static class ConfigurationForOne {
      +131 
      +132   }
      +133 
      +134   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAccesses = {
      +135       TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS })
      +136   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
      +137   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
      +138   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2")
      +139   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*")
      +140   @Configuration
      +141   static class ConfigurationForMulti {
      +142 
      +143   }
      +144 
      +145 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html b/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html new file mode 100644 index 0000000..05e0736 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html @@ -0,0 +1,181 @@ + + + +MyBatisSpringNativeAutoConfigurationTest xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.autoconfigure;
      +17  
      +18  import java.util.stream.Collectors;
      +19  
      +20  import org.apache.ibatis.session.SqlSessionFactory;
      +21  import org.assertj.core.api.Assertions;
      +22  import org.junit.jupiter.api.AfterEach;
      +23  import org.junit.jupiter.api.BeforeEach;
      +24  import org.junit.jupiter.api.Test;
      +25  import org.mybatis.spring.nativex.MyBatisResourcesScan;
      +26  import org.mybatis.spring.nativex.component.AbstractTypeHandler;
      +27  import org.mybatis.spring.nativex.component.BarService;
      +28  import org.mybatis.spring.nativex.component.BarTypeHandler;
      +29  import org.mybatis.spring.nativex.component.FooTypeHandler;
      +30  import org.mybatis.spring.nativex.component.TypeHandlers;
      +31  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
      +32  import org.mybatis.spring.nativex.entity.City;
      +33  import org.mybatis.spring.nativex.entity.Country;
      +34  import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
      +35  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
      +36  import org.springframework.context.annotation.Configuration;
      +37  
      +38  class MyBatisSpringNativeAutoConfigurationTest {
      +39  
      +40    private AnnotationConfigApplicationContext context;
      +41  
      +42    @BeforeEach
      +43    void init() {
      +44      this.context = new AnnotationConfigApplicationContext();
      +45    }
      +46  
      +47    @AfterEach
      +48    void closeContext() {
      +49      if (this.context != null) {
      +50        this.context.close();
      +51      }
      +52    }
      +53  
      +54    @Test
      +55    void empty() {
      +56      this.context.register(EmptyConfiguration.class);
      +57      this.context.refresh();
      +58      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
      +59      Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(80);
      +60      Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(40);
      +61      Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty();
      +62    }
      +63  
      +64    @Test
      +65    void single() {
      +66      this.context.register(SingleConfiguration.class);
      +67      this.context.refresh();
      +68      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
      +69      {
      +70        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82);
      +71        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city"))
      +72            .isEqualTo(City.class);
      +73        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country"))
      +74            .isEqualTo(Country.class);
      +75      }
      +76      {
      +77        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43);
      +78        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +79            .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +80        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +81            .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +82        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +83            .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +84        Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder(
      +85            "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select");
      +86      }
      +87    }
      +88  
      +89    @Test
      +90    void singleWithoutMapperLocation() {
      +91      this.context.register(SingleConfigurationWithoutMapperLocation.class);
      +92      this.context.refresh();
      +93      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
      +94      Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82);
      +95      Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43);
      +96      Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty();
      +97    }
      +98  
      +99    @Test
      +100   void multi() {
      +101     this.context.register(MultiConfiguration.class);
      +102     this.context.refresh();
      +103     SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
      +104     {
      +105       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(87);
      +106       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city"))
      +107           .isEqualTo(City.class);
      +108       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country"))
      +109           .isEqualTo(Country.class);
      +110       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("abstracttypehandler"))
      +111           .isEqualTo(AbstractTypeHandler.class);
      +112       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("barservice"))
      +113           .isEqualTo(BarService.class);
      +114       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("bartypehandler"))
      +115           .isEqualTo(BarTypeHandler.class);
      +116       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("footypehandler"))
      +117           .isEqualTo(FooTypeHandler.class);
      +118       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("typehandlers"))
      +119           .isEqualTo(TypeHandlers.class);
      +120     }
      +121     {
      +122       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(44);
      +123       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +124           .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +125       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +126           .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +127       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +128           .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +129       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
      +130           .filter(AnyTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
      +131       Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder(
      +132           "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select");
      +133     }
      +134   }
      +135 
      +136   @EnableAutoConfiguration
      +137   @Configuration
      +138   static class EmptyConfiguration {
      +139 
      +140   }
      +141 
      +142   @EnableAutoConfiguration
      +143   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component", mapperLocationPatterns = "mapper/**/*.xml")
      +144   @Configuration
      +145   static class SingleConfiguration {
      +146 
      +147   }
      +148 
      +149   @EnableAutoConfiguration
      +150   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component")
      +151   @Configuration
      +152   static class SingleConfigurationWithoutMapperLocation {
      +153 
      +154   }
      +155 
      +156   @EnableAutoConfiguration
      +157   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
      +158   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.component")
      +159   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
      +160   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component2")
      +161   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.xml")
      +162   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub2/*.xml")
      +163   @Configuration
      +164   static class MultiConfiguration {
      +165 
      +166   }
      +167 
      +168 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html new file mode 100644 index 0000000..eec6575 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + +

      org.mybatis.spring.nativex.autoconfigure

      + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..7a501f5 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.autoconfigure

      +
      + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html b/ko/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html new file mode 100644 index 0000000..eb323a1 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html @@ -0,0 +1,34 @@ + + + +AbstractTypeHandler xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  import org.apache.ibatis.type.BaseTypeHandler;
      +19  
      +20  public abstract class AbstractTypeHandler<T> extends BaseTypeHandler<T> {
      +21  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/BarService.html b/ko/xref-test/org/mybatis/spring/nativex/component/BarService.html new file mode 100644 index 0000000..6fda8ff --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/BarService.html @@ -0,0 +1,32 @@ + + + +BarService xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  public class BarService {
      +19  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html b/ko/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html new file mode 100644 index 0000000..3a1b220 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html @@ -0,0 +1,59 @@ + + + +BarTypeHandler xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  import java.sql.CallableStatement;
      +19  import java.sql.PreparedStatement;
      +20  import java.sql.ResultSet;
      +21  
      +22  import org.apache.ibatis.type.BaseTypeHandler;
      +23  import org.apache.ibatis.type.JdbcType;
      +24  
      +25  public class BarTypeHandler extends BaseTypeHandler<Integer> {
      +26  
      +27    @Override
      +28    public void setNonNullParameter(PreparedStatement ps, int i, Integer parameter, JdbcType jdbcType) {
      +29    }
      +30  
      +31    @Override
      +32    public Integer getNullableResult(ResultSet rs, String columnName) {
      +33      return null;
      +34    }
      +35  
      +36    @Override
      +37    public Integer getNullableResult(ResultSet rs, int columnIndex) {
      +38      return null;
      +39    }
      +40  
      +41    @Override
      +42    public Integer getNullableResult(CallableStatement cs, int columnIndex) {
      +43      return null;
      +44    }
      +45  
      +46  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html b/ko/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html new file mode 100644 index 0000000..b22ad49 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html @@ -0,0 +1,59 @@ + + + +FooTypeHandler xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  import java.sql.CallableStatement;
      +19  import java.sql.PreparedStatement;
      +20  import java.sql.ResultSet;
      +21  
      +22  import org.apache.ibatis.type.BaseTypeHandler;
      +23  import org.apache.ibatis.type.JdbcType;
      +24  
      +25  public class FooTypeHandler extends BaseTypeHandler<String> {
      +26  
      +27    @Override
      +28    public void setNonNullParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) {
      +29    }
      +30  
      +31    @Override
      +32    public String getNullableResult(ResultSet rs, String columnName) {
      +33      return null;
      +34    }
      +35  
      +36    @Override
      +37    public String getNullableResult(ResultSet rs, int columnIndex) {
      +38      return null;
      +39    }
      +40  
      +41    @Override
      +42    public String getNullableResult(CallableStatement cs, int columnIndex) {
      +43      return null;
      +44    }
      +45  
      +46  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html b/ko/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html new file mode 100644 index 0000000..95afba0 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html @@ -0,0 +1,33 @@ + + + +MyAnnotation xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  @SuppressWarnings("unused")
      +19  public @interface MyAnnotation {
      +20  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html b/ko/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html new file mode 100644 index 0000000..a184685 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html @@ -0,0 +1,35 @@ + + + +MyTypeHandlerInterface xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  import org.apache.ibatis.type.TypeHandler;
      +19  
      +20  @SuppressWarnings("unused")
      +21  public interface MyTypeHandlerInterface<T> extends TypeHandler<T> {
      +22  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html b/ko/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html new file mode 100644 index 0000000..f62bcf2 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html @@ -0,0 +1,70 @@ + + + +TypeHandlers xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component;
      +17  
      +18  import java.sql.CallableStatement;
      +19  import java.sql.PreparedStatement;
      +20  import java.sql.ResultSet;
      +21  
      +22  import org.apache.ibatis.type.JdbcType;
      +23  import org.apache.ibatis.type.TypeHandler;
      +24  
      +25  public class TypeHandlers {
      +26  
      +27    @SuppressWarnings("unused")
      +28    BarTypeHandler anonymous = new BarTypeHandler() {
      +29      @Override
      +30      public String toString() {
      +31        return super.toString();
      +32      }
      +33    };
      +34  
      +35    public static class InnerTypeHandler implements TypeHandler<String> {
      +36  
      +37      @Override
      +38      public void setParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) {
      +39  
      +40      }
      +41  
      +42      @Override
      +43      public String getResult(ResultSet rs, String columnName) {
      +44        return null;
      +45      }
      +46  
      +47      @Override
      +48      public String getResult(ResultSet rs, int columnIndex) {
      +49        return null;
      +50      }
      +51  
      +52      @Override
      +53      public String getResult(CallableStatement cs, int columnIndex) {
      +54        return null;
      +55      }
      +56    }
      +57  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/component/package-frame.html new file mode 100644 index 0000000..d02d118 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/package-frame.html @@ -0,0 +1,42 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component + + + +

      org.mybatis.spring.nativex.component

      + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/component/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/component/package-summary.html new file mode 100644 index 0000000..ab467b5 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component/package-summary.html @@ -0,0 +1,142 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.component

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html b/ko/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html new file mode 100644 index 0000000..8e4e9fe --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html @@ -0,0 +1,60 @@ + + + +AnyTypeHandler xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.component2;
      +17  
      +18  import java.math.BigDecimal;
      +19  import java.sql.CallableStatement;
      +20  import java.sql.PreparedStatement;
      +21  import java.sql.ResultSet;
      +22  
      +23  import org.apache.ibatis.type.BaseTypeHandler;
      +24  import org.apache.ibatis.type.JdbcType;
      +25  
      +26  public class AnyTypeHandler extends BaseTypeHandler<BigDecimal> {
      +27  
      +28    @Override
      +29    public void setNonNullParameter(PreparedStatement ps, int i, BigDecimal parameter, JdbcType jdbcType) {
      +30    }
      +31  
      +32    @Override
      +33    public BigDecimal getNullableResult(ResultSet rs, String columnName) {
      +34      return null;
      +35    }
      +36  
      +37    @Override
      +38    public BigDecimal getNullableResult(ResultSet rs, int columnIndex) {
      +39      return null;
      +40    }
      +41  
      +42    @Override
      +43    public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) {
      +44      return null;
      +45    }
      +46  
      +47  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/component2/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/component2/package-frame.html new file mode 100644 index 0000000..beecf34 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component2/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component2 + + + +

      org.mybatis.spring.nativex.component2

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/component2/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/component2/package-summary.html new file mode 100644 index 0000000..de4f155 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/component2/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component2 + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.component2

      +
      +
      +
        +
      • + + + + + + + + + + + + +
        Class Summary 
        Class
        + AnyTypeHandler +
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/entity/City.html b/ko/xref-test/org/mybatis/spring/nativex/entity/City.html new file mode 100644 index 0000000..6667802 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/entity/City.html @@ -0,0 +1,39 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.entity;
      +17  
      +18  public class City {
      +19    @SuppressWarnings("unused")
      +20    City anonymous = new City() {
      +21      @Override
      +22      public String toString() {
      +23        return super.toString();
      +24      }
      +25    };
      +26  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/entity/Country.html b/ko/xref-test/org/mybatis/spring/nativex/entity/Country.html new file mode 100644 index 0000000..376393b --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/entity/Country.html @@ -0,0 +1,34 @@ + + + +Country xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.entity;
      +17  
      +18  import org.mybatis.spring.nativex.marker.StandardEntity;
      +19  
      +20  public class Country extends StandardEntity {
      +21  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html b/ko/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html new file mode 100644 index 0000000..34f2f74 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html @@ -0,0 +1,33 @@ + + + +EntityMarkerAnnotation xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.entity;
      +17  
      +18  @SuppressWarnings("unused")
      +19  public @interface EntityMarkerAnnotation {
      +20  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html b/ko/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html new file mode 100644 index 0000000..f84bd0c --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html @@ -0,0 +1,38 @@ + + + +EntityMarkerInterface xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.entity;
      +17  
      +18  @SuppressWarnings("unused")
      +19  public interface EntityMarkerInterface {
      +20  
      +21    class MemberEntity {
      +22  
      +23    }
      +24  
      +25  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/entity/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/entity/package-frame.html new file mode 100644 index 0000000..7fd8b29 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/entity/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.entity + + + +

      org.mybatis.spring.nativex.entity

      + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/entity/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/entity/package-summary.html new file mode 100644 index 0000000..68ad0dd --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/entity/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.entity + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.entity

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html b/ko/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html new file mode 100644 index 0000000..7421823 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html @@ -0,0 +1,32 @@ + + + +Sample2Mapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.mapper;
      +17  
      +18  public class Sample2Mapper {
      +19  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html b/ko/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html new file mode 100644 index 0000000..f882562 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html @@ -0,0 +1,32 @@ + + + +Sample3Mapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.mapper;
      +17  
      +18  public class Sample3Mapper {
      +19  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html b/ko/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html new file mode 100644 index 0000000..ba0f57a --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html @@ -0,0 +1,120 @@ + + + +SampleMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.mapper;
      +17  
      +18  import java.math.BigDecimal;
      +19  import java.util.Collection;
      +20  import java.util.Collections;
      +21  import java.util.Date;
      +22  
      +23  import org.apache.ibatis.annotations.InsertProvider;
      +24  import org.apache.ibatis.annotations.SelectProvider;
      +25  
      +26  public interface SampleMapper {
      +27  
      +28    Sample find(SampleParam param);
      +29  
      +30    default Collection<Sample2> find(Collection<Sample2Param> params) {
      +31      return Collections.emptyList();
      +32    }
      +33  
      +34    @SelectProvider(SelectProviderClass1.class)
      +35    String select1();
      +36  
      +37    @SelectProvider(type = SelectProviderClass2.class)
      +38    BigDecimal select2();
      +39  
      +40    @InsertProvider(InsertProviderClass1.class)
      +41    void insert1();
      +42  
      +43    @InsertProvider(type = InsertProviderClass2.class)
      +44    boolean insert2();
      +45  
      +46    @InsertProvider(UpdateProviderClass1.class)
      +47    Long update1();
      +48  
      +49    @InsertProvider(type = UpdateProviderClass2.class)
      +50    Date update2();
      +51  
      +52    @InsertProvider(DeleteProviderClass1.class)
      +53    Short delete1();
      +54  
      +55    @InsertProvider(type = DeleteProviderClass2.class)
      +56    Object delete2();
      +57  
      +58    int count();
      +59  
      +60    class SampleParam {
      +61  
      +62    }
      +63  
      +64    class Sample {
      +65  
      +66    }
      +67  
      +68    class Sample2Param {
      +69  
      +70    }
      +71  
      +72    class Sample2 {
      +73  
      +74    }
      +75  
      +76    class SelectProviderClass1 {
      +77  
      +78    }
      +79  
      +80    class SelectProviderClass2 {
      +81  
      +82    }
      +83  
      +84    class InsertProviderClass1 {
      +85  
      +86    }
      +87  
      +88    class InsertProviderClass2 {
      +89  
      +90    }
      +91  
      +92    class UpdateProviderClass1 {
      +93  
      +94    }
      +95  
      +96    class UpdateProviderClass2 {
      +97  
      +98    }
      +99  
      +100   class DeleteProviderClass1 {
      +101 
      +102   }
      +103 
      +104   class DeleteProviderClass2 {
      +105 
      +106   }
      +107 }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html new file mode 100644 index 0000000..f1c7dee --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html @@ -0,0 +1,63 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.mapper + + + +

      org.mybatis.spring.nativex.mapper

      + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html new file mode 100644 index 0000000..326e6ee --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html @@ -0,0 +1,177 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.mapper + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.mapper

      +
      + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html b/ko/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html new file mode 100644 index 0000000..94fab8c --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html @@ -0,0 +1,32 @@ + + + +StandardEntity xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.marker;
      +17  
      +18  public class StandardEntity {
      +19  }
      +
      +
      + + + diff --git a/ko/xref-test/org/mybatis/spring/nativex/marker/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/marker/package-frame.html new file mode 100644 index 0000000..b64ede8 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/marker/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.marker + + + +

      org.mybatis.spring.nativex.marker

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/marker/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/marker/package-summary.html new file mode 100644 index 0000000..150f7ab --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/marker/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.marker + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.marker

      +
      +
      +
        +
      • + + + + + + + + + + + + +
        Class Summary 
        Class
        + StandardEntity +
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/package-frame.html b/ko/xref-test/org/mybatis/spring/nativex/package-frame.html new file mode 100644 index 0000000..356fd92 --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/package-frame.html @@ -0,0 +1,78 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + +

      org.mybatis.spring.nativex

      + + + \ No newline at end of file diff --git a/ko/xref-test/org/mybatis/spring/nativex/package-summary.html b/ko/xref-test/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..28db8bc --- /dev/null +++ b/ko/xref-test/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,202 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex

      +
      + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/overview-frame.html b/ko/xref-test/overview-frame.html new file mode 100644 index 0000000..bfbae57 --- /dev/null +++ b/ko/xref-test/overview-frame.html @@ -0,0 +1,42 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + +

      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference

      + + +

       

      + + + diff --git a/ko/xref-test/overview-summary.html b/ko/xref-test/overview-summary.html new file mode 100644 index 0000000..de9e10c --- /dev/null +++ b/ko/xref-test/overview-summary.html @@ -0,0 +1,122 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference

      +
      + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref-test/stylesheet.css b/ko/xref-test/stylesheet.css new file mode 100644 index 0000000..9e10f29 --- /dev/null +++ b/ko/xref-test/stylesheet.css @@ -0,0 +1,626 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} + +/* JXR style sheet */ +a.jxr_linenumber:link { + color: #00f; +} + +a.jxr_linenumber:visited { + color: #00a; +} + +a.jxr_linenumber:active, a.jxr_linenumber:hover { + color: #f30 !important; +} + +em.comment { + color: #390; +} + +.string { + color: #009; +} + +#overview { + padding: 2px; + font-size: 90%; + font-family: Helvetica, Arial, sans-serif; +} + +hr { + color: #000; +} + +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} + diff --git a/ko/xref/allclasses-frame.html b/ko/xref/allclasses-frame.html new file mode 100644 index 0000000..6c06988 --- /dev/null +++ b/ko/xref/allclasses-frame.html @@ -0,0 +1,17 @@ + + + + + + + All Classes + + + +

      All Classes

      +
      +
        +
      +
      + + diff --git a/ko/xref/index.html b/ko/xref/index.html new file mode 100644 index 0000000..2896d04 --- /dev/null +++ b/ko/xref/index.html @@ -0,0 +1,75 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html b/ko/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..0eac1fa --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,121 @@ + + + +MyBatisCoreNativeConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  
      +27  import org.apache.ibatis.cache.decorators.FifoCache;
      +28  import org.apache.ibatis.cache.decorators.LruCache;
      +29  import org.apache.ibatis.cache.decorators.SoftCache;
      +30  import org.apache.ibatis.cache.decorators.WeakCache;
      +31  import org.apache.ibatis.cache.impl.PerpetualCache;
      +32  import org.apache.ibatis.javassist.util.proxy.ProxyFactory;
      +33  import org.apache.ibatis.javassist.util.proxy.RuntimeSupport;
      +34  import org.apache.ibatis.logging.Log;
      +35  import org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl;
      +36  import org.apache.ibatis.logging.jdk14.Jdk14LoggingImpl;
      +37  import org.apache.ibatis.logging.log4j2.Log4j2Impl;
      +38  import org.apache.ibatis.logging.nologging.NoLoggingImpl;
      +39  import org.apache.ibatis.logging.slf4j.Slf4jImpl;
      +40  import org.apache.ibatis.logging.stdout.StdOutImpl;
      +41  import org.apache.ibatis.scripting.defaults.RawLanguageDriver;
      +42  import org.apache.ibatis.scripting.xmltags.XMLLanguageDriver;
      +43  import org.apache.ibatis.session.SqlSessionFactory;
      +44  import org.springframework.nativex.hint.InitializationHint;
      +45  import org.springframework.nativex.hint.InitializationTime;
      +46  import org.springframework.nativex.hint.NativeHint;
      +47  import org.springframework.nativex.hint.ResourceHint;
      +48  import org.springframework.nativex.hint.TypeHint;
      +49  import org.springframework.nativex.type.NativeConfiguration;
      +50  
      +51  /**
      +52   * Registers hints to make a MyBatis Core components work in a Spring Native context.
      +53   *
      +54   * @author Kazuki Shimizu
      +55   * @author Josh Long
      +56   *
      +57   * @see MyBatisMapperNativeConfigurationProcessor
      +58   */
      +59  // @formatter:off
      +60  @NativeHint(
      +61      trigger = SqlSessionFactory.class,
      +62      initialization = @InitializationHint(
      +63          initTime = InitializationTime.BUILD,
      +64          types = org.apache.ibatis.type.JdbcType.class
      +65      ),
      +66      options = "--initialize-at-build-time=org.apache.ibatis.type.JdbcType",
      +67      resources = @ResourceHint(
      +68          patterns = {
      +69              "org/apache/ibatis/builder/xml/.*.dtd",
      +70              "org/apache/ibatis/builder/xml/.*.xsd"
      +71          }
      +72      )
      +73  )
      +74  @TypeHint(
      +75      types = {
      +76          RawLanguageDriver.class,
      +77          XMLLanguageDriver.class,
      +78          RuntimeSupport.class,
      +79          ProxyFactory.class,
      +80          Slf4jImpl.class,
      +81          Log.class,
      +82          JakartaCommonsLoggingImpl.class,
      +83          Log4j2Impl.class,
      +84          Jdk14LoggingImpl.class,
      +85          StdOutImpl.class,
      +86          NoLoggingImpl.class,
      +87          SqlSessionFactory.class,
      +88          PerpetualCache.class,
      +89          FifoCache.class,
      +90          LruCache.class,
      +91          SoftCache.class,
      +92          WeakCache.class
      +93      },
      +94      typeNames = "org.apache.ibatis.logging.log4j.Log4jImpl",
      +95      access = {
      +96          PUBLIC_CONSTRUCTORS,
      +97          PUBLIC_CLASSES,
      +98          PUBLIC_FIELDS,
      +99          PUBLIC_METHODS,
      +100         DECLARED_CLASSES,
      +101         DECLARED_CONSTRUCTORS,
      +102         DECLARED_FIELDS,
      +103         DECLARED_METHODS
      +104     }
      +105 )
      +106 // @formatter:on
      +107 public class MyBatisCoreNativeConfiguration implements NativeConfiguration {
      +108 }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html b/ko/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..1367c18 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,85 @@ + + + +MyBatisDynamicSqlNativeConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  
      +27  import org.mybatis.dynamic.sql.delete.render.DefaultDeleteStatementProvider;
      +28  import org.mybatis.dynamic.sql.insert.render.DefaultGeneralInsertStatementProvider;
      +29  import org.mybatis.dynamic.sql.insert.render.DefaultInsertStatementProvider;
      +30  import org.mybatis.dynamic.sql.insert.render.DefaultMultiRowInsertStatementProvider;
      +31  import org.mybatis.dynamic.sql.select.render.DefaultSelectStatementProvider;
      +32  import org.mybatis.dynamic.sql.update.render.DefaultUpdateStatementProvider;
      +33  import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
      +34  import org.mybatis.dynamic.sql.util.springbatch.SpringBatchProviderAdapter;
      +35  import org.springframework.nativex.hint.NativeHint;
      +36  import org.springframework.nativex.hint.TypeHint;
      +37  import org.springframework.nativex.type.NativeConfiguration;
      +38  
      +39  /**
      +40   * Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
      +41   *
      +42   * @author Kazuki Shimizu
      +43   */
      +44  // @formatter:off
      +45  @NativeHint(
      +46      trigger = SqlProviderAdapter.class
      +47  )
      +48  @TypeHint(
      +49      types = {
      +50          SqlProviderAdapter.class,
      +51          SpringBatchProviderAdapter.class,
      +52          DefaultDeleteStatementProvider.class,
      +53          DefaultGeneralInsertStatementProvider.class,
      +54          DefaultInsertStatementProvider.class,
      +55          DefaultMultiRowInsertStatementProvider.class,
      +56          DefaultSelectStatementProvider.class,
      +57          DefaultUpdateStatementProvider.class
      +58      },
      +59      access = {
      +60          PUBLIC_CONSTRUCTORS,
      +61          PUBLIC_CLASSES,
      +62          PUBLIC_FIELDS,
      +63          PUBLIC_METHODS,
      +64          DECLARED_CLASSES,
      +65          DECLARED_CONSTRUCTORS,
      +66          DECLARED_FIELDS,
      +67          DECLARED_METHODS
      +68      }
      +69  )
      +70  // @formatter:on
      +71  public class MyBatisDynamicSqlNativeConfiguration implements NativeConfiguration {
      +72  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html b/ko/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..5035bf9 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,83 @@ + + + +MyBatisFreeMarkerNativeConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  
      +27  import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver;
      +28  import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig;
      +29  import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider;
      +30  import org.springframework.nativex.hint.NativeHint;
      +31  import org.springframework.nativex.hint.ResourceHint;
      +32  import org.springframework.nativex.hint.TypeHint;
      +33  import org.springframework.nativex.type.NativeConfiguration;
      +34  
      +35  /**
      +36   * Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
      +37   *
      +38   * @author Kazuki Shimizu
      +39   */
      +40  // @formatter:off
      +41  @NativeHint(
      +42      trigger = FreeMarkerLanguageDriver.class,
      +43      resources = @ResourceHint(
      +44          patterns = {
      +45              "mybatis-freemarker.properties",
      +46              "freemarker/version.properties",
      +47              "freemarker/ext/beans/DefaultMemberAccessPolicy-rules"
      +48          }
      +49      )
      +50  )
      +51  @TypeHint(
      +52      types = {
      +53          FreeMarkerLanguageDriver.class,
      +54          FreeMarkerLanguageDriverConfig.class,
      +55          TemplateFilePathProvider.class
      +56      },
      +57      access = {
      +58          PUBLIC_CONSTRUCTORS,
      +59          PUBLIC_CLASSES,
      +60          PUBLIC_FIELDS,
      +61          PUBLIC_METHODS,
      +62          DECLARED_CLASSES,
      +63          DECLARED_CONSTRUCTORS,
      +64          DECLARED_FIELDS,
      +65          DECLARED_METHODS
      +66      }
      +67  )
      +68  // @formatter:on
      +69  public class MyBatisFreeMarkerNativeConfiguration implements NativeConfiguration {
      +70  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html b/ko/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html new file mode 100644 index 0000000..0be4f4d --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html @@ -0,0 +1,91 @@ + + + +MyBatisMapperFactoryBeanPostProcessor xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import org.apache.commons.logging.Log;
      +19  import org.apache.commons.logging.LogFactory;
      +20  import org.mybatis.spring.mapper.MapperFactoryBean;
      +21  import org.springframework.beans.factory.BeanFactory;
      +22  import org.springframework.beans.factory.BeanFactoryAware;
      +23  import org.springframework.beans.factory.config.ConfigurableBeanFactory;
      +24  import org.springframework.beans.factory.support.RootBeanDefinition;
      +25  import org.springframework.context.annotation.BeanDefinitionPostProcessor;
      +26  import org.springframework.core.ResolvableType;
      +27  import org.springframework.util.ClassUtils;
      +28  
      +29  /**
      +30   * The {@code BeanDefinitionPostProcessor} for customizing a {@code MapperFactoryBean}.
      +31   *
      +32   * @author Stéphane Nicoll
      +33   * @author Kazuki Shimizu
      +34   */
      +35  class MyBatisMapperFactoryBeanPostProcessor implements BeanDefinitionPostProcessor, BeanFactoryAware {
      +36  
      +37    private static final Log LOG = LogFactory.getLog(MyBatisMapperFactoryBeanPostProcessor.class);
      +38  
      +39    private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean";
      +40  
      +41    private ConfigurableBeanFactory beanFactory;
      +42  
      +43    @Override
      +44    public void setBeanFactory(BeanFactory beanFactory) {
      +45      this.beanFactory = (ConfigurableBeanFactory) beanFactory;
      +46    }
      +47  
      +48    @Override
      +49    public void postProcessBeanDefinition(String beanName, RootBeanDefinition beanDefinition) {
      +50      if (ClassUtils.isPresent(MAPPER_FACTORY_BEAN, this.beanFactory.getBeanClassLoader())) {
      +51        resolveMapperFactoryBeanTypeIfNecessary(beanDefinition);
      +52      }
      +53    }
      +54  
      +55    private void resolveMapperFactoryBeanTypeIfNecessary(RootBeanDefinition beanDefinition) {
      +56      if (!beanDefinition.hasBeanClass() || !MapperFactoryBean.class.isAssignableFrom(beanDefinition.getBeanClass())) {
      +57        return;
      +58      }
      +59      if (beanDefinition.getResolvableType().hasUnresolvableGenerics()) {
      +60        Class<?> mapperInterface = getMapperInterface(beanDefinition);
      +61        if (mapperInterface != null) {
      +62          // Exposes a generic type information to context for prevent early initializing
      +63          beanDefinition
      +64              .setTargetType(ResolvableType.forClassWithGenerics(beanDefinition.getBeanClass(), mapperInterface));
      +65        }
      +66      }
      +67    }
      +68  
      +69    private Class<?> getMapperInterface(RootBeanDefinition beanDefinition) {
      +70      try {
      +71        return (Class<?>) beanDefinition.getPropertyValues().get("mapperInterface");
      +72      } catch (Exception e) {
      +73        LOG.debug("Fail getting mapper interface type.", e);
      +74        return null;
      +75      }
      +76    }
      +77  
      +78  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html b/ko/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..7bf054f --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,136 @@ + + + +MyBatisMapperNativeConfigurationProcessor xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
      +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
      +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
      +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
      +30  
      +31  import java.lang.annotation.Annotation;
      +32  import java.lang.reflect.Method;
      +33  import java.util.function.Function;
      +34  
      +35  import org.apache.ibatis.annotations.DeleteProvider;
      +36  import org.apache.ibatis.annotations.InsertProvider;
      +37  import org.apache.ibatis.annotations.SelectProvider;
      +38  import org.apache.ibatis.annotations.UpdateProvider;
      +39  import org.mybatis.spring.mapper.MapperFactoryBean;
      +40  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor;
      +41  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
      +42  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry;
      +43  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry;
      +44  import org.springframework.beans.PropertyValue;
      +45  import org.springframework.beans.factory.config.BeanDefinition;
      +46  import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
      +47  import org.springframework.nativex.hint.TypeAccess;
      +48  import org.springframework.util.ClassUtils;
      +49  import org.springframework.util.ReflectionUtils;
      +50  
      +51  /**
      +52   * Finds and registers reflection hints for all scanned mappers in the beanFactory.
      +53   *
      +54   * @author Kazuki Shimizu
      +55   * @author Josh Long
      +56   */
      +57  public class MyBatisMapperNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor {
      +58  
      +59    private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean";
      +60  
      +61    private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
      +62        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
      +63        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
      +64  
      +65    /**
      +66     * {@inheritDoc}
      +67     */
      +68    @Override
      +69    public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) {
      +70      if (!ClassUtils.isPresent(MAPPER_FACTORY_BEAN, beanFactory.getBeanClassLoader())) {
      +71        return;
      +72      }
      +73      String[] beanNames = beanFactory.getBeanNamesForType(MapperFactoryBean.class);
      +74      for (String beanName : beanNames) {
      +75        BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName.substring(1));
      +76        PropertyValue mapperInterface = beanDefinition.getPropertyValues().getPropertyValue("mapperInterface");
      +77        if (mapperInterface != null && mapperInterface.getValue() != null) {
      +78          Class<?> mapperInterfaceType = (Class<?>) mapperInterface.getValue();
      +79          if (mapperInterfaceType != null) {
      +80            registerReflectionTypeIfNecessary(mapperInterfaceType, registry);
      +81            registry.proxy().add(NativeProxyEntry.ofInterfaces(mapperInterfaceType));
      +82            registry.resources()
      +83                .add(NativeResourcesEntry.of(mapperInterfaceType.getName().replace('.', '/').concat(".xml")));
      +84            registerMapperRelationships(mapperInterfaceType, registry);
      +85          }
      +86        }
      +87      }
      +88    }
      +89  
      +90    private void registerMapperRelationships(Class<?> mapperInterfaceType, NativeConfigurationRegistry registry) {
      +91      Method[] methods = ReflectionUtils.getAllDeclaredMethods(mapperInterfaceType);
      +92      for (Method method : methods) {
      +93        if (method.getDeclaringClass() != Object.class) {
      +94          ReflectionUtils.makeAccessible(method);
      +95          registerSqlProviderTypes(method, registry, SelectProvider.class, SelectProvider::value, SelectProvider::type);
      +96          registerSqlProviderTypes(method, registry, InsertProvider.class, InsertProvider::value, InsertProvider::type);
      +97          registerSqlProviderTypes(method, registry, UpdateProvider.class, UpdateProvider::value, UpdateProvider::type);
      +98          registerSqlProviderTypes(method, registry, DeleteProvider.class, DeleteProvider::value, DeleteProvider::type);
      +99          Class<?> returnType = MyBatisMapperTypeUtils.resolveReturnClass(mapperInterfaceType, method);
      +100         registerReflectionTypeIfNecessary(returnType, registry);
      +101         MyBatisMapperTypeUtils.resolveParameterClasses(mapperInterfaceType, method)
      +102             .forEach(x -> registerReflectionTypeIfNecessary(x, registry));
      +103       }
      +104     }
      +105   }
      +106 
      +107   @SafeVarargs
      +108   private final <T extends Annotation> void registerSqlProviderTypes(Method method,
      +109       NativeConfigurationRegistry registry, Class<T> annotationType, Function<T, Class<?>>... providerTypeResolvers) {
      +110     for (T annotation : method.getAnnotationsByType(annotationType)) {
      +111       for (Function<T, Class<?>> providerTypeResolver : providerTypeResolvers) {
      +112         registerReflectionTypeIfNecessary(providerTypeResolver.apply(annotation), registry);
      +113       }
      +114     }
      +115   }
      +116 
      +117   private void registerReflectionTypeIfNecessary(Class<?> type, NativeConfigurationRegistry registry) {
      +118     if (!type.isPrimitive() && !type.getName().startsWith("java")) {
      +119       registry.reflection().forType(type).withAccess(TYPE_ACCESSES);
      +120     }
      +121   }
      +122 
      +123 }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html b/ko/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html new file mode 100644 index 0000000..df930bb --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html @@ -0,0 +1,79 @@ + + + +MyBatisMapperTypeUtils xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import java.lang.reflect.Method;
      +19  import java.lang.reflect.ParameterizedType;
      +20  import java.lang.reflect.Type;
      +21  import java.util.Map;
      +22  import java.util.Set;
      +23  import java.util.stream.Collectors;
      +24  import java.util.stream.Stream;
      +25  
      +26  import org.apache.ibatis.reflection.TypeParameterResolver;
      +27  
      +28  final class MyBatisMapperTypeUtils {
      +29  
      +30    private MyBatisMapperTypeUtils() {
      +31      // NOP
      +32    }
      +33  
      +34    static Class<?> resolveReturnClass(Class<?> mapperInterface, Method method) {
      +35      Type resolvedReturnType = TypeParameterResolver.resolveReturnType(method, mapperInterface);
      +36      return typeToClass(resolvedReturnType, method.getReturnType());
      +37    }
      +38  
      +39    static Set<Class<?>> resolveParameterClasses(Class<?> mapperInterface, Method method) {
      +40      return Stream.of(TypeParameterResolver.resolveParamTypes(method, mapperInterface))
      +41          .map(x -> typeToClass(x, x instanceof Class ? (Class<?>) x : Object.class)).collect(Collectors.toSet());
      +42    }
      +43  
      +44    private static Class<?> typeToClass(Type src, Class<?> fallback) {
      +45      Class<?> result = null;
      +46      if (src instanceof Class<?>) {
      +47        if (((Class<?>) src).isArray()) {
      +48          result = ((Class<?>) src).getComponentType();
      +49        } else {
      +50          result = (Class<?>) src;
      +51        }
      +52      } else if (src instanceof ParameterizedType) {
      +53        ParameterizedType parameterizedType = (ParameterizedType) src;
      +54        int index = (parameterizedType.getRawType() instanceof Class
      +55            && Map.class.isAssignableFrom((Class<?>) parameterizedType.getRawType())
      +56            && parameterizedType.getActualTypeArguments().length > 1) ? 1 : 0;
      +57        Type actualType = parameterizedType.getActualTypeArguments()[index];
      +58        result = typeToClass(actualType, fallback);
      +59      }
      +60      if (result == null) {
      +61        result = fallback;
      +62      }
      +63      return result;
      +64    }
      +65  
      +66  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html b/ko/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html new file mode 100644 index 0000000..8db7ebd --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html @@ -0,0 +1,139 @@ + + + +MyBatisResourcesScan xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import java.lang.annotation.Repeatable;
      +19  import java.lang.annotation.Retention;
      +20  import java.lang.annotation.RetentionPolicy;
      +21  
      +22  import org.springframework.context.annotation.Import;
      +23  import org.springframework.nativex.hint.TypeAccess;
      +24  
      +25  /**
      +26   * The annotation that indicates scan rules of resources for running on native-image.
      +27   *
      +28   * @author Kazuki Shimizu
      +29   */
      +30  @Import(MyBatisScannedResourcesHolder.Registrar.class)
      +31  @Retention(RetentionPolicy.RUNTIME)
      +32  @Repeatable(MyBatisResourcesScan.List.class)
      +33  public @interface MyBatisResourcesScan {
      +34  
      +35    /**
      +36     * Return package names for scanning type aliases.
      +37     * <p>
      +38     * Default is none.
      +39     * </P>
      +40     *
      +41     * @return package names for scanning type aliases
      +42     */
      +43    String[] typeAliasesPackages() default {};
      +44  
      +45    /**
      +46     * Return the filter type(super class) for scanning type aliases.
      +47     * <p>
      +48     * Default is none.
      +49     * </P>
      +50     *
      +51     * @return the filter type for scanning type aliases
      +52     */
      +53    Class<?> typeAliasesSupperType() default void.class;
      +54  
      +55    /**
      +56     * Return package names for scanning type handler.
      +57     * <p>
      +58     * Default is none.
      +59     * </P>
      +60     *
      +61     * @return package names for scanning type handler
      +62     */
      +63    String[] typeHandlerPackages() default {};
      +64  
      +65    /**
      +66     * Return location patterns for scanning mapper xml file under classpath.
      +67     * <p>
      +68     * Default is none.
      +69     * </P>
      +70     *
      +71     * @return location patterns for scanning mapper xml file under classpath
      +72     */
      +73    String[] mapperLocationPatterns() default {};
      +74  
      +75    /**
      +76     * Return package names for scanning reflection hint type.
      +77     * <p>
      +78     * Default is none.
      +79     * </P>
      +80     *
      +81     * @return package names for scanning reflection hint type
      +82     */
      +83    String[] reflectionTypePackages() default {};
      +84  
      +85    /**
      +86     * Return the filter type(super class) for scanning reflection hint type.
      +87     * <p>
      +88     * Default is none.
      +89     * </P>
      +90     *
      +91     * @return the filter type for scanning reflection hint type
      +92     */
      +93    Class<?> reflectionTypeSupperType() default void.class;
      +94  
      +95    /**
      +96     * Return access scopes for applying scanned classes to reflection hint.
      +97     * <p>
      +98     * Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS,
      +99     * DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS,
      +100    * QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS.
      +101    * </P>
      +102    *
      +103    * @return access scopes for applying scanned classes to reflection hint
      +104    */
      +105   TypeAccess[] typeAccesses() default {};
      +106 
      +107   /**
      +108    * Return location patterns for adding resource hint file under classpath.
      +109    * <p>
      +110    * Default is none.
      +111    * </P>
      +112    *
      +113    * @return location patterns for adding resource hint file under classpath
      +114    */
      +115   String[] resourceLocationPatterns() default {};
      +116 
      +117   /**
      +118    * Repeatable annotation for {@link MyBatisResourcesScan}.
      +119    */
      +120   @Import(MyBatisScannedResourcesHolder.RepeatableRegistrar.class)
      +121   @Retention(RetentionPolicy.RUNTIME)
      +122   @interface List {
      +123     MyBatisResourcesScan[] value() default {};
      +124   }
      +125 
      +126 }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html b/ko/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..7692e40 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html @@ -0,0 +1,338 @@ + + + +MyBatisScannedResourcesHolder xref + + + +
      +1   /*
      +2    *    Copyright 2022-2023 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import java.io.IOException;
      +19  import java.io.UncheckedIOException;
      +20  import java.lang.reflect.Modifier;
      +21  import java.nio.file.Path;
      +22  import java.util.Collections;
      +23  import java.util.HashSet;
      +24  import java.util.Optional;
      +25  import java.util.Set;
      +26  import java.util.regex.Pattern;
      +27  import java.util.stream.Collectors;
      +28  import java.util.stream.Stream;
      +29  
      +30  import org.apache.commons.logging.Log;
      +31  import org.apache.commons.logging.LogFactory;
      +32  import org.apache.ibatis.type.TypeHandler;
      +33  import org.springframework.beans.factory.config.BeanDefinition;
      +34  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
      +35  import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
      +36  import org.springframework.beans.factory.support.BeanDefinitionRegistry;
      +37  import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
      +38  import org.springframework.core.annotation.AnnotationAttributes;
      +39  import org.springframework.core.io.ClassPathResource;
      +40  import org.springframework.core.io.Resource;
      +41  import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
      +42  import org.springframework.core.io.support.ResourcePatternResolver;
      +43  import org.springframework.core.type.AnnotationMetadata;
      +44  import org.springframework.core.type.ClassMetadata;
      +45  import org.springframework.core.type.classreading.CachingMetadataReaderFactory;
      +46  import org.springframework.core.type.classreading.MetadataReaderFactory;
      +47  import org.springframework.nativex.hint.TypeAccess;
      +48  import org.springframework.util.ClassUtils;
      +49  
      +50  /**
      +51   * The holder class that scanned resources using {@code @MyBatisResourcesScan}.
      +52   *
      +53   * @author Kazuki Shimizu
      +54   */
      +55  public class MyBatisScannedResourcesHolder {
      +56  
      +57    private Set<Class<?>> typeAliasesClasses;
      +58    private Set<Class<?>> typeHandlerClasses;
      +59    private Set<String> mapperLocations;
      +60    private Set<Class<?>> reflectionClasses;
      +61    private TypeAccess[] reflectionTypeAccesses;
      +62    private Set<String> resourceLocations;
      +63  
      +64    /**
      +65     * Return class list of scanned type aliases.
      +66     *
      +67     * @return class list of scanned type aliases
      +68     */
      +69    public Set<Class<?>> getTypeAliasesClasses() {
      +70      return typeAliasesClasses;
      +71    }
      +72  
      +73    /**
      +74     * Set class list of scanned type aliases.
      +75     *
      +76     * @param typeAliasClasses
      +77     *          class list of scanned type aliases
      +78     */
      +79    @SuppressWarnings("unused")
      +80    public void setTypeAliasesClasses(Set<Class<?>> typeAliasClasses) {
      +81      this.typeAliasesClasses = typeAliasClasses;
      +82    }
      +83  
      +84    /**
      +85     * Return class list of scanned type handler.
      +86     *
      +87     * @return class list of scanned type handler
      +88     */
      +89    public Set<Class<?>> getTypeHandlerClasses() {
      +90      return typeHandlerClasses;
      +91    }
      +92  
      +93    /**
      +94     * Set class list of scanned type handler.
      +95     *
      +96     * @param typeHandlerClasses
      +97     *          class list of scanned type handler
      +98     */
      +99    @SuppressWarnings("unused")
      +100   public void setTypeHandlerClasses(Set<Class<?>> typeHandlerClasses) {
      +101     this.typeHandlerClasses = typeHandlerClasses;
      +102   }
      +103 
      +104   /**
      +105    * Return location list of scanned mapper xml file.
      +106    *
      +107    * @return location list of scanned mapper xml file
      +108    */
      +109   public Set<String> getMapperLocations() {
      +110     return mapperLocations;
      +111   }
      +112 
      +113   /**
      +114    * Set location list of scanned mapper xml file.
      +115    *
      +116    * @param mapperLocations
      +117    *          location list of scanned mapper xml file
      +118    */
      +119   @SuppressWarnings("unused")
      +120   public void setMapperLocations(Set<String> mapperLocations) {
      +121     this.mapperLocations = mapperLocations;
      +122   }
      +123 
      +124   /**
      +125    * Set class list of scanned reflection hint type.
      +126    *
      +127    * @param reflectionClasses
      +128    *          class list of scanned reflection hint type
      +129    */
      +130   @SuppressWarnings("unused")
      +131   public void setReflectionClasses(Set<Class<?>> reflectionClasses) {
      +132     this.reflectionClasses = reflectionClasses;
      +133   }
      +134 
      +135   /**
      +136    * Return class list of scanned reflection hint type.
      +137    *
      +138    * @return class list of scanned reflection hint type
      +139    */
      +140   public Set<Class<?>> getReflectionClasses() {
      +141     return reflectionClasses;
      +142   }
      +143 
      +144   /**
      +145    * Set access scopes for applying reflection type that scanned.
      +146    *
      +147    * @param reflectionTypeAccesses
      +148    *          access scopes for applying reflection type that scanned
      +149    */
      +150   @SuppressWarnings("unused")
      +151   public void setReflectionTypeAccesses(TypeAccess[] reflectionTypeAccesses) {
      +152     this.reflectionTypeAccesses = reflectionTypeAccesses;
      +153   }
      +154 
      +155   /**
      +156    * Return access scopes for applying reflection type that scanned.
      +157    *
      +158    * @return access scopes for applying reflection type that scanned
      +159    */
      +160   public TypeAccess[] getReflectionTypeAccesses() {
      +161     return reflectionTypeAccesses;
      +162   }
      +163 
      +164   /**
      +165    * Set location list of adding resource hint file.
      +166    *
      +167    * @param resourceLocations
      +168    *          location list of adding resource hint file
      +169    */
      +170   @SuppressWarnings("unused")
      +171   public void setResourceLocations(Set<String> resourceLocations) {
      +172     this.resourceLocations = resourceLocations;
      +173   }
      +174 
      +175   /**
      +176    * Return location list of adding resource hint file.
      +177    *
      +178    * @return location list of adding resource hint file
      +179    */
      +180   public Set<String> getResourceLocations() {
      +181     return resourceLocations;
      +182   }
      +183 
      +184   static class Registrar implements ImportBeanDefinitionRegistrar {
      +185     private static final Log LOG = LogFactory.getLog(Registrar.class);
      +186     private static final ResourcePatternResolver RESOURCE_PATTERN_RESOLVER = new PathMatchingResourcePatternResolver();
      +187     private static final MetadataReaderFactory METADATA_READER_FACTORY = new CachingMetadataReaderFactory();
      +188     private static final Pattern JAR_RESOURCE_PREFIX_PATTERN = Pattern.compile(".*\\.jar!/");
      +189     private static final boolean PRESENT_TYPE_HANDLER = ClassUtils.isPresent("org.apache.ibatis.type.TypeHandler",
      +190         null);
      +191 
      +192     @Override
      +193     public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
      +194       AnnotationAttributes annoAttrs = Optional
      +195           .ofNullable(AnnotationAttributes
      +196               .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.class.getName())))
      +197           .orElseGet(AnnotationAttributes::new);
      +198       registerBeanDefinitions(annoAttrs, registry);
      +199     }
      +200 
      +201     protected void registerBeanDefinitions(AnnotationAttributes annoAttrs, BeanDefinitionRegistry registry) {
      +202       try {
      +203         BeanDefinitionBuilder builder = BeanDefinitionBuilder
      +204             .genericBeanDefinition(MyBatisScannedResourcesHolder.class);
      +205         Set<Class<?>> typeAliasesClasses = scanClasses(annoAttrs.getStringArray("typeAliasesPackages"),
      +206             annoAttrs.getClass("typeAliasesSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass())
      +207                 .filter(clazz -> !clazz.isInterface()).filter(clazz -> !clazz.isMemberClass())
      +208                 .collect(Collectors.toSet());
      +209         builder.addPropertyValue("typeAliasesClasses", typeAliasesClasses);
      +210         Set<Class<?>> typeHandlerClasses = Collections.emptySet();
      +211         if (PRESENT_TYPE_HANDLER) {
      +212           typeHandlerClasses = scanClasses(annoAttrs.getStringArray("typeHandlerPackages"), TypeHandler.class).stream()
      +213               .filter(clazz -> !clazz.isAnonymousClass()).filter(clazz -> !clazz.isInterface())
      +214               .filter(clazz -> !Modifier.isAbstract(clazz.getModifiers())).collect(Collectors.toSet());
      +215         }
      +216         builder.addPropertyValue("typeHandlerClasses", typeHandlerClasses);
      +217         Set<String> mapperLocations = scanResources(annoAttrs.getStringArray("mapperLocationPatterns"));
      +218         builder.addPropertyValue("mapperLocations", mapperLocations);
      +219         Set<Class<?>> reflectionClasses = scanClasses(annoAttrs.getStringArray("reflectionTypePackages"),
      +220             annoAttrs.getClass("reflectionTypeSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass())
      +221                 .filter(clazz -> !clazz.isInterface()).filter(clazz -> !Modifier.isAbstract(clazz.getModifiers()))
      +222                 .filter(clazz -> !clazz.isMemberClass()).collect(Collectors.toSet());
      +223         builder.addPropertyValue("reflectionClasses",
      +224             Stream.of(typeAliasesClasses, typeHandlerClasses, reflectionClasses).flatMap(Set::stream)
      +225                 .collect(Collectors.toSet()));
      +226         builder.addPropertyValue("reflectionTypeAccesses", annoAttrs.get("typeAccesses"));
      +227         Set<String> resourceLocations = scanResources(annoAttrs.getStringArray("resourceLocationPatterns"));
      +228         builder.addPropertyValue("resourceLocations",
      +229             Stream.of(mapperLocations, resourceLocations).flatMap(Set::stream).collect(Collectors.toSet()));
      +230         BeanDefinition beanDefinition = builder.getBeanDefinition();
      +231         registry.registerBeanDefinition(BeanDefinitionReaderUtils.generateBeanName(beanDefinition, registry),
      +232             beanDefinition);
      +233       } catch (IOException e) {
      +234         throw new UncheckedIOException(e);
      +235       }
      +236     }
      +237 
      +238     private Set<Class<?>> scanClasses(String[] packagePatterns, Class<?> assignableType) throws IOException {
      +239       Set<Class<?>> classes = new HashSet<>();
      +240       for (String packagePattern : packagePatterns) {
      +241         Resource[] resources = RESOURCE_PATTERN_RESOLVER.getResources(ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX
      +242             + ClassUtils.convertClassNameToResourcePath(packagePattern) + "/**/*.class");
      +243         for (Resource resource : resources) {
      +244           try {
      +245             ClassMetadata classMetadata = METADATA_READER_FACTORY.getMetadataReader(resource).getClassMetadata();
      +246             Class<?> clazz = ClassUtils.forName(classMetadata.getClassName(), null);
      +247             if (assignableType == void.class || assignableType.isAssignableFrom(clazz)) {
      +248               classes.add(clazz);
      +249             }
      +250           } catch (ClassNotFoundException e) {
      +251             LOG.debug("Fail loading class.", e);
      +252           }
      +253         }
      +254       }
      +255       return classes;
      +256     }
      +257 
      +258     private Set<String> scanResources(String[] mapperLocationPatterns) {
      +259       try {
      +260         String baseUrl = new ClassPathResource("/").getURL().toString();
      +261         return Stream.of(mapperLocationPatterns).flatMap(location -> Stream.of(getResources(location)))
      +262             .map(x -> toPath(x, baseUrl)).collect(Collectors.toSet());
      +263       } catch (IOException e) {
      +264         throw new UncheckedIOException(e);
      +265       }
      +266     }
      +267 
      +268     private Resource[] getResources(String locationPattern) {
      +269       try {
      +270         return RESOURCE_PATTERN_RESOLVER.getResources(locationPattern);
      +271       } catch (IOException e) {
      +272         LOG.debug("Fail getting resources. locationPattern: " + locationPattern, e);
      +273         return new Resource[0];
      +274       }
      +275     }
      +276 
      +277     private String toPath(Resource resource, String baseUrl) {
      +278       try {
      +279         String url = resource.getURL().toString();
      +280         String path = url;
      +281         if (url.startsWith(baseUrl)) {
      +282           path = url.replace(baseUrl, "");
      +283         } else if (url.contains(".jar!")) {
      +284           path = JAR_RESOURCE_PREFIX_PATTERN.matcher(url).replaceFirst("");
      +285         } else {
      +286           path = determineRelativePath(resource);
      +287         }
      +288         return path;
      +289       } catch (IOException e) {
      +290         throw new UncheckedIOException(e);
      +291       }
      +292     }
      +293 
      +294     private String determineRelativePath(Resource resource) throws IOException {
      +295       Path path = resource.getFile().toPath();
      +296       StringBuilder sb = new StringBuilder();
      +297       for (int i = path.getNameCount() - 1; i >= 0; i--) {
      +298         sb.insert(0, path.getName(i));
      +299         String relativePath = sb.toString();
      +300         if (RESOURCE_PATTERN_RESOLVER.getResource(relativePath).exists()) {
      +301           return relativePath;
      +302         }
      +303         sb.insert(0, '/');
      +304       }
      +305       return resource.getURL().toString();
      +306     }
      +307 
      +308   }
      +309 
      +310   static class RepeatableRegistrar extends Registrar {
      +311 
      +312     @Override
      +313     public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
      +314       AnnotationAttributes mapperScansAttrs = AnnotationAttributes
      +315           .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.List.class.getName()));
      +316       if (mapperScansAttrs != null) {
      +317         for (AnnotationAttributes annoAttrs : mapperScansAttrs.getAnnotationArray("value")) {
      +318           this.registerBeanDefinitions(annoAttrs, registry);
      +319         }
      +320       }
      +321     }
      +322 
      +323   }
      +324 
      +325 }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html b/ko/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..f79ea29 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,92 @@ + + + +MyBatisScannedResourcesNativeConfigurationProcessor xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
      +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
      +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
      +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
      +30  
      +31  import java.util.Collections;
      +32  import java.util.Optional;
      +33  import java.util.Set;
      +34  
      +35  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor;
      +36  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
      +37  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry;
      +38  import org.springframework.beans.PropertyValue;
      +39  import org.springframework.beans.factory.config.BeanDefinition;
      +40  import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
      +41  import org.springframework.nativex.hint.TypeAccess;
      +42  
      +43  /**
      +44   * Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the {@code BeanFactory}.
      +45   *
      +46   * @author Kazuki Shimizu
      +47   */
      +48  public class MyBatisScannedResourcesNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor {
      +49  
      +50    private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
      +51        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
      +52        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
      +53  
      +54    /**
      +55     * {@inheritDoc}
      +56     */
      +57    @Override
      +58    public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) {
      +59      String[] beanNames = beanFactory.getBeanNamesForType(MyBatisScannedResourcesHolder.class);
      +60      for (String beanName : beanNames) {
      +61        BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName);
      +62        @SuppressWarnings("unchecked")
      +63        Set<String> resourceLocations = (Set<String>) Optional
      +64            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("resourceLocations"))
      +65            .map(PropertyValue::getValue).orElse(Collections.emptySet());
      +66        resourceLocations.forEach(x -> registry.resources().add(NativeResourcesEntry.of(x)));
      +67        @SuppressWarnings("unchecked")
      +68        Set<Class<?>> reflectionClasses = (Set<Class<?>>) Optional
      +69            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionClasses"))
      +70            .map(PropertyValue::getValue).orElse(Collections.emptySet());
      +71        TypeAccess[] reflectionTypeAccesses = (TypeAccess[]) Optional
      +72            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionTypeAccesses"))
      +73            .map(PropertyValue::getValue).orElse(DEFAULT_TYPE_ACCESSES);
      +74        reflectionClasses.forEach(x -> registry.reflection().forType(x)
      +75            .withAccess(reflectionTypeAccesses.length == 0 ? DEFAULT_TYPE_ACCESSES : reflectionTypeAccesses).build());
      +76      }
      +77    }
      +78  
      +79  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html b/ko/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..ec8981f --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,74 @@ + + + +MyBatisSpringNativeConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  
      +27  import org.mybatis.spring.SqlSessionFactoryBean;
      +28  import org.mybatis.spring.SqlSessionTemplate;
      +29  import org.springframework.nativex.hint.NativeHint;
      +30  import org.springframework.nativex.hint.ResourceHint;
      +31  import org.springframework.nativex.hint.TypeHint;
      +32  import org.springframework.nativex.type.NativeConfiguration;
      +33  
      +34  /**
      +35   * Registers hints to make a MyBatis Spring component work in a Spring Native context.
      +36   *
      +37   * @author Kazuki Shimizu
      +38   */
      +39  // @formatter:off
      +40  @NativeHint(
      +41      trigger = SqlSessionTemplate.class,
      +42      resources = @ResourceHint(
      +43          patterns = "org/mybatis/spring/config/.*.xsd"
      +44      )
      +45  )
      +46  @TypeHint(
      +47      types = SqlSessionFactoryBean.class,
      +48      access = {
      +49          PUBLIC_CONSTRUCTORS,
      +50          PUBLIC_CLASSES,
      +51          PUBLIC_FIELDS,
      +52          PUBLIC_METHODS,
      +53          DECLARED_CLASSES,
      +54          DECLARED_CONSTRUCTORS,
      +55          DECLARED_FIELDS,
      +56          DECLARED_METHODS
      +57      }
      +58  )
      +59  // @formatter:on
      +60  public class MyBatisSpringNativeConfiguration implements NativeConfiguration {
      +61  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html b/ko/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..2117339 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,115 @@ + + + +MyBatisThymeleafNativeConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  
      +27  import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig;
      +28  import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver;
      +29  import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriverConfig;
      +30  import org.mybatis.scripting.thymeleaf.expression.Likes;
      +31  import org.mybatis.scripting.thymeleaf.support.TemplateFilePathProvider;
      +32  import org.mybatis.scripting.thymeleaf.support.spring.SpringNamedParameterBindVariableRender;
      +33  import org.springframework.nativex.hint.NativeHint;
      +34  import org.springframework.nativex.hint.ResourceHint;
      +35  import org.springframework.nativex.hint.TypeHint;
      +36  import org.springframework.nativex.type.NativeConfiguration;
      +37  import org.thymeleaf.expression.Aggregates;
      +38  import org.thymeleaf.expression.Arrays;
      +39  import org.thymeleaf.expression.Bools;
      +40  import org.thymeleaf.expression.Calendars;
      +41  import org.thymeleaf.expression.Dates;
      +42  import org.thymeleaf.expression.ExecutionInfo;
      +43  import org.thymeleaf.expression.Ids;
      +44  import org.thymeleaf.expression.Lists;
      +45  import org.thymeleaf.expression.Maps;
      +46  import org.thymeleaf.expression.Messages;
      +47  import org.thymeleaf.expression.Numbers;
      +48  import org.thymeleaf.expression.Objects;
      +49  import org.thymeleaf.expression.Sets;
      +50  import org.thymeleaf.expression.Strings;
      +51  import org.thymeleaf.expression.Uris;
      +52  
      +53  /**
      +54   * Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
      +55   *
      +56   * @author Kazuki Shimizu
      +57   */
      +58  // @formatter:off
      +59  @NativeHint(
      +60      trigger = ThymeleafLanguageDriver.class,
      +61      resources = @ResourceHint(
      +62          patterns = "mybatis-thymeleaf.properties"
      +63      )
      +64  )
      +65  @TypeHint(
      +66      types = {
      +67          ThymeleafLanguageDriver.class,
      +68          SqlGeneratorConfig.class,
      +69          ThymeleafLanguageDriverConfig.class,
      +70          TemplateFilePathProvider.class,
      +71          SpringNamedParameterBindVariableRender.class,
      +72          Likes.class,
      +73          Uris.class,
      +74          Calendars.class,
      +75          Dates.class,
      +76          Bools.class,
      +77          Numbers.class,
      +78          Objects.class,
      +79          Strings.class,
      +80          Arrays.class,
      +81          Lists.class,
      +82          Sets.class,
      +83          Maps.class,
      +84          Aggregates.class,
      +85          Messages.class,
      +86          Ids.class,
      +87          ExecutionInfo.class
      +88      },
      +89      access = {
      +90          PUBLIC_CONSTRUCTORS,
      +91          PUBLIC_CLASSES,
      +92          PUBLIC_FIELDS,
      +93          PUBLIC_METHODS,
      +94          DECLARED_CLASSES,
      +95          DECLARED_CONSTRUCTORS,
      +96          DECLARED_FIELDS,
      +97          DECLARED_METHODS
      +98      }
      +99  )
      +100 // @formatter:on
      +101 public class MyBatisThymeleafNativeConfiguration implements NativeConfiguration {
      +102 }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html b/ko/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..d3efbd1 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,122 @@ + + + +MyBatisVelocityNativeConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex;
      +17  
      +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
      +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
      +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
      +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
      +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
      +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
      +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
      +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
      +26  
      +27  import org.apache.velocity.runtime.ParserPoolImpl;
      +28  import org.apache.velocity.runtime.directive.Break;
      +29  import org.apache.velocity.runtime.directive.Define;
      +30  import org.apache.velocity.runtime.directive.Evaluate;
      +31  import org.apache.velocity.runtime.directive.Foreach;
      +32  import org.apache.velocity.runtime.directive.Include;
      +33  import org.apache.velocity.runtime.directive.Macro;
      +34  import org.apache.velocity.runtime.directive.Parse;
      +35  import org.apache.velocity.runtime.directive.Stop;
      +36  import org.apache.velocity.runtime.parser.StandardParser;
      +37  import org.apache.velocity.runtime.resource.ResourceCacheImpl;
      +38  import org.apache.velocity.runtime.resource.ResourceManagerImpl;
      +39  import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;
      +40  import org.apache.velocity.util.introspection.TypeConversionHandlerImpl;
      +41  import org.apache.velocity.util.introspection.UberspectImpl;
      +42  import org.mybatis.scripting.velocity.InDirective;
      +43  import org.mybatis.scripting.velocity.ParameterMappingCollector;
      +44  import org.mybatis.scripting.velocity.RepeatDirective;
      +45  import org.mybatis.scripting.velocity.SetDirective;
      +46  import org.mybatis.scripting.velocity.TrimDirective;
      +47  import org.mybatis.scripting.velocity.VelocityLanguageDriver;
      +48  import org.mybatis.scripting.velocity.VelocityLanguageDriverConfig;
      +49  import org.mybatis.scripting.velocity.WhereDirective;
      +50  import org.springframework.nativex.hint.NativeHint;
      +51  import org.springframework.nativex.hint.ResourceHint;
      +52  import org.springframework.nativex.hint.TypeHint;
      +53  import org.springframework.nativex.type.NativeConfiguration;
      +54  
      +55  /**
      +56   * Registers hints to make a MyBatis Velocity component work in a Spring Native context.
      +57   *
      +58   * @author Kazuki Shimizu
      +59   */
      +60  // @formatter:off
      +61  @NativeHint(
      +62      trigger = VelocityLanguageDriver.class,
      +63      resources = @ResourceHint(
      +64          patterns = {
      +65              "mybatis-velocity.properties",
      +66              "org/apache/velocity/runtime/defaults/.*.properties"
      +67          }
      +68      )
      +69  )
      +70  @TypeHint(
      +71      types = {
      +72          VelocityLanguageDriver.class,
      +73          VelocityLanguageDriverConfig.class,
      +74          ParameterMappingCollector.class,
      +75          TrimDirective.class,
      +76          WhereDirective.class,
      +77          SetDirective.class,
      +78          InDirective.class,
      +79          RepeatDirective.class,
      +80          ResourceManagerImpl.class,
      +81          ClasspathResourceLoader.class,
      +82          ResourceCacheImpl.class,
      +83          ParserPoolImpl.class,
      +84          UberspectImpl.class,
      +85          TypeConversionHandlerImpl.class,
      +86          StandardParser.class,
      +87          Foreach.class,
      +88          Include.class,
      +89          Parse.class,
      +90          Macro.class,
      +91          Evaluate.class,
      +92          Break.class,
      +93          Define.class,
      +94          Stop.class
      +95      },
      +96      access = {
      +97          PUBLIC_CONSTRUCTORS,
      +98          PUBLIC_CLASSES,
      +99          PUBLIC_FIELDS,
      +100         PUBLIC_METHODS,
      +101         DECLARED_CLASSES,
      +102         DECLARED_CONSTRUCTORS,
      +103         DECLARED_FIELDS,
      +104         DECLARED_METHODS
      +105     }
      +106 )
      +107 // @formatter:on
      +108 public class MyBatisVelocityNativeConfiguration implements NativeConfiguration {
      +109 }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html b/ko/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..ef794d5 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,78 @@ + + + +MyBatisSpringNativeAutoConfiguration xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.autoconfigure;
      +17  
      +18  import java.util.List;
      +19  
      +20  import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
      +21  import org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration;
      +22  import org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer;
      +23  import org.mybatis.spring.nativex.MyBatisScannedResourcesHolder;
      +24  import org.springframework.boot.autoconfigure.AutoConfigureBefore;
      +25  import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
      +26  import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
      +27  import org.springframework.context.annotation.Bean;
      +28  import org.springframework.context.annotation.Configuration;
      +29  import org.springframework.core.io.ClassPathResource;
      +30  import org.springframework.core.io.Resource;
      +31  
      +32  /**
      +33   * The configuration class that configure automatically for spring-native.
      +34   *
      +35   * @author Kazuki Shimizu
      +36   */
      +37  @Configuration
      +38  @ConditionalOnClass({ org.apache.ibatis.session.Configuration.class, SqlSessionFactoryBeanCustomizer.class })
      +39  @AutoConfigureBefore(MybatisAutoConfiguration.class)
      +40  public class MyBatisSpringNativeAutoConfiguration {
      +41  
      +42    @ConditionalOnBean(MyBatisScannedResourcesHolder.class)
      +43    @Bean
      +44    ConfigurationCustomizer mybatisScannedResourcesHolderConfigurationCustomizer(
      +45        List<MyBatisScannedResourcesHolder> holders) {
      +46      return configuration -> holders.forEach(holder -> {
      +47        holder.getTypeAliasesClasses().forEach(configuration.getTypeAliasRegistry()::registerAlias);
      +48        holder.getTypeHandlerClasses().forEach(configuration.getTypeHandlerRegistry()::register);
      +49      });
      +50    }
      +51  
      +52    @ConditionalOnBean(MyBatisScannedResourcesHolder.class)
      +53    @Bean
      +54    SqlSessionFactoryBeanCustomizer mybatisScannedResourcesHolderSqlSessionFactoryBeanCustomizer(
      +55        List<MyBatisScannedResourcesHolder> holders) {
      +56      return factoryBean -> {
      +57        Resource[] resources = holders.stream()
      +58            .flatMap(holder -> holder.getMapperLocations().stream().map(ClassPathResource::new)).toArray(Resource[]::new);
      +59        if (resources.length > 0) {
      +60          factoryBean.setMapperLocations(resources);
      +61        }
      +62      };
      +63    }
      +64  
      +65  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html b/ko/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html new file mode 100644 index 0000000..a70c069 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html @@ -0,0 +1,18 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + +

      org.mybatis.spring.nativex.autoconfigure

      +
      +

      Classes

      +
        +
      +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/ko/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..3c17131 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,102 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.autoconfigure

      +
      +
      +
        +
      • + + + + + + + + + +
        Class Summary 
        Class
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/package-frame.html b/ko/xref/org/mybatis/spring/nativex/package-frame.html new file mode 100644 index 0000000..7440ddc --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/package-frame.html @@ -0,0 +1,18 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + +

      org.mybatis.spring.nativex

      +
      +

      Classes

      +
        +
      +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/package-summary.html b/ko/xref/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..8476a65 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,102 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + + +
      + + + + +
      mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex

      +
      +
      +
        +
      • + + + + + + + + + +
        Class Summary 
        Class
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/cache/City.html b/ko/xref/org/mybatis/spring/nativex/sample/cache/City.html new file mode 100644 index 0000000..f38dccd --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/cache/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.cache;
      +17  
      +18  import java.io.Serializable;
      +19  
      +20  public class City implements Serializable {
      +21  
      +22    private static final long serialVersionUID = 1L;
      +23  
      +24    private Integer id;
      +25    private String name;
      +26    private String state;
      +27    private String country;
      +28  
      +29    public City(Integer id, String name, String state, String country) {
      +30      this.id = id;
      +31      this.name = name;
      +32      this.state = state;
      +33      this.country = country;
      +34    }
      +35  
      +36    public Integer getId() {
      +37      return id;
      +38    }
      +39  
      +40    public void setId(Integer id) {
      +41      this.id = id;
      +42    }
      +43  
      +44    public String getName() {
      +45      return name;
      +46    }
      +47  
      +48    public void setName(String name) {
      +49      this.name = name;
      +50    }
      +51  
      +52    public String getState() {
      +53      return state;
      +54    }
      +55  
      +56    public void setState(String state) {
      +57      this.state = state;
      +58    }
      +59  
      +60    public String getCountry() {
      +61      return country;
      +62    }
      +63  
      +64    public void setCountry(String country) {
      +65      this.country = country;
      +66    }
      +67  
      +68    @Override
      +69    public String toString() {
      +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +71          + '}';
      +72    }
      +73  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html new file mode 100644 index 0000000..f4802e0 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html @@ -0,0 +1,50 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.cache;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.CacheNamespace;
      +21  import org.apache.ibatis.annotations.Insert;
      +22  import org.apache.ibatis.annotations.Mapper;
      +23  import org.apache.ibatis.annotations.Options;
      +24  import org.apache.ibatis.annotations.Select;
      +25  
      +26  @CacheNamespace
      +27  @Mapper
      +28  public interface CityMapper {
      +29  
      +30    @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})")
      +31    @Options(useGeneratedKeys = true, keyProperty = "id")
      +32    void insert(City city);
      +33  
      +34    @Select("SELECT id, name, state, country FROM city ORDER BY id")
      +35    Collection<City> findAll();
      +36  
      +37  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..9aaea86 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,64 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.cache;
      +17  
      +18  import java.util.ArrayList;
      +19  
      +20  import org.slf4j.Logger;
      +21  import org.slf4j.LoggerFactory;
      +22  import org.springframework.boot.ApplicationRunner;
      +23  import org.springframework.boot.SpringApplication;
      +24  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +25  import org.springframework.context.annotation.Bean;
      +26  import org.springframework.nativex.hint.NativeHint;
      +27  import org.springframework.nativex.hint.SerializationHint;
      +28  
      +29  @NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class,
      +30      Number.class }))
      +31  @SpringBootApplication
      +32  public class MybatisSpringNativeSampleApplication {
      +33  
      +34    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +35  
      +36    public static void main(String[] args) {
      +37      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +38    }
      +39  
      +40    @Bean
      +41    ApplicationRunner runner(CityMapper mapper) {
      +42      return args -> {
      +43        City newCity = new City(null, "NYC", "NY", "USA");
      +44        mapper.insert(newCity);
      +45        log.info("New city: {}", newCity);
      +46        mapper.findAll().forEach(x -> log.info("{}", x));
      +47        mapper.findAll().forEach(x -> log.info("{}", x));
      +48      };
      +49    }
      +50  
      +51  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html new file mode 100644 index 0000000..5f2b4c7 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html @@ -0,0 +1,24 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.cache + + + +

      org.mybatis.spring.nativex.sample.cache

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html new file mode 100644 index 0000000..0c382a0 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html @@ -0,0 +1,112 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.cache + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.cache

      +
      +
      +
        +
      • + + + + + + + + + + + + + + + +
        Class Summary 
        Class
        + City +
        + CityMapper +
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/configuration/City.html b/ko/xref/org/mybatis/spring/nativex/sample/configuration/City.html new file mode 100644 index 0000000..a58e553 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/configuration/City.html @@ -0,0 +1,75 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.configuration;
      +17  
      +18  public class City {
      +19  
      +20    private Integer cityId;
      +21    private String cityName;
      +22    private String stateCode;
      +23    private String countryCode;
      +24  
      +25    public Integer getCityId() {
      +26      return cityId;
      +27    }
      +28  
      +29    public void setCityId(Integer cityId) {
      +30      this.cityId = cityId;
      +31    }
      +32  
      +33    public String getCityName() {
      +34      return cityName;
      +35    }
      +36  
      +37    public void setCityName(String cityName) {
      +38      this.cityName = cityName;
      +39    }
      +40  
      +41    public String getStateCode() {
      +42      return stateCode;
      +43    }
      +44  
      +45    public void setStateCode(String stateCode) {
      +46      this.stateCode = stateCode;
      +47    }
      +48  
      +49    public String getCountryCode() {
      +50      return countryCode;
      +51    }
      +52  
      +53    public void setCountryCode(String countryCode) {
      +54      this.countryCode = countryCode;
      +55    }
      +56  
      +57    @Override
      +58    public String toString() {
      +59      return "City{" + "cityId=" + cityId + ", cityName='" + cityName + '\'' + ", stateCode='" + stateCode + '\''
      +60          + ", countryCode='" + countryCode + '\'' + '}';
      +61    }
      +62  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html new file mode 100644 index 0000000..3ccda0f --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.configuration;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.Insert;
      +21  import org.apache.ibatis.annotations.Mapper;
      +22  import org.apache.ibatis.annotations.Options;
      +23  import org.apache.ibatis.annotations.Select;
      +24  
      +25  @Mapper
      +26  public interface CityMapper {
      +27  
      +28    @Insert("INSERT INTO city (city_name, state_code, country_code) VALUES(#{cityName}, #{stateCode}, #{countryCode})")
      +29    @Options(useGeneratedKeys = true, keyProperty = "cityId")
      +30    void insert(City city);
      +31  
      +32    @Select("SELECT city_id, city_name, state_code, country_code FROM city ORDER BY city_id")
      +33    Collection<City> findAll();
      +34  
      +35  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..6c8ccd2 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,60 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.configuration;
      +17  
      +18  import org.slf4j.Logger;
      +19  import org.slf4j.LoggerFactory;
      +20  import org.springframework.boot.ApplicationRunner;
      +21  import org.springframework.boot.SpringApplication;
      +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +23  import org.springframework.context.annotation.Bean;
      +24  
      +25  @SpringBootApplication
      +26  public class MybatisSpringNativeSampleApplication {
      +27  
      +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +29  
      +30    public static void main(String[] args) {
      +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +32    }
      +33  
      +34    @Bean
      +35    ApplicationRunner runner(CityMapper mapper) {
      +36      return args -> {
      +37        City newCity = new City();
      +38        newCity.setCityName("NYC");
      +39        newCity.setStateCode("NY");
      +40        newCity.setCountryCode("USA");
      +41        mapper.insert(newCity);
      +42        log.info("New city: {}", newCity);
      +43        mapper.findAll().forEach(x -> log.info("{}", x));
      +44      };
      +45    }
      +46  
      +47  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html new file mode 100644 index 0000000..6ecc5d0 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.configuration + + + +

      org.mybatis.spring.nativex.sample.configuration

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html new file mode 100644 index 0000000..567c36b --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.configuration + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.configuration

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dao/City.html b/ko/xref/org/mybatis/spring/nativex/sample/dao/City.html new file mode 100644 index 0000000..5112221 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dao/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.dao;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html b/ko/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html new file mode 100644 index 0000000..ac825fe --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html @@ -0,0 +1,53 @@ + + + +CityDao xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.dao;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.session.SqlSession;
      +21  import org.springframework.stereotype.Component;
      +22  
      +23  @Component
      +24  public class CityDao {
      +25  
      +26    private final SqlSession sqlSession;
      +27  
      +28    public CityDao(SqlSession sqlSession) {
      +29      this.sqlSession = sqlSession;
      +30    }
      +31  
      +32    public void insert(City city) {
      +33      sqlSession.insert("org.mybatis.spring.nativex.sample.dao.CityDao.insert", city);
      +34    }
      +35  
      +36    public Collection<City> findAll() {
      +37      return sqlSession.selectList("org.mybatis.spring.nativex.sample.dao.CityDao.findAll");
      +38    }
      +39  
      +40  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..8c41c2d --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,59 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.dao;
      +17  
      +18  import org.mybatis.spring.nativex.MyBatisResourcesScan;
      +19  import org.slf4j.Logger;
      +20  import org.slf4j.LoggerFactory;
      +21  import org.springframework.boot.ApplicationRunner;
      +22  import org.springframework.boot.SpringApplication;
      +23  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +24  import org.springframework.context.annotation.Bean;
      +25  
      +26  @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.dao", mapperLocationPatterns = "dao/**/*Dao.xml")
      +27  @SpringBootApplication
      +28  public class MybatisSpringNativeSampleApplication {
      +29  
      +30    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +31  
      +32    public static void main(String[] args) {
      +33      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +34    }
      +35  
      +36    @Bean
      +37    ApplicationRunner runner(CityDao cityDao) {
      +38      return args -> {
      +39        City newCity = new City(null, "NYC", "NY", "USA");
      +40        cityDao.insert(newCity);
      +41        log.info("New city: {}", newCity);
      +42        cityDao.findAll().forEach(x -> log.info("{}", x));
      +43      };
      +44    }
      +45  
      +46  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html new file mode 100644 index 0000000..f2597c4 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dao + + + +

      org.mybatis.spring.nativex.sample.dao

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html new file mode 100644 index 0000000..d7432d2 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dao + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.dao

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html new file mode 100644 index 0000000..ccdec8d --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.dynamicsql;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html new file mode 100644 index 0000000..3934678 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html @@ -0,0 +1,86 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.dynamicsql;
      +17  
      +18  import java.sql.JDBCType;
      +19  import java.util.Collection;
      +20  import java.util.List;
      +21  
      +22  import org.apache.ibatis.annotations.InsertProvider;
      +23  import org.apache.ibatis.annotations.Mapper;
      +24  import org.apache.ibatis.annotations.Options;
      +25  import org.apache.ibatis.annotations.SelectProvider;
      +26  import org.mybatis.dynamic.sql.BasicColumn;
      +27  import org.mybatis.dynamic.sql.SqlColumn;
      +28  import org.mybatis.dynamic.sql.SqlTable;
      +29  import org.mybatis.dynamic.sql.insert.render.InsertStatementProvider;
      +30  import org.mybatis.dynamic.sql.select.SelectDSLCompleter;
      +31  import org.mybatis.dynamic.sql.select.render.SelectStatementProvider;
      +32  import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
      +33  import org.mybatis.dynamic.sql.util.mybatis3.CommonCountMapper;
      +34  import org.mybatis.dynamic.sql.util.mybatis3.CommonDeleteMapper;
      +35  import org.mybatis.dynamic.sql.util.mybatis3.CommonInsertMapper;
      +36  import org.mybatis.dynamic.sql.util.mybatis3.CommonSelectMapper;
      +37  import org.mybatis.dynamic.sql.util.mybatis3.CommonUpdateMapper;
      +38  import org.mybatis.dynamic.sql.util.mybatis3.MyBatis3Utils;
      +39  
      +40  @Mapper
      +41  public interface CityMapper
      +42      extends CommonSelectMapper, CommonCountMapper, CommonDeleteMapper, CommonInsertMapper<City>, CommonUpdateMapper {
      +43  
      +44    @InsertProvider(type = SqlProviderAdapter.class, method = "insert")
      +45    @Options(useGeneratedKeys = true, keyProperty = "row.id")
      +46    int insert(InsertStatementProvider<City> insertStatement);
      +47  
      +48    @SelectProvider(type = SqlProviderAdapter.class, method = "select")
      +49    List<City> selectMany(SelectStatementProvider selectStatement);
      +50  
      +51    default void insert(City city) {
      +52      MyBatis3Utils.insert(this::insert, city, CityTable.INSTANCE, c -> c.map(CityTable.INSTANCE.name).toProperty("name")
      +53          .map(CityTable.INSTANCE.state).toProperty("state").map(CityTable.INSTANCE.country).toProperty("country"));
      +54    }
      +55  
      +56    default Collection<City> findAll() {
      +57      return MyBatis3Utils.selectList(this::selectMany, CityTable.INSTANCE.allColumn, CityTable.INSTANCE,
      +58          SelectDSLCompleter.allRows());
      +59    }
      +60  
      +61    class CityTable extends SqlTable {
      +62      private static final CityTable INSTANCE = new CityTable();
      +63      private final SqlColumn<Integer> id = column("id", JDBCType.INTEGER);
      +64      private final SqlColumn<String> name = column("name", JDBCType.VARCHAR);
      +65      private final SqlColumn<String> state = column("state", JDBCType.VARCHAR);
      +66      private final SqlColumn<String> country = column("country", JDBCType.VARCHAR);
      +67      private final BasicColumn[] allColumn = BasicColumn.columnList(id, name, state, country);
      +68  
      +69      private CityTable() {
      +70        super("city");
      +71      }
      +72    }
      +73  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..43aed16 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.dynamicsql;
      +17  
      +18  import org.slf4j.Logger;
      +19  import org.slf4j.LoggerFactory;
      +20  import org.springframework.boot.ApplicationRunner;
      +21  import org.springframework.boot.SpringApplication;
      +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +23  import org.springframework.context.annotation.Bean;
      +24  
      +25  @SpringBootApplication
      +26  public class MybatisSpringNativeSampleApplication {
      +27  
      +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +29  
      +30    public static void main(String[] args) {
      +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +32    }
      +33  
      +34    @Bean
      +35    ApplicationRunner runner(CityMapper mapper) {
      +36      return args -> {
      +37        City newCity = new City(null, "NYC", "NY", "USA");
      +38        mapper.insert(newCity);
      +39        log.info("New city: {}", newCity);
      +40        mapper.findAll().forEach(x -> log.info("{}", x));
      +41      };
      +42    }
      +43  
      +44  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html new file mode 100644 index 0000000..f0b42c7 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html @@ -0,0 +1,30 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dynamicsql + + + +

      org.mybatis.spring.nativex.sample.dynamicsql

      + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html new file mode 100644 index 0000000..066fc3b --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html @@ -0,0 +1,122 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dynamicsql + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.dynamicsql

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/external/entity/City.html b/ko/xref/org/mybatis/spring/nativex/sample/external/entity/City.html new file mode 100644 index 0000000..ec7e7fe --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/external/entity/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.external.entity;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html new file mode 100644 index 0000000..e0c890f --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.entity + + + +

      org.mybatis.spring.nativex.sample.external.entity

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html new file mode 100644 index 0000000..c00a1db --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.entity + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.external.entity

      +
      +
      +
        +
      • + + + + + + + + + + + + +
        Class Summary 
        Class
        + City +
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html new file mode 100644 index 0000000..068eb0a --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html @@ -0,0 +1,43 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.external.mapper;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.Mapper;
      +21  import org.mybatis.spring.nativex.sample.external.entity.City;
      +22  
      +23  @Mapper
      +24  public interface CityMapper {
      +25  
      +26    void insert(City city);
      +27  
      +28    Collection<City> findAll();
      +29  
      +30  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html new file mode 100644 index 0000000..b9a1209 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.mapper + + + +

      org.mybatis.spring.nativex.sample.external.mapper

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html new file mode 100644 index 0000000..3131db8 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.mapper + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.external.mapper

      +
      +
      +
        +
      • + + + + + + + + + + + + +
        Class Summary 
        Class
        + CityMapper +
        +
      • +
      +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/freemarker/City.html b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/City.html new file mode 100644 index 0000000..7bf128d --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.freemarker;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City() {
      +26      // NOP
      +27    }
      +28  
      +29    public City(Integer id, String name, String state, String country) {
      +30      this.id = id;
      +31      this.name = name;
      +32      this.state = state;
      +33      this.country = country;
      +34    }
      +35  
      +36    public Integer getId() {
      +37      return id;
      +38    }
      +39  
      +40    public void setId(Integer id) {
      +41      this.id = id;
      +42    }
      +43  
      +44    public String getName() {
      +45      return name;
      +46    }
      +47  
      +48    public void setName(String name) {
      +49      this.name = name;
      +50    }
      +51  
      +52    public String getState() {
      +53      return state;
      +54    }
      +55  
      +56    public void setState(String state) {
      +57      this.state = state;
      +58    }
      +59  
      +60    public String getCountry() {
      +61      return country;
      +62    }
      +63  
      +64    public void setCountry(String country) {
      +65      this.country = country;
      +66    }
      +67  
      +68    @Override
      +69    public String toString() {
      +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +71          + '}';
      +72    }
      +73  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html new file mode 100644 index 0000000..c09c1d4 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.freemarker;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.InsertProvider;
      +21  import org.apache.ibatis.annotations.Mapper;
      +22  import org.apache.ibatis.annotations.Options;
      +23  import org.apache.ibatis.annotations.SelectProvider;
      +24  
      +25  @Mapper
      +26  public interface CityMapper {
      +27  
      +28    @InsertProvider
      +29    @Options(useGeneratedKeys = true, keyProperty = "id")
      +30    void insert(City city);
      +31  
      +32    @SelectProvider
      +33    Collection<City> findAll();
      +34  
      +35  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..511300c --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,66 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.freemarker;
      +17  
      +18  import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider;
      +19  import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
      +20  import org.mybatis.spring.nativex.MyBatisResourcesScan;
      +21  import org.slf4j.Logger;
      +22  import org.slf4j.LoggerFactory;
      +23  import org.springframework.boot.ApplicationRunner;
      +24  import org.springframework.boot.SpringApplication;
      +25  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +26  import org.springframework.context.annotation.Bean;
      +27  
      +28  @MyBatisResourcesScan(resourceLocationPatterns = "org/mybatis/spring/nativex/sample/**/*.ftl")
      +29  @SpringBootApplication
      +30  public class MybatisSpringNativeSampleApplication {
      +31  
      +32    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +33  
      +34    public static void main(String[] args) {
      +35      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +36    }
      +37  
      +38    @Bean
      +39    ApplicationRunner runner(CityMapper mapper) {
      +40      return args -> {
      +41        City newCity = new City(null, "NYC", "NY", "USA");
      +42        mapper.insert(newCity);
      +43        log.info("New city: {}", newCity);
      +44        mapper.findAll().forEach(x -> log.info("{}", x));
      +45      };
      +46    }
      +47  
      +48    @Bean
      +49    ConfigurationCustomizer mybatisConfigurationCustomizer() {
      +50      return configuration -> configuration.setDefaultSqlProviderType(TemplateFilePathProvider.class);
      +51    }
      +52  
      +53  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html new file mode 100644 index 0000000..d561489 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.freemarker + + + +

      org.mybatis.spring.nativex.sample.freemarker

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html new file mode 100644 index 0000000..837ea00 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.freemarker + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.freemarker

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..5128fd2 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,63 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.scan;
      +17  
      +18  import org.mybatis.spring.annotation.MapperScan;
      +19  import org.mybatis.spring.nativex.MyBatisResourcesScan;
      +20  import org.mybatis.spring.nativex.sample.external.entity.City;
      +21  import org.mybatis.spring.nativex.sample.external.mapper.CityMapper;
      +22  import org.slf4j.Logger;
      +23  import org.slf4j.LoggerFactory;
      +24  import org.springframework.boot.ApplicationRunner;
      +25  import org.springframework.boot.SpringApplication;
      +26  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +27  import org.springframework.context.annotation.Bean;
      +28  
      +29  @MapperScan(basePackages = "org.mybatis.spring.nativex.sample.external.mapper", sqlSessionTemplateRef = "sqlSessionTemplate")
      +30  @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.external.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml")
      +31  @SpringBootApplication
      +32  public class MybatisSpringNativeSampleApplication {
      +33  
      +34    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +35  
      +36    public static void main(String[] args) {
      +37      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +38    }
      +39  
      +40    @Bean
      +41    ApplicationRunner runner(CityMapper mapper) {
      +42      return args -> {
      +43        City newCity = new City(null, "NYC", "NY", "USA");
      +44        mapper.insert(newCity);
      +45        log.info("New city: {}", newCity);
      +46        mapper.findAll().forEach(x -> log.info("{}", x));
      +47      };
      +48    }
      +49  
      +50  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html new file mode 100644 index 0000000..ae9d007 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.scan + + + +

      org.mybatis.spring.nativex.sample.scan

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html new file mode 100644 index 0000000..8e9188a --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.scan + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.scan

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/simple/City.html b/ko/xref/org/mybatis/spring/nativex/sample/simple/City.html new file mode 100644 index 0000000..555e760 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/simple/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.simple;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html new file mode 100644 index 0000000..49f306e --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.simple;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.Insert;
      +21  import org.apache.ibatis.annotations.Mapper;
      +22  import org.apache.ibatis.annotations.Options;
      +23  import org.apache.ibatis.annotations.Select;
      +24  
      +25  @Mapper
      +26  public interface CityMapper {
      +27  
      +28    @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})")
      +29    @Options(useGeneratedKeys = true, keyProperty = "id")
      +30    void insert(City city);
      +31  
      +32    @Select("SELECT id, name, state, country FROM city ORDER BY id")
      +33    Collection<City> findAll();
      +34  
      +35  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..dab3013 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.simple;
      +17  
      +18  import org.slf4j.Logger;
      +19  import org.slf4j.LoggerFactory;
      +20  import org.springframework.boot.ApplicationRunner;
      +21  import org.springframework.boot.SpringApplication;
      +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +23  import org.springframework.context.annotation.Bean;
      +24  
      +25  @SpringBootApplication
      +26  public class MybatisSpringNativeSampleApplication {
      +27  
      +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +29  
      +30    public static void main(String[] args) {
      +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +32    }
      +33  
      +34    @Bean
      +35    ApplicationRunner runner(CityMapper mapper) {
      +36      return args -> {
      +37        City newCity = new City(null, "NYC", "NY", "USA");
      +38        mapper.insert(newCity);
      +39        log.info("New city: {}", newCity);
      +40        mapper.findAll().forEach(x -> log.info("{}", x));
      +41      };
      +42    }
      +43  
      +44  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html new file mode 100644 index 0000000..45eaa0e --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.simple + + + +

      org.mybatis.spring.nativex.sample.simple

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html new file mode 100644 index 0000000..d89b844 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.simple + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.simple

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html new file mode 100644 index 0000000..5430ddb --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.sqlprovider;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html new file mode 100644 index 0000000..545d96d --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html @@ -0,0 +1,70 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.sqlprovider;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.InsertProvider;
      +21  import org.apache.ibatis.annotations.Mapper;
      +22  import org.apache.ibatis.annotations.Options;
      +23  import org.apache.ibatis.annotations.SelectProvider;
      +24  
      +25  @Mapper
      +26  public interface CityMapper {
      +27  
      +28    @InsertProvider(InsertSqlProvider.class)
      +29    @Options(useGeneratedKeys = true, keyProperty = "id")
      +30    void insert(City city);
      +31  
      +32    @SelectProvider(type = SelectSqlProvider.class, method = "provideSqlForFindAll")
      +33    Collection<City> findAll();
      +34  
      +35    class InsertSqlProvider {
      +36      private InsertSqlProvider() {
      +37        // NOP
      +38      }
      +39  
      +40      @SuppressWarnings({ "java:S3400", "unused" })
      +41      public static String provideSql() {
      +42        return "INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})";
      +43      }
      +44    }
      +45  
      +46    class SelectSqlProvider {
      +47      private SelectSqlProvider() {
      +48        // NOP
      +49      }
      +50  
      +51      @SuppressWarnings({ "java:S3400", "unused" })
      +52      public static String provideSqlForFindAll() {
      +53        return "SELECT id, name, state, country FROM city ORDER BY id";
      +54      }
      +55    }
      +56  
      +57  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..a6e32d0 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.sqlprovider;
      +17  
      +18  import org.slf4j.Logger;
      +19  import org.slf4j.LoggerFactory;
      +20  import org.springframework.boot.ApplicationRunner;
      +21  import org.springframework.boot.SpringApplication;
      +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +23  import org.springframework.context.annotation.Bean;
      +24  
      +25  @SpringBootApplication
      +26  public class MybatisSpringNativeSampleApplication {
      +27  
      +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +29  
      +30    public static void main(String[] args) {
      +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +32    }
      +33  
      +34    @Bean
      +35    ApplicationRunner runner(CityMapper mapper) {
      +36      return args -> {
      +37        City newCity = new City(null, "NYC", "NY", "USA");
      +38        mapper.insert(newCity);
      +39        log.info("New city: {}", newCity);
      +40        mapper.findAll().forEach(x -> log.info("{}", x));
      +41      };
      +42    }
      +43  
      +44  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html new file mode 100644 index 0000000..60acd96 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.sqlprovider + + + +

      org.mybatis.spring.nativex.sample.sqlprovider

      + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html new file mode 100644 index 0000000..9ffdf71 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.sqlprovider + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.sqlprovider

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html new file mode 100644 index 0000000..22f1abe --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.thymeleaf;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City() {
      +26      // NOP
      +27    }
      +28  
      +29    public City(Integer id, String name, String state, String country) {
      +30      this.id = id;
      +31      this.name = name;
      +32      this.state = state;
      +33      this.country = country;
      +34    }
      +35  
      +36    public Integer getId() {
      +37      return id;
      +38    }
      +39  
      +40    public void setId(Integer id) {
      +41      this.id = id;
      +42    }
      +43  
      +44    public String getName() {
      +45      return name;
      +46    }
      +47  
      +48    public void setName(String name) {
      +49      this.name = name;
      +50    }
      +51  
      +52    public String getState() {
      +53      return state;
      +54    }
      +55  
      +56    public void setState(String state) {
      +57      this.state = state;
      +58    }
      +59  
      +60    public String getCountry() {
      +61      return country;
      +62    }
      +63  
      +64    public void setCountry(String country) {
      +65      this.country = country;
      +66    }
      +67  
      +68    @Override
      +69    public String toString() {
      +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +71          + '}';
      +72    }
      +73  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html new file mode 100644 index 0000000..7d0c564 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.thymeleaf;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.InsertProvider;
      +21  import org.apache.ibatis.annotations.Mapper;
      +22  import org.apache.ibatis.annotations.Options;
      +23  import org.apache.ibatis.annotations.SelectProvider;
      +24  
      +25  @Mapper
      +26  public interface CityMapper {
      +27  
      +28    @InsertProvider
      +29    @Options(useGeneratedKeys = true, keyProperty = "id")
      +30    void insert(City city);
      +31  
      +32    @SelectProvider
      +33    Collection<City> findAll();
      +34  
      +35  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..40ccf95 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,78 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.thymeleaf;
      +17  
      +18  import org.mybatis.scripting.thymeleaf.SqlGenerator;
      +19  import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig;
      +20  import org.mybatis.scripting.thymeleaf.processor.BindVariableRender;
      +21  import org.mybatis.spring.nativex.MyBatisResourcesScan;
      +22  import org.slf4j.Logger;
      +23  import org.slf4j.LoggerFactory;
      +24  import org.springframework.boot.ApplicationRunner;
      +25  import org.springframework.boot.SpringApplication;
      +26  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +27  import org.springframework.context.annotation.Bean;
      +28  import org.springframework.jdbc.core.BeanPropertyRowMapper;
      +29  import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource;
      +30  import org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations;
      +31  import org.springframework.jdbc.support.GeneratedKeyHolder;
      +32  import org.springframework.jdbc.support.KeyHolder;
      +33  
      +34  @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.sample.thymeleaf", resourceLocationPatterns = "sqls/**/*.sql")
      +35  @SpringBootApplication
      +36  public class MybatisSpringNativeSampleApplication {
      +37  
      +38    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +39  
      +40    public static void main(String[] args) {
      +41      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +42    }
      +43  
      +44    @Bean
      +45    ApplicationRunner runner(NamedParameterJdbcOperations operations, SqlGenerator sqlGenerator) {
      +46      return args -> {
      +47        City newCity = new City(null, "NYC", "NY", "USA");
      +48        KeyHolder keyHolder = new GeneratedKeyHolder();
      +49        operations.update(sqlGenerator.generate("sqls/city/city-insert.sql", newCity),
      +50            new BeanPropertySqlParameterSource(newCity), keyHolder);
      +51        newCity.setId(keyHolder.getKeyAs(Integer.class));
      +52        log.info("New city: {}", newCity);
      +53        operations
      +54            .query(sqlGenerator.generate("sqls/city/city-findAll.sql", null), new BeanPropertyRowMapper<>(City.class))
      +55            .forEach(x -> log.info("{}", x));
      +56      };
      +57    }
      +58  
      +59    @Bean
      +60    SqlGenerator sqlGenerator() {
      +61      return new SqlGenerator(SqlGeneratorConfig.newInstanceWithCustomizer(
      +62          c -> c.getDialect().setBindVariableRender(BindVariableRender.BuiltIn.SPRING_NAMED_PARAMETER.getType())));
      +63    }
      +64  
      +65  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html new file mode 100644 index 0000000..d762e38 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.thymeleaf + + + +

      org.mybatis.spring.nativex.sample.thymeleaf

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html new file mode 100644 index 0000000..e51ca24 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.thymeleaf + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.thymeleaf

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/velocity/City.html b/ko/xref/org/mybatis/spring/nativex/sample/velocity/City.html new file mode 100644 index 0000000..d307b4d --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/velocity/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.velocity;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html new file mode 100644 index 0000000..581502c --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.velocity;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.Insert;
      +21  import org.apache.ibatis.annotations.Mapper;
      +22  import org.apache.ibatis.annotations.Options;
      +23  import org.apache.ibatis.annotations.Select;
      +24  
      +25  @Mapper
      +26  public interface CityMapper {
      +27  
      +28    @Insert("INSERT INTO city (name, state, country) VALUES(@{name}, @{state}, @{country})")
      +29    @Options(useGeneratedKeys = true, keyProperty = "id")
      +30    void insert(City city);
      +31  
      +32    @Select("SELECT id, name, state, country FROM city ORDER BY id")
      +33    Collection<City> findAll();
      +34  
      +35  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..2058b14 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.velocity;
      +17  
      +18  import org.slf4j.Logger;
      +19  import org.slf4j.LoggerFactory;
      +20  import org.springframework.boot.ApplicationRunner;
      +21  import org.springframework.boot.SpringApplication;
      +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +23  import org.springframework.context.annotation.Bean;
      +24  
      +25  @SpringBootApplication
      +26  public class MybatisSpringNativeSampleApplication {
      +27  
      +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +29  
      +30    public static void main(String[] args) {
      +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +32    }
      +33  
      +34    @Bean
      +35    ApplicationRunner runner(CityMapper mapper) {
      +36      return args -> {
      +37        City newCity = new City(null, "NYC", "NY", "USA");
      +38        mapper.insert(newCity);
      +39        log.info("New city: {}", newCity);
      +40        mapper.findAll().forEach(x -> log.info("{}", x));
      +41      };
      +42    }
      +43  
      +44  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html new file mode 100644 index 0000000..390c35e --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.velocity + + + +

      org.mybatis.spring.nativex.sample.velocity

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html new file mode 100644 index 0000000..ab33533 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.velocity + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.velocity

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/xml/City.html b/ko/xref/org/mybatis/spring/nativex/sample/xml/City.html new file mode 100644 index 0000000..3af4217 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/xml/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.xml;
      +17  
      +18  public class City {
      +19  
      +20    private Integer id;
      +21    private String name;
      +22    private String state;
      +23    private String country;
      +24  
      +25    public City(Integer id, String name, String state, String country) {
      +26      this.id = id;
      +27      this.name = name;
      +28      this.state = state;
      +29      this.country = country;
      +30    }
      +31  
      +32    public Integer getId() {
      +33      return id;
      +34    }
      +35  
      +36    public void setId(Integer id) {
      +37      this.id = id;
      +38    }
      +39  
      +40    public String getName() {
      +41      return name;
      +42    }
      +43  
      +44    public void setName(String name) {
      +45      this.name = name;
      +46    }
      +47  
      +48    public String getState() {
      +49      return state;
      +50    }
      +51  
      +52    public void setState(String state) {
      +53      this.state = state;
      +54    }
      +55  
      +56    public String getCountry() {
      +57      return country;
      +58    }
      +59  
      +60    public void setCountry(String country) {
      +61      this.country = country;
      +62    }
      +63  
      +64    @Override
      +65    public String toString() {
      +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
      +67          + '}';
      +68    }
      +69  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html b/ko/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html new file mode 100644 index 0000000..40b0d06 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html @@ -0,0 +1,42 @@ + + + +CityMapper xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.xml;
      +17  
      +18  import java.util.Collection;
      +19  
      +20  import org.apache.ibatis.annotations.Mapper;
      +21  
      +22  @Mapper
      +23  public interface CityMapper {
      +24  
      +25    void insert(City city);
      +26  
      +27    Collection<City> findAll();
      +28  
      +29  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html b/ko/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..e7b4594 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
      +1   /*
      +2    *    Copyright 2022 the original author or authors.
      +3    *
      +4    *    Licensed under the Apache License, Version 2.0 (the "License");
      +5    *    you may not use this file except in compliance with the License.
      +6    *    You may obtain a copy of the License at
      +7    *
      +8    *       https://www.apache.org/licenses/LICENSE-2.0
      +9    *
      +10   *    Unless required by applicable law or agreed to in writing, software
      +11   *    distributed under the License is distributed on an "AS IS" BASIS,
      +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +13   *    See the License for the specific language governing permissions and
      +14   *    limitations under the License.
      +15   */
      +16  package org.mybatis.spring.nativex.sample.xml;
      +17  
      +18  import org.slf4j.Logger;
      +19  import org.slf4j.LoggerFactory;
      +20  import org.springframework.boot.ApplicationRunner;
      +21  import org.springframework.boot.SpringApplication;
      +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
      +23  import org.springframework.context.annotation.Bean;
      +24  
      +25  @SpringBootApplication
      +26  public class MybatisSpringNativeSampleApplication {
      +27  
      +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
      +29  
      +30    public static void main(String[] args) {
      +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
      +32    }
      +33  
      +34    @Bean
      +35    ApplicationRunner runner(CityMapper mapper) {
      +36      return args -> {
      +37        City newCity = new City(null, "NYC", "NY", "USA");
      +38        mapper.insert(newCity);
      +39        log.info("New city: {}", newCity);
      +40        mapper.findAll().forEach(x -> log.info("{}", x));
      +41      };
      +42    }
      +43  
      +44  }
      +
      +
      + + + diff --git a/ko/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html b/ko/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html new file mode 100644 index 0000000..afc3ee4 --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.xml + + + +

      org.mybatis.spring.nativex.sample.xml

      +
      +

      Classes

      + +
      + + \ No newline at end of file diff --git a/ko/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html b/ko/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html new file mode 100644 index 0000000..47be44f --- /dev/null +++ b/ko/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.xml + + + + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      Package org.mybatis.spring.nativex.sample.xml

      +
      +
      + +
      + +
      + + + + +
      mybatis-spring-native 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/overview-frame.html b/ko/xref/overview-frame.html new file mode 100644 index 0000000..12d44d1 --- /dev/null +++ b/ko/xref/overview-frame.html @@ -0,0 +1,24 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + +

      mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference

      + +
      +

      Packages

      + +
      +

       

      + + + diff --git a/ko/xref/overview-summary.html b/ko/xref/overview-summary.html new file mode 100644 index 0000000..214472b --- /dev/null +++ b/ko/xref/overview-summary.html @@ -0,0 +1,92 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + +
      + + + + +
      mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
      +
      + + +
      +

      mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference

      +
      +
      + + + + + + + + + + + + +
      Packages 
      Package
      + org.mybatis.spring.nativex +
      +
      + +
      + + + + +
      mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
      +
      + + + + + \ No newline at end of file diff --git a/ko/xref/stylesheet.css b/ko/xref/stylesheet.css new file mode 100644 index 0000000..9e10f29 --- /dev/null +++ b/ko/xref/stylesheet.css @@ -0,0 +1,626 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} + +/* JXR style sheet */ +a.jxr_linenumber:link { + color: #00f; +} + +a.jxr_linenumber:visited { + color: #00a; +} + +a.jxr_linenumber:active, a.jxr_linenumber:hover { + color: #f30 !important; +} + +em.comment { + color: #390; +} + +.string { + color: #009; +} + +#overview { + padding: 2px; + font-size: 90%; + font-family: Helvetica, Arial, sans-serif; +} + +hr { + color: #000; +} + +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} + diff --git a/mvnw b/mvnw deleted file mode 100755 index 6683888..0000000 --- a/mvnw +++ /dev/null @@ -1,332 +0,0 @@ -#!/bin/sh -# ---------------------------------------------------------------------------- -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# ---------------------------------------------------------------------------- - -# ---------------------------------------------------------------------------- -# Apache Maven Wrapper startup batch script, version 3.3.2 -# -# Required ENV vars: -# ------------------ -# JAVA_HOME - location of a JDK home dir -# -# Optional ENV vars -# ----------------- -# MAVEN_OPTS - parameters passed to the Java VM when running Maven -# e.g. to debug Maven itself, use -# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -# MAVEN_SKIP_RC - flag to disable loading of mavenrc files -# ---------------------------------------------------------------------------- - -if [ -z "$MAVEN_SKIP_RC" ]; then - - if [ -f /usr/local/etc/mavenrc ]; then - . /usr/local/etc/mavenrc - fi - - if [ -f /etc/mavenrc ]; then - . /etc/mavenrc - fi - - if [ -f "$HOME/.mavenrc" ]; then - . "$HOME/.mavenrc" - fi - -fi - -# OS specific support. $var _must_ be set to either true or false. -cygwin=false -darwin=false -mingw=false -case "$(uname)" in -CYGWIN*) cygwin=true ;; -MINGW*) mingw=true ;; -Darwin*) - darwin=true - # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home - # See https://developer.apple.com/library/mac/qa/qa1170/_index.html - if [ -z "$JAVA_HOME" ]; then - if [ -x "/usr/libexec/java_home" ]; then - JAVA_HOME="$(/usr/libexec/java_home)" - export JAVA_HOME - else - JAVA_HOME="/Library/Java/Home" - export JAVA_HOME - fi - fi - ;; -esac - -if [ -z "$JAVA_HOME" ]; then - if [ -r /etc/gentoo-release ]; then - JAVA_HOME=$(java-config --jre-home) - fi -fi - -# For Cygwin, ensure paths are in UNIX format before anything is touched -if $cygwin; then - [ -n "$JAVA_HOME" ] \ - && JAVA_HOME=$(cygpath --unix "$JAVA_HOME") - [ -n "$CLASSPATH" ] \ - && CLASSPATH=$(cygpath --path --unix "$CLASSPATH") -fi - -# For Mingw, ensure paths are in UNIX format before anything is touched -if $mingw; then - [ -n "$JAVA_HOME" ] && [ -d "$JAVA_HOME" ] \ - && JAVA_HOME="$( - cd "$JAVA_HOME" || ( - echo "cannot cd into $JAVA_HOME." >&2 - exit 1 - ) - pwd - )" -fi - -if [ -z "$JAVA_HOME" ]; then - javaExecutable="$(which javac)" - if [ -n "$javaExecutable" ] && ! [ "$(expr "$javaExecutable" : '\([^ ]*\)')" = "no" ]; then - # readlink(1) is not available as standard on Solaris 10. - readLink=$(which readlink) - if [ ! "$(expr "$readLink" : '\([^ ]*\)')" = "no" ]; then - if $darwin; then - javaHome="$(dirname "$javaExecutable")" - javaExecutable="$(cd "$javaHome" && pwd -P)/javac" - else - javaExecutable="$(readlink -f "$javaExecutable")" - fi - javaHome="$(dirname "$javaExecutable")" - javaHome=$(expr "$javaHome" : '\(.*\)/bin') - JAVA_HOME="$javaHome" - export JAVA_HOME - fi - fi -fi - -if [ -z "$JAVACMD" ]; then - if [ -n "$JAVA_HOME" ]; then - if [ -x "$JAVA_HOME/jre/sh/java" ]; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - else - JAVACMD="$( - \unset -f command 2>/dev/null - \command -v java - )" - fi -fi - -if [ ! -x "$JAVACMD" ]; then - echo "Error: JAVA_HOME is not defined correctly." >&2 - echo " We cannot execute $JAVACMD" >&2 - exit 1 -fi - -if [ -z "$JAVA_HOME" ]; then - echo "Warning: JAVA_HOME environment variable is not set." >&2 -fi - -# traverses directory structure from process work directory to filesystem root -# first directory with .mvn subdirectory is considered project base directory -find_maven_basedir() { - if [ -z "$1" ]; then - echo "Path not specified to find_maven_basedir" >&2 - return 1 - fi - - basedir="$1" - wdir="$1" - while [ "$wdir" != '/' ]; do - if [ -d "$wdir"/.mvn ]; then - basedir=$wdir - break - fi - # workaround for JBEAP-8937 (on Solaris 10/Sparc) - if [ -d "${wdir}" ]; then - wdir=$( - cd "$wdir/.." || exit 1 - pwd - ) - fi - # end of workaround - done - printf '%s' "$( - cd "$basedir" || exit 1 - pwd - )" -} - -# concatenates all lines of a file -concat_lines() { - if [ -f "$1" ]; then - # Remove \r in case we run on Windows within Git Bash - # and check out the repository with auto CRLF management - # enabled. Otherwise, we may read lines that are delimited with - # \r\n and produce $'-Xarg\r' rather than -Xarg due to word - # splitting rules. - tr -s '\r\n' ' ' <"$1" - fi -} - -log() { - if [ "$MVNW_VERBOSE" = true ]; then - printf '%s\n' "$1" - fi -} - -BASE_DIR=$(find_maven_basedir "$(dirname "$0")") -if [ -z "$BASE_DIR" ]; then - exit 1 -fi - -MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} -export MAVEN_PROJECTBASEDIR -log "$MAVEN_PROJECTBASEDIR" - -########################################################################################## -# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central -# This allows using the maven wrapper in projects that prohibit checking in binary data. -########################################################################################## -wrapperJarPath="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" -if [ -r "$wrapperJarPath" ]; then - log "Found $wrapperJarPath" -else - log "Couldn't find $wrapperJarPath, downloading it ..." - - if [ -n "$MVNW_REPOURL" ]; then - wrapperUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar" - else - wrapperUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar" - fi - while IFS="=" read -r key value; do - # Remove '\r' from value to allow usage on windows as IFS does not consider '\r' as a separator ( considers space, tab, new line ('\n'), and custom '=' ) - safeValue=$(echo "$value" | tr -d '\r') - case "$key" in wrapperUrl) - wrapperUrl="$safeValue" - break - ;; - esac - done <"$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties" - log "Downloading from: $wrapperUrl" - - if $cygwin; then - wrapperJarPath=$(cygpath --path --windows "$wrapperJarPath") - fi - - if command -v wget >/dev/null; then - log "Found wget ... using wget" - [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--quiet" - if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then - wget $QUIET "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" - else - wget $QUIET --http-user="$MVNW_USERNAME" --http-password="$MVNW_PASSWORD" "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" - fi - elif command -v curl >/dev/null; then - log "Found curl ... using curl" - [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--silent" - if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then - curl $QUIET -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath" - else - curl $QUIET --user "$MVNW_USERNAME:$MVNW_PASSWORD" -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath" - fi - else - log "Falling back to using Java to download" - javaSource="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/MavenWrapperDownloader.java" - javaClass="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/MavenWrapperDownloader.class" - # For Cygwin, switch paths to Windows format before running javac - if $cygwin; then - javaSource=$(cygpath --path --windows "$javaSource") - javaClass=$(cygpath --path --windows "$javaClass") - fi - if [ -e "$javaSource" ]; then - if [ ! -e "$javaClass" ]; then - log " - Compiling MavenWrapperDownloader.java ..." - ("$JAVA_HOME/bin/javac" "$javaSource") - fi - if [ -e "$javaClass" ]; then - log " - Running MavenWrapperDownloader.java ..." - ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$wrapperUrl" "$wrapperJarPath") || rm -f "$wrapperJarPath" - fi - fi - fi -fi -########################################################################################## -# End of extension -########################################################################################## - -# If specified, validate the SHA-256 sum of the Maven wrapper jar file -wrapperSha256Sum="" -while IFS="=" read -r key value; do - case "$key" in wrapperSha256Sum) - wrapperSha256Sum=$value - break - ;; - esac -done <"$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties" -if [ -n "$wrapperSha256Sum" ]; then - wrapperSha256Result=false - if command -v sha256sum >/dev/null; then - if echo "$wrapperSha256Sum $wrapperJarPath" | sha256sum -c >/dev/null 2>&1; then - wrapperSha256Result=true - fi - elif command -v shasum >/dev/null; then - if echo "$wrapperSha256Sum $wrapperJarPath" | shasum -a 256 -c >/dev/null 2>&1; then - wrapperSha256Result=true - fi - else - echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 - echo "Please install either command, or disable validation by removing 'wrapperSha256Sum' from your maven-wrapper.properties." >&2 - exit 1 - fi - if [ $wrapperSha256Result = false ]; then - echo "Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised." >&2 - echo "Investigate or delete $wrapperJarPath to attempt a clean download." >&2 - echo "If you updated your Maven version, you need to update the specified wrapperSha256Sum property." >&2 - exit 1 - fi -fi - -MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" - -# For Cygwin, switch paths to Windows format before running java -if $cygwin; then - [ -n "$JAVA_HOME" ] \ - && JAVA_HOME=$(cygpath --path --windows "$JAVA_HOME") - [ -n "$CLASSPATH" ] \ - && CLASSPATH=$(cygpath --path --windows "$CLASSPATH") - [ -n "$MAVEN_PROJECTBASEDIR" ] \ - && MAVEN_PROJECTBASEDIR=$(cygpath --path --windows "$MAVEN_PROJECTBASEDIR") -fi - -# Provide a "standardized" way to retrieve the CLI args that will -# work with both Windows and non-Windows executions. -MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $*" -export MAVEN_CMD_LINE_ARGS - -WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain - -# shellcheck disable=SC2086 # safe args -exec "$JAVACMD" \ - $MAVEN_OPTS \ - $MAVEN_DEBUG_OPTS \ - -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ - "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ - ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/mvnw.cmd b/mvnw.cmd deleted file mode 100644 index da4fe4d..0000000 --- a/mvnw.cmd +++ /dev/null @@ -1,206 +0,0 @@ -@REM ---------------------------------------------------------------------------- -@REM Licensed to the Apache Software Foundation (ASF) under one -@REM or more contributor license agreements. See the NOTICE file -@REM distributed with this work for additional information -@REM regarding copyright ownership. The ASF licenses this file -@REM to you under the Apache License, Version 2.0 (the -@REM "License"); you may not use this file except in compliance -@REM with the License. You may obtain a copy of the License at -@REM -@REM https://www.apache.org/licenses/LICENSE-2.0 -@REM -@REM Unless required by applicable law or agreed to in writing, -@REM software distributed under the License is distributed on an -@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -@REM KIND, either express or implied. See the License for the -@REM specific language governing permissions and limitations -@REM under the License. -@REM ---------------------------------------------------------------------------- - -@REM ---------------------------------------------------------------------------- -@REM Apache Maven Wrapper startup batch script, version 3.3.2 -@REM -@REM Required ENV vars: -@REM JAVA_HOME - location of a JDK home dir -@REM -@REM Optional ENV vars -@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands -@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending -@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven -@REM e.g. to debug Maven itself, use -@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files -@REM ---------------------------------------------------------------------------- - -@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' -@echo off -@REM set title of command window -title %0 -@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' -@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% - -@REM set %HOME% to equivalent of $HOME -if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") - -@REM Execute a user defined script before this one -if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre -@REM check for pre script, once with legacy .bat ending and once with .cmd ending -if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %* -if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %* -:skipRcPre - -@setlocal - -set ERROR_CODE=0 - -@REM To isolate internal variables from possible post scripts, we use another setlocal -@setlocal - -@REM ==== START VALIDATION ==== -if not "%JAVA_HOME%" == "" goto OkJHome - -echo. >&2 -echo Error: JAVA_HOME not found in your environment. >&2 -echo Please set the JAVA_HOME variable in your environment to match the >&2 -echo location of your Java installation. >&2 -echo. >&2 -goto error - -:OkJHome -if exist "%JAVA_HOME%\bin\java.exe" goto init - -echo. >&2 -echo Error: JAVA_HOME is set to an invalid directory. >&2 -echo JAVA_HOME = "%JAVA_HOME%" >&2 -echo Please set the JAVA_HOME variable in your environment to match the >&2 -echo location of your Java installation. >&2 -echo. >&2 -goto error - -@REM ==== END VALIDATION ==== - -:init - -@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". -@REM Fallback to current working directory if not found. - -set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% -IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir - -set EXEC_DIR=%CD% -set WDIR=%EXEC_DIR% -:findBaseDir -IF EXIST "%WDIR%"\.mvn goto baseDirFound -cd .. -IF "%WDIR%"=="%CD%" goto baseDirNotFound -set WDIR=%CD% -goto findBaseDir - -:baseDirFound -set MAVEN_PROJECTBASEDIR=%WDIR% -cd "%EXEC_DIR%" -goto endDetectBaseDir - -:baseDirNotFound -set MAVEN_PROJECTBASEDIR=%EXEC_DIR% -cd "%EXEC_DIR%" - -:endDetectBaseDir - -IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig - -@setlocal EnableExtensions EnableDelayedExpansion -for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a -@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% - -:endReadAdditionalConfig - -SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" -set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" -set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain - -set WRAPPER_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar" - -FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( - IF "%%A"=="wrapperUrl" SET WRAPPER_URL=%%B -) - -@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central -@REM This allows using the maven wrapper in projects that prohibit checking in binary data. -if exist %WRAPPER_JAR% ( - if "%MVNW_VERBOSE%" == "true" ( - echo Found %WRAPPER_JAR% - ) -) else ( - if not "%MVNW_REPOURL%" == "" ( - SET WRAPPER_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar" - ) - if "%MVNW_VERBOSE%" == "true" ( - echo Couldn't find %WRAPPER_JAR%, downloading it ... - echo Downloading from: %WRAPPER_URL% - ) - - powershell -Command "&{"^ - "$webclient = new-object System.Net.WebClient;"^ - "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ - "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ - "}"^ - "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%WRAPPER_URL%', '%WRAPPER_JAR%')"^ - "}" - if "%MVNW_VERBOSE%" == "true" ( - echo Finished downloading %WRAPPER_JAR% - ) -) -@REM End of extension - -@REM If specified, validate the SHA-256 sum of the Maven wrapper jar file -SET WRAPPER_SHA_256_SUM="" -FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( - IF "%%A"=="wrapperSha256Sum" SET WRAPPER_SHA_256_SUM=%%B -) -IF NOT %WRAPPER_SHA_256_SUM%=="" ( - powershell -Command "&{"^ - "Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash;"^ - "$hash = (Get-FileHash \"%WRAPPER_JAR%\" -Algorithm SHA256).Hash.ToLower();"^ - "If('%WRAPPER_SHA_256_SUM%' -ne $hash){"^ - " Write-Error 'Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised.';"^ - " Write-Error 'Investigate or delete %WRAPPER_JAR% to attempt a clean download.';"^ - " Write-Error 'If you updated your Maven version, you need to update the specified wrapperSha256Sum property.';"^ - " exit 1;"^ - "}"^ - "}" - if ERRORLEVEL 1 goto error -) - -@REM Provide a "standardized" way to retrieve the CLI args that will -@REM work with both Windows and non-Windows executions. -set MAVEN_CMD_LINE_ARGS=%* - -%MAVEN_JAVA_EXE% ^ - %JVM_CONFIG_MAVEN_PROPS% ^ - %MAVEN_OPTS% ^ - %MAVEN_DEBUG_OPTS% ^ - -classpath %WRAPPER_JAR% ^ - "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^ - %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* -if ERRORLEVEL 1 goto error -goto end - -:error -set ERROR_CODE=1 - -:end -@endlocal & set ERROR_CODE=%ERROR_CODE% - -if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost -@REM check for post script, once with legacy .bat ending and once with .cmd ending -if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat" -if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd" -:skipRcPost - -@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' -if "%MAVEN_BATCH_PAUSE%"=="on" pause - -if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE% - -cmd /C exit /B %ERROR_CODE% diff --git a/pom.xml b/pom.xml deleted file mode 100644 index d0518b0..0000000 --- a/pom.xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - 4.0.0 - - - org.mybatis - mybatis-parent - 50 - - - - org.mybatis.spring.native - mybatis-spring-native - 0.1.0-SNAPSHOT - pom - - mybatis-spring-native - MyBatis integration with Spring Native feature - https://www.mybatis.org/spring-native/ - 2022 - - - - Kazuki Shimizu - kazuki43zoo@gmail.com - - - - - core - extensions - samples - docs - - - - scm:git:ssh://git@github.com/mybatis/spring-native.git - scm:git:ssh://git@github.com/mybatis/spring-native.git - HEAD - https://github.com/mybatis/spring-native/ - - - GitHub Issue Management - https://github.com/mybatis/spring-native/issues - - - GitHub Actions - https://github.com/mybatis/spring-native/actions - - - - gh-pages-scm - Mybatis GitHub Pages - scm:git:ssh://git@github.com/mybatis/spring-native.git - - - - - - 11 - 11 - - - 3.5.19 - 2.1.2 - 2.3.2 - 1.1.0 - 2.3.0 - 1.3.0 - 1.5.2 - 2.7.18 - 0.12.2 - - - 1757561022 - - - - - - org.mybatis - mybatis - ${mybatis.version} - - - org.mybatis - mybatis-spring - ${mybatis-spring.version} - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - ${mybatis-spring-boot.version} - - - org.mybatis.scripting - mybatis-thymeleaf - ${mybatis-thymeleaf.version} - - - org.mybatis.scripting - mybatis-velocity - ${mybatis-velocity.version} - - - org.mybatis.scripting - mybatis-freemarker - ${mybatis-freemarker.version} - - - org.mybatis.dynamic-sql - mybatis-dynamic-sql - ${mybatis-dynamic-sql.version} - - - org.mybatis.spring.boot - mybatis-spring-boot-autoconfigure - ${mybatis-spring-boot.version} - - - org.springframework.experimental - spring-native - ${spring-native.version} - - - org.springframework.experimental - spring-aot - ${spring-native.version} - - - org.springframework.boot - spring-boot-starter-parent - ${spring-boot.version} - pom - import - - - - - - - sonatype-oss-snapshots - Sonatype OSS Snapshots Repository - https://oss.sonatype.org/content/repositories/snapshots - - - - false - - spring-releases - Spring Releases - https://repo.spring.io/release - - - - false - - spring-milestone - Spring Milestone - https://repo.spring.io/milestone - - - - true - - spring-snapshot - Spring Snapshot - https://repo.spring.io/snapshot - - - - - - false - - spring-releases - Spring Releases - https://repo.spring.io/release - - - - false - - spring-milestone - Spring Milestone - https://repo.spring.io/milestone - - - - true - - spring-snapshot - Spring Snapshot - https://repo.spring.io/snapshot - - - - - - - true - ${project.basedir}/src/main/resources - - - ${project.build.directory}/site-src - true - ${project.basedir}/src/site - - - - - - org.apache.maven.plugins - maven-site-plugin - - en,zh_CN,ko - - ${project.build.directory}/site-src - - - - - - - diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 5db72dd..0000000 --- a/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] -} diff --git a/samples/LICENSE_HEADER b/samples/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/cache/LICENSE_HEADER b/samples/cache/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/cache/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/cache/format.xml b/samples/cache/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/cache/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/cache/pom.xml b/samples/cache/pom.xml deleted file mode 100644 index 7d807e3..0000000 --- a/samples/cache/pom.xml +++ /dev/null @@ -1,152 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-cache - mybatis-spring-native-sample-cache - - - - org.mybatis.spring.nativex.sample.cache - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - -Djdk.serialFilter=org.mybatis.spring.nativex.sample.cache.*;java.util.*;java.lang.*;!* - - - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/City.java b/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/City.java deleted file mode 100644 index 21c04dc..0000000 --- a/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/City.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.cache; - -import java.io.Serializable; - -public class City implements Serializable { - - private static final long serialVersionUID = 1L; - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/CityMapper.java b/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/CityMapper.java deleted file mode 100644 index e81284d..0000000 --- a/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/CityMapper.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.cache; - -import java.util.Collection; - -import org.apache.ibatis.annotations.CacheNamespace; -import org.apache.ibatis.annotations.Insert; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.Select; - -@CacheNamespace -@Mapper -public interface CityMapper { - - @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})") - @Options(useGeneratedKeys = true, keyProperty = "id") - void insert(City city); - - @Select("SELECT id, name, state, country FROM city ORDER BY id") - Collection findAll(); - -} diff --git a/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java b/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index b1ac045..0000000 --- a/samples/cache/src/main/java/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.cache; - -import java.util.ArrayList; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; -import org.springframework.nativex.hint.NativeHint; -import org.springframework.nativex.hint.SerializationHint; - -@NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class, - Number.class })) -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/cache/src/main/resources/application.properties b/samples/cache/src/main/resources/application.properties deleted file mode 100644 index 649f145..0000000 --- a/samples/cache/src/main/resources/application.properties +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -logging.level.org.mybatis.spring.nativex.sample.cache.CityMapper=trace diff --git a/samples/cache/src/main/resources/data.sql b/samples/cache/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/cache/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/cache/src/main/resources/schema.sql b/samples/cache/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/cache/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/cache/src/test/resources/expected-console.log b/samples/cache/src/test/resources/expected-console.log deleted file mode 100644 index 8f1ff11..0000000 --- a/samples/cache/src/test/resources/expected-console.log +++ /dev/null @@ -1,27 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[DEBUG] ==> Preparing: INSERT INTO city (name, state, country) VALUES(?, ?, ?) -[DEBUG] ==> Parameters: NYC(String), NY(String), USA(String) -[DEBUG] <== Updates: 1 -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[DEBUG] Cache Hit Ratio [org.mybatis.spring.nativex.sample.cache.CityMapper]: 0.0 -[DEBUG] ==> Preparing: SELECT id, name, state, country FROM city ORDER BY id -[DEBUG] ==> Parameters: -[TRACE] <== Columns: ID, NAME, STATE, COUNTRY -[TRACE] <== Row: 1, San Francisco, CA, USA -[TRACE] <== Row: 2, Boston, MA, USA -[TRACE] <== Row: 3, Portland, OR, USA -[TRACE] <== Row: 4, NYC, NY, USA -[DEBUG] <== Total: 4 -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[DEBUG] Cache Hit Ratio [org.mybatis.spring.nativex.sample.cache.CityMapper]: 0.5 -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/configuration/LICENSE_HEADER b/samples/configuration/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/configuration/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/configuration/format.xml b/samples/configuration/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/configuration/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/configuration/pom.xml b/samples/configuration/pom.xml deleted file mode 100644 index 5d3223d..0000000 --- a/samples/configuration/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-configuration - mybatis-spring-native-sample-configuration - - - - org.mybatis.spring.nativex.sample.configuration - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/City.java b/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/City.java deleted file mode 100644 index d492617..0000000 --- a/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/City.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.configuration; - -public class City { - - private Integer cityId; - private String cityName; - private String stateCode; - private String countryCode; - - public Integer getCityId() { - return cityId; - } - - public void setCityId(Integer cityId) { - this.cityId = cityId; - } - - public String getCityName() { - return cityName; - } - - public void setCityName(String cityName) { - this.cityName = cityName; - } - - public String getStateCode() { - return stateCode; - } - - public void setStateCode(String stateCode) { - this.stateCode = stateCode; - } - - public String getCountryCode() { - return countryCode; - } - - public void setCountryCode(String countryCode) { - this.countryCode = countryCode; - } - - @Override - public String toString() { - return "City{" + "cityId=" + cityId + ", cityName='" + cityName + '\'' + ", stateCode='" + stateCode + '\'' - + ", countryCode='" + countryCode + '\'' + '}'; - } -} diff --git a/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/CityMapper.java b/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/CityMapper.java deleted file mode 100644 index d052c60..0000000 --- a/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/CityMapper.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.configuration; - -import java.util.Collection; - -import org.apache.ibatis.annotations.Insert; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.Select; - -@Mapper -public interface CityMapper { - - @Insert("INSERT INTO city (city_name, state_code, country_code) VALUES(#{cityName}, #{stateCode}, #{countryCode})") - @Options(useGeneratedKeys = true, keyProperty = "cityId") - void insert(City city); - - @Select("SELECT city_id, city_name, state_code, country_code FROM city ORDER BY city_id") - Collection findAll(); - -} diff --git a/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java b/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index 729ca02..0000000 --- a/samples/configuration/src/main/java/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.configuration; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(); - newCity.setCityName("NYC"); - newCity.setStateCode("NY"); - newCity.setCountryCode("USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/configuration/src/main/resources/application.properties b/samples/configuration/src/main/resources/application.properties deleted file mode 100644 index fc3ba31..0000000 --- a/samples/configuration/src/main/resources/application.properties +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -mybatis.configuration.map-underscore-to-camel-case=true diff --git a/samples/configuration/src/main/resources/data.sql b/samples/configuration/src/main/resources/data.sql deleted file mode 100644 index 2d98526..0000000 --- a/samples/configuration/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(city_name, state_code, country_code) values( 'San Francisco', 'CA', 'USA'); -insert into city(city_name, state_code, country_code) values( 'Boston', 'MA', 'USA'); -insert into city(city_name, state_code, country_code) values( 'Portland', 'OR', 'USA'); diff --git a/samples/configuration/src/main/resources/schema.sql b/samples/configuration/src/main/resources/schema.sql deleted file mode 100644 index 0ebe757..0000000 --- a/samples/configuration/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - city_id INT PRIMARY KEY auto_increment, - city_name VARCHAR, - state_code VARCHAR, - country_code VARCHAR -); \ No newline at end of file diff --git a/samples/configuration/src/test/resources/expected-console.log b/samples/configuration/src/test/resources/expected-console.log deleted file mode 100644 index 4f72d9d..0000000 --- a/samples/configuration/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{cityId=4, cityName='NYC', stateCode='NY', countryCode='USA'} -[INFO] City{cityId=1, cityName='San Francisco', stateCode='CA', countryCode='USA'} -[INFO] City{cityId=2, cityName='Boston', stateCode='MA', countryCode='USA'} -[INFO] City{cityId=3, cityName='Portland', stateCode='OR', countryCode='USA'} -[INFO] City{cityId=4, cityName='NYC', stateCode='NY', countryCode='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/dao/LICENSE_HEADER b/samples/dao/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/dao/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/dao/format.xml b/samples/dao/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/dao/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/dao/pom.xml b/samples/dao/pom.xml deleted file mode 100644 index 8c604a7..0000000 --- a/samples/dao/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-dao - mybatis-spring-native-sample-dao - - - - org.mybatis.spring.nativex.sample.dao - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/City.java b/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/City.java deleted file mode 100644 index dec8c34..0000000 --- a/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.dao; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/CityDao.java b/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/CityDao.java deleted file mode 100644 index ed0605d..0000000 --- a/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/CityDao.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.dao; - -import java.util.Collection; - -import org.apache.ibatis.session.SqlSession; -import org.springframework.stereotype.Component; - -@Component -public class CityDao { - - private final SqlSession sqlSession; - - public CityDao(SqlSession sqlSession) { - this.sqlSession = sqlSession; - } - - public void insert(City city) { - sqlSession.insert("org.mybatis.spring.nativex.sample.dao.CityDao.insert", city); - } - - public Collection findAll() { - return sqlSession.selectList("org.mybatis.spring.nativex.sample.dao.CityDao.findAll"); - } - -} diff --git a/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java b/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index 4c2dbd0..0000000 --- a/samples/dao/src/main/java/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.dao; - -import org.mybatis.spring.nativex.MyBatisResourcesScan; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.dao", mapperLocationPatterns = "dao/**/*Dao.xml") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityDao cityDao) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - cityDao.insert(newCity); - log.info("New city: {}", newCity); - cityDao.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/dao/src/main/resources/application.properties b/samples/dao/src/main/resources/application.properties deleted file mode 100644 index 8a45f78..0000000 --- a/samples/dao/src/main/resources/application.properties +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -logging.level.org.mybatis.spring.mapper.ClassPathMapperScanner=off diff --git a/samples/dao/src/main/resources/dao/CityDao.xml b/samples/dao/src/main/resources/dao/CityDao.xml deleted file mode 100644 index 5eda106..0000000 --- a/samples/dao/src/main/resources/dao/CityDao.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - INSERT INTO city (name, state, country) VALUES (#{name}, #{state}, #{country}) - - - - - diff --git a/samples/dao/src/main/resources/data.sql b/samples/dao/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/dao/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/dao/src/main/resources/schema.sql b/samples/dao/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/dao/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/dao/src/test/resources/expected-console.log b/samples/dao/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/dao/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/dynamic-sql/LICENSE_HEADER b/samples/dynamic-sql/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/dynamic-sql/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/dynamic-sql/format.xml b/samples/dynamic-sql/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/dynamic-sql/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/dynamic-sql/pom.xml b/samples/dynamic-sql/pom.xml deleted file mode 100644 index 3dff393..0000000 --- a/samples/dynamic-sql/pom.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-dynamic-sql - mybatis-spring-native-sample-dynamic-sql - - - - org.mybatis.spring.nativex.sample.dynamicsql - - - - - org.mybatis.spring.native - mybatis-spring-native-extensions - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.mybatis.dynamic-sql - mybatis-dynamic-sql - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/City.java b/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/City.java deleted file mode 100644 index 5706ff8..0000000 --- a/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.dynamicsql; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java b/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java deleted file mode 100644 index 626c38a..0000000 --- a/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.dynamicsql; - -import java.sql.JDBCType; -import java.util.Collection; -import java.util.List; - -import org.apache.ibatis.annotations.InsertProvider; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.SelectProvider; -import org.mybatis.dynamic.sql.BasicColumn; -import org.mybatis.dynamic.sql.SqlColumn; -import org.mybatis.dynamic.sql.SqlTable; -import org.mybatis.dynamic.sql.insert.render.InsertStatementProvider; -import org.mybatis.dynamic.sql.select.SelectDSLCompleter; -import org.mybatis.dynamic.sql.select.render.SelectStatementProvider; -import org.mybatis.dynamic.sql.util.SqlProviderAdapter; -import org.mybatis.dynamic.sql.util.mybatis3.CommonCountMapper; -import org.mybatis.dynamic.sql.util.mybatis3.CommonDeleteMapper; -import org.mybatis.dynamic.sql.util.mybatis3.CommonInsertMapper; -import org.mybatis.dynamic.sql.util.mybatis3.CommonSelectMapper; -import org.mybatis.dynamic.sql.util.mybatis3.CommonUpdateMapper; -import org.mybatis.dynamic.sql.util.mybatis3.MyBatis3Utils; - -@Mapper -public interface CityMapper - extends CommonSelectMapper, CommonCountMapper, CommonDeleteMapper, CommonInsertMapper, CommonUpdateMapper { - - @InsertProvider(type = SqlProviderAdapter.class, method = "insert") - @Options(useGeneratedKeys = true, keyProperty = "row.id") - int insert(InsertStatementProvider insertStatement); - - @SelectProvider(type = SqlProviderAdapter.class, method = "select") - List selectMany(SelectStatementProvider selectStatement); - - default void insert(City city) { - MyBatis3Utils.insert(this::insert, city, CityTable.INSTANCE, c -> c.map(CityTable.INSTANCE.name).toProperty("name") - .map(CityTable.INSTANCE.state).toProperty("state").map(CityTable.INSTANCE.country).toProperty("country")); - } - - default Collection findAll() { - return MyBatis3Utils.selectList(this::selectMany, CityTable.INSTANCE.allColumn, CityTable.INSTANCE, - SelectDSLCompleter.allRows()); - } - - class CityTable extends SqlTable { - private static final CityTable INSTANCE = new CityTable(); - private final SqlColumn id = column("id", JDBCType.INTEGER); - private final SqlColumn name = column("name", JDBCType.VARCHAR); - private final SqlColumn state = column("state", JDBCType.VARCHAR); - private final SqlColumn country = column("country", JDBCType.VARCHAR); - private final BasicColumn[] allColumn = BasicColumn.columnList(id, name, state, country); - - private CityTable() { - super("city"); - } - } -} diff --git a/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java b/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index ec4842f..0000000 --- a/samples/dynamic-sql/src/main/java/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.dynamicsql; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/dynamic-sql/src/main/resources/application.properties b/samples/dynamic-sql/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/dynamic-sql/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/dynamic-sql/src/main/resources/data.sql b/samples/dynamic-sql/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/dynamic-sql/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/dynamic-sql/src/main/resources/schema.sql b/samples/dynamic-sql/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/dynamic-sql/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/dynamic-sql/src/test/resources/expected-console.log b/samples/dynamic-sql/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/dynamic-sql/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/format.xml b/samples/format.xml deleted file mode 100644 index 6c1a025..0000000 --- a/samples/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/freemarker/LICENSE_HEADER b/samples/freemarker/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/freemarker/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/freemarker/format.xml b/samples/freemarker/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/freemarker/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/freemarker/pom.xml b/samples/freemarker/pom.xml deleted file mode 100644 index c5bdb1b..0000000 --- a/samples/freemarker/pom.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-freemarker - mybatis-spring-native-sample-freemarker - - - - org.mybatis.spring.nativex.sample.freemarker - - - - - org.mybatis.spring.native - mybatis-spring-native-extensions - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.mybatis.scripting - mybatis-freemarker - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/City.java b/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/City.java deleted file mode 100644 index 677e820..0000000 --- a/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/City.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.freemarker; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City() { - // NOP - } - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/CityMapper.java b/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/CityMapper.java deleted file mode 100644 index 3ba1fe9..0000000 --- a/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/CityMapper.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.freemarker; - -import java.util.Collection; - -import org.apache.ibatis.annotations.InsertProvider; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.SelectProvider; - -@Mapper -public interface CityMapper { - - @InsertProvider - @Options(useGeneratedKeys = true, keyProperty = "id") - void insert(City city); - - @SelectProvider - Collection findAll(); - -} diff --git a/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java b/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index ffcd685..0000000 --- a/samples/freemarker/src/main/java/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.freemarker; - -import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider; -import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer; -import org.mybatis.spring.nativex.MyBatisResourcesScan; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@MyBatisResourcesScan(resourceLocationPatterns = "org/mybatis/spring/nativex/sample/**/*.ftl") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - - @Bean - ConfigurationCustomizer mybatisConfigurationCustomizer() { - return configuration -> configuration.setDefaultSqlProviderType(TemplateFilePathProvider.class); - } - -} diff --git a/samples/freemarker/src/main/resources/application.properties b/samples/freemarker/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/freemarker/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/freemarker/src/main/resources/data.sql b/samples/freemarker/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/freemarker/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/freemarker/src/main/resources/org/mybatis/spring/nativex/sample/freemarker/CityMapper/CityMapper-findAll.ftl b/samples/freemarker/src/main/resources/org/mybatis/spring/nativex/sample/freemarker/CityMapper/CityMapper-findAll.ftl deleted file mode 100644 index d6c1d91..0000000 --- a/samples/freemarker/src/main/resources/org/mybatis/spring/nativex/sample/freemarker/CityMapper/CityMapper-findAll.ftl +++ /dev/null @@ -1,20 +0,0 @@ -<#-- - - Copyright 2022 the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ---> -SELECT id, name, state, country -FROM city -ORDER BY id diff --git a/samples/freemarker/src/main/resources/org/mybatis/spring/nativex/sample/freemarker/CityMapper/CityMapper-insert.ftl b/samples/freemarker/src/main/resources/org/mybatis/spring/nativex/sample/freemarker/CityMapper/CityMapper-insert.ftl deleted file mode 100644 index 73ad73b..0000000 --- a/samples/freemarker/src/main/resources/org/mybatis/spring/nativex/sample/freemarker/CityMapper/CityMapper-insert.ftl +++ /dev/null @@ -1,19 +0,0 @@ -<#-- - - Copyright 2022 the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ---> -INSERT INTO city (name, state, country) -VALUES (<@p name='name'/>, <@p name='state'/>, <@p name='country'/>) diff --git a/samples/freemarker/src/main/resources/schema.sql b/samples/freemarker/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/freemarker/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/freemarker/src/test/resources/expected-console.log b/samples/freemarker/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/freemarker/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/pom.xml b/samples/pom.xml deleted file mode 100644 index 4c84c91..0000000 --- a/samples/pom.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native - 0.1.0-SNAPSHOT - - - mybatis-spring-native-samples - pom - mybatis-spring-native-samples - - - cache - configuration - dao - dynamic-sql - freemarker - scan - simple - sqlprovider - thymeleaf - thymeleaf-sqlgenerator - velocity - xml - - - - true - true - true - true - - 0.10.6 - - - - - - org.mybatis.spring.native - mybatis-spring-native-core - ${project.version} - - - org.mybatis.spring.native - mybatis-spring-native-extensions - ${project.version} - - - - - - - ${project.artifactId} - - - - org.graalvm.buildtools - native-maven-plugin - ${native-buildtools.version} - true - - - - - diff --git a/samples/scan/LICENSE_HEADER b/samples/scan/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/scan/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/scan/format.xml b/samples/scan/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/scan/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/scan/pom.xml b/samples/scan/pom.xml deleted file mode 100644 index dc94cfd..0000000 --- a/samples/scan/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-scan - mybatis-spring-native-sample-scan - - - - org.mybatis.spring.nativex.sample.scan - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/external/entity/City.java b/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/external/entity/City.java deleted file mode 100644 index cc2ba55..0000000 --- a/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/external/entity/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.external.entity; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java b/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java deleted file mode 100644 index 8ef9eab..0000000 --- a/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.external.mapper; - -import java.util.Collection; - -import org.apache.ibatis.annotations.Mapper; -import org.mybatis.spring.nativex.sample.external.entity.City; - -@Mapper -public interface CityMapper { - - void insert(City city); - - Collection findAll(); - -} diff --git a/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java b/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index ff311e0..0000000 --- a/samples/scan/src/main/java/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.scan; - -import org.mybatis.spring.annotation.MapperScan; -import org.mybatis.spring.nativex.MyBatisResourcesScan; -import org.mybatis.spring.nativex.sample.external.entity.City; -import org.mybatis.spring.nativex.sample.external.mapper.CityMapper; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@MapperScan(basePackages = "org.mybatis.spring.nativex.sample.external.mapper", sqlSessionTemplateRef = "sqlSessionTemplate") -@MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.external.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/scan/src/main/resources/application.properties b/samples/scan/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/scan/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/scan/src/main/resources/data.sql b/samples/scan/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/scan/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/scan/src/main/resources/mapper/CityMapper.xml b/samples/scan/src/main/resources/mapper/CityMapper.xml deleted file mode 100644 index 02476f4..0000000 --- a/samples/scan/src/main/resources/mapper/CityMapper.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - INSERT INTO city (name, state, country) VALUES (#{name}, #{state}, #{country}) - - - - - diff --git a/samples/scan/src/main/resources/schema.sql b/samples/scan/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/scan/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/scan/src/test/resources/expected-console.log b/samples/scan/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/scan/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/simple/LICENSE_HEADER b/samples/simple/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/simple/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/simple/format.xml b/samples/simple/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/simple/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/simple/pom.xml b/samples/simple/pom.xml deleted file mode 100644 index 3563e07..0000000 --- a/samples/simple/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-simple - mybatis-spring-native-sample-simple - - - - org.mybatis.spring.nativex.sample.simple - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/City.java b/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/City.java deleted file mode 100644 index fb88bc3..0000000 --- a/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.simple; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/CityMapper.java b/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/CityMapper.java deleted file mode 100644 index 23a4e6a..0000000 --- a/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/CityMapper.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.simple; - -import java.util.Collection; - -import org.apache.ibatis.annotations.Insert; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.Select; - -@Mapper -public interface CityMapper { - - @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})") - @Options(useGeneratedKeys = true, keyProperty = "id") - void insert(City city); - - @Select("SELECT id, name, state, country FROM city ORDER BY id") - Collection findAll(); - -} diff --git a/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java b/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index c434c6b..0000000 --- a/samples/simple/src/main/java/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.simple; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/simple/src/main/resources/application.properties b/samples/simple/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/simple/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/simple/src/main/resources/data.sql b/samples/simple/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/simple/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/simple/src/main/resources/schema.sql b/samples/simple/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/simple/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/simple/src/test/resources/expected-console.log b/samples/simple/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/simple/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/sqlprovider/LICENSE_HEADER b/samples/sqlprovider/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/sqlprovider/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/sqlprovider/format.xml b/samples/sqlprovider/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/sqlprovider/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/sqlprovider/pom.xml b/samples/sqlprovider/pom.xml deleted file mode 100644 index e20e23d..0000000 --- a/samples/sqlprovider/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-sqlprovider - mybatis-spring-native-sample-sqlprovider - - - - org.mybatis.spring.nativex.sample.sqlprovider - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/City.java b/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/City.java deleted file mode 100644 index d921831..0000000 --- a/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.sqlprovider; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java b/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java deleted file mode 100644 index b8a2e38..0000000 --- a/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.sqlprovider; - -import java.util.Collection; - -import org.apache.ibatis.annotations.InsertProvider; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.SelectProvider; - -@Mapper -public interface CityMapper { - - @InsertProvider(InsertSqlProvider.class) - @Options(useGeneratedKeys = true, keyProperty = "id") - void insert(City city); - - @SelectProvider(type = SelectSqlProvider.class, method = "provideSqlForFindAll") - Collection findAll(); - - class InsertSqlProvider { - private InsertSqlProvider() { - // NOP - } - - @SuppressWarnings({ "java:S3400", "unused" }) - public static String provideSql() { - return "INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})"; - } - } - - class SelectSqlProvider { - private SelectSqlProvider() { - // NOP - } - - @SuppressWarnings({ "java:S3400", "unused" }) - public static String provideSqlForFindAll() { - return "SELECT id, name, state, country FROM city ORDER BY id"; - } - } - -} diff --git a/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java b/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index 0a0191f..0000000 --- a/samples/sqlprovider/src/main/java/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.sqlprovider; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/sqlprovider/src/main/resources/application.properties b/samples/sqlprovider/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/sqlprovider/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/sqlprovider/src/main/resources/data.sql b/samples/sqlprovider/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/sqlprovider/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/sqlprovider/src/main/resources/schema.sql b/samples/sqlprovider/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/sqlprovider/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/sqlprovider/src/test/resources/expected-console.log b/samples/sqlprovider/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/sqlprovider/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/thymeleaf-sqlgenerator/LICENSE_HEADER b/samples/thymeleaf-sqlgenerator/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/thymeleaf-sqlgenerator/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/thymeleaf-sqlgenerator/format.xml b/samples/thymeleaf-sqlgenerator/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/thymeleaf-sqlgenerator/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/thymeleaf-sqlgenerator/pom.xml b/samples/thymeleaf-sqlgenerator/pom.xml deleted file mode 100644 index caf5c4a..0000000 --- a/samples/thymeleaf-sqlgenerator/pom.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-thymeleaf-sqlgenerator - mybatis-spring-native-sample-thymeleaf-sqlgenerator - - - - org.mybatis.spring.nativex.sample.thymeleaf.sqlgenerator - - - - - org.mybatis.spring.native - mybatis-spring-native-extensions - - - org.springframework.boot - spring-boot-starter-jdbc - - - org.mybatis.scripting - mybatis-thymeleaf - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/thymeleaf-sqlgenerator/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/City.java b/samples/thymeleaf-sqlgenerator/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/City.java deleted file mode 100644 index 7b81179..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/City.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.thymeleaf; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City() { - // NOP - } - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/thymeleaf-sqlgenerator/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java b/samples/thymeleaf-sqlgenerator/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index 1b34bc2..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.thymeleaf; - -import org.mybatis.scripting.thymeleaf.SqlGenerator; -import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig; -import org.mybatis.scripting.thymeleaf.processor.BindVariableRender; -import org.mybatis.spring.nativex.MyBatisResourcesScan; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; -import org.springframework.jdbc.core.BeanPropertyRowMapper; -import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource; -import org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; -import org.springframework.jdbc.support.GeneratedKeyHolder; -import org.springframework.jdbc.support.KeyHolder; - -@MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.sample.thymeleaf", resourceLocationPatterns = "sqls/**/*.sql") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(NamedParameterJdbcOperations operations, SqlGenerator sqlGenerator) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - KeyHolder keyHolder = new GeneratedKeyHolder(); - operations.update(sqlGenerator.generate("sqls/city/city-insert.sql", newCity), - new BeanPropertySqlParameterSource(newCity), keyHolder); - newCity.setId(keyHolder.getKeyAs(Integer.class)); - log.info("New city: {}", newCity); - operations - .query(sqlGenerator.generate("sqls/city/city-findAll.sql", null), new BeanPropertyRowMapper<>(City.class)) - .forEach(x -> log.info("{}", x)); - }; - } - - @Bean - SqlGenerator sqlGenerator() { - return new SqlGenerator(SqlGeneratorConfig.newInstanceWithCustomizer( - c -> c.getDialect().setBindVariableRender(BindVariableRender.BuiltIn.SPRING_NAMED_PARAMETER.getType()))); - } - -} diff --git a/samples/thymeleaf-sqlgenerator/src/main/resources/application.properties b/samples/thymeleaf-sqlgenerator/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/thymeleaf-sqlgenerator/src/main/resources/data.sql b/samples/thymeleaf-sqlgenerator/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/thymeleaf-sqlgenerator/src/main/resources/schema.sql b/samples/thymeleaf-sqlgenerator/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/thymeleaf-sqlgenerator/src/main/resources/sqls/city/city-findAll.sql b/samples/thymeleaf-sqlgenerator/src/main/resources/sqls/city/city-findAll.sql deleted file mode 100644 index 71fe317..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/resources/sqls/city/city-findAll.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -SELECT id, name, state, country -FROM city -ORDER BY id diff --git a/samples/thymeleaf-sqlgenerator/src/main/resources/sqls/city/city-insert.sql b/samples/thymeleaf-sqlgenerator/src/main/resources/sqls/city/city-insert.sql deleted file mode 100644 index efdf2a1..0000000 --- a/samples/thymeleaf-sqlgenerator/src/main/resources/sqls/city/city-insert.sql +++ /dev/null @@ -1,18 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -INSERT INTO city (name, state, country) -VALUES (/*[# mb:p="name"]*/ 'San Francisco' /*[/]*/, /*[# mb:p="state"]*/ 'CA' /*[/]*/, /*[# mb:p="country"]*/ 'USA' /*[/]*/) diff --git a/samples/thymeleaf-sqlgenerator/src/test/resources/expected-console.log b/samples/thymeleaf-sqlgenerator/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/thymeleaf-sqlgenerator/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/thymeleaf/LICENSE_HEADER b/samples/thymeleaf/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/thymeleaf/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/thymeleaf/format.xml b/samples/thymeleaf/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/thymeleaf/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/thymeleaf/pom.xml b/samples/thymeleaf/pom.xml deleted file mode 100644 index 1509de6..0000000 --- a/samples/thymeleaf/pom.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-thymeleaf - mybatis-spring-native-sample-thymeleaf - - - - org.mybatis.spring.nativex.sample.thymeleaf - - - - - org.mybatis.spring.native - mybatis-spring-native-extensions - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.mybatis.scripting - mybatis-thymeleaf - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/City.java b/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/City.java deleted file mode 100644 index 7b81179..0000000 --- a/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/City.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.thymeleaf; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City() { - // NOP - } - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java b/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java deleted file mode 100644 index 9fc9d43..0000000 --- a/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.thymeleaf; - -import java.util.Collection; - -import org.apache.ibatis.annotations.InsertProvider; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.SelectProvider; - -@Mapper -public interface CityMapper { - - @InsertProvider - @Options(useGeneratedKeys = true, keyProperty = "id") - void insert(City city); - - @SelectProvider - Collection findAll(); - -} diff --git a/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java b/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index 6abf19d..0000000 --- a/samples/thymeleaf/src/main/java/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.thymeleaf; - -import org.mybatis.scripting.thymeleaf.support.TemplateFilePathProvider; -import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer; -import org.mybatis.spring.nativex.MyBatisResourcesScan; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@MyBatisResourcesScan(resourceLocationPatterns = "org/mybatis/spring/nativex/sample/**/*.sql") -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - - @Bean - ConfigurationCustomizer mybatisConfigurationCustomizer() { - return configuration -> configuration.setDefaultSqlProviderType(TemplateFilePathProvider.class); - } - -} diff --git a/samples/thymeleaf/src/main/resources/application.properties b/samples/thymeleaf/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/thymeleaf/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/thymeleaf/src/main/resources/data.sql b/samples/thymeleaf/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/thymeleaf/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/thymeleaf/src/main/resources/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper/CityMapper-findAll.sql b/samples/thymeleaf/src/main/resources/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper/CityMapper-findAll.sql deleted file mode 100644 index 71fe317..0000000 --- a/samples/thymeleaf/src/main/resources/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper/CityMapper-findAll.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -SELECT id, name, state, country -FROM city -ORDER BY id diff --git a/samples/thymeleaf/src/main/resources/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper/CityMapper-insert.sql b/samples/thymeleaf/src/main/resources/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper/CityMapper-insert.sql deleted file mode 100644 index efdf2a1..0000000 --- a/samples/thymeleaf/src/main/resources/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper/CityMapper-insert.sql +++ /dev/null @@ -1,18 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -INSERT INTO city (name, state, country) -VALUES (/*[# mb:p="name"]*/ 'San Francisco' /*[/]*/, /*[# mb:p="state"]*/ 'CA' /*[/]*/, /*[# mb:p="country"]*/ 'USA' /*[/]*/) diff --git a/samples/thymeleaf/src/main/resources/schema.sql b/samples/thymeleaf/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/thymeleaf/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/thymeleaf/src/test/resources/expected-console.log b/samples/thymeleaf/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/thymeleaf/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/velocity/LICENSE_HEADER b/samples/velocity/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/velocity/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/velocity/format.xml b/samples/velocity/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/velocity/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/velocity/pom.xml b/samples/velocity/pom.xml deleted file mode 100644 index e6dcd7c..0000000 --- a/samples/velocity/pom.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-velocity - mybatis-spring-native-sample-velocity - - - - org.mybatis.spring.nativex.sample.velocity - - - - - org.mybatis.spring.native - mybatis-spring-native-extensions - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.mybatis.scripting - mybatis-velocity - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/City.java b/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/City.java deleted file mode 100644 index f6aa68b..0000000 --- a/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.velocity; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/CityMapper.java b/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/CityMapper.java deleted file mode 100644 index e1b5f51..0000000 --- a/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/CityMapper.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.velocity; - -import java.util.Collection; - -import org.apache.ibatis.annotations.Insert; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Options; -import org.apache.ibatis.annotations.Select; - -@Mapper -public interface CityMapper { - - @Insert("INSERT INTO city (name, state, country) VALUES(@{name}, @{state}, @{country})") - @Options(useGeneratedKeys = true, keyProperty = "id") - void insert(City city); - - @Select("SELECT id, name, state, country FROM city ORDER BY id") - Collection findAll(); - -} diff --git a/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java b/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index ab98cd0..0000000 --- a/samples/velocity/src/main/java/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.velocity; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/velocity/src/main/resources/application.properties b/samples/velocity/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/velocity/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/velocity/src/main/resources/data.sql b/samples/velocity/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/velocity/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/velocity/src/main/resources/schema.sql b/samples/velocity/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/velocity/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/velocity/src/test/resources/expected-console.log b/samples/velocity/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/velocity/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/samples/xml/LICENSE_HEADER b/samples/xml/LICENSE_HEADER deleted file mode 100644 index a81590a..0000000 --- a/samples/xml/LICENSE_HEADER +++ /dev/null @@ -1,13 +0,0 @@ - Copyright ${license.git.copyrightYears} the original author or authors. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/samples/xml/format.xml b/samples/xml/format.xml deleted file mode 100644 index 3c5c604..0000000 --- a/samples/xml/format.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/samples/xml/pom.xml b/samples/xml/pom.xml deleted file mode 100644 index 25bda7c..0000000 --- a/samples/xml/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.mybatis.spring.native - mybatis-spring-native-samples - 0.1.0-SNAPSHOT - - mybatis-spring-native-sample-xml - mybatis-spring-native-sample-xml - - - - org.mybatis.spring.nativex.sample.xml - - - - - org.mybatis.spring.native - mybatis-spring-native-core - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - - - org.springframework.experimental - spring-native - - - org.springframework.experimental - spring-aot - - - com.h2database - h2 - runtime - - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - ${repackage.classifier} - true - - paketobuildpacks/builder:tiny - - true - - - - - - repackage - - repackage - - - - - - org.springframework.experimental - spring-aot-maven-plugin - ${spring-native.version} - - - test-generate - - test-generate - - - - generate - - generate - - - - - - - - - - native - - exec - - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.graalvm.buildtools - native-maven-plugin - true - - - test-native - - test - - test - - - build-native - - build - - package - - - - - - - - - diff --git a/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/City.java b/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/City.java deleted file mode 100644 index 1c45e3a..0000000 --- a/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/City.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.xml; - -public class City { - - private Integer id; - private String name; - private String state; - private String country; - - public City(Integer id, String name, String state, String country) { - this.id = id; - this.name = name; - this.state = state; - this.country = country; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getCountry() { - return country; - } - - public void setCountry(String country) { - this.country = country; - } - - @Override - public String toString() { - return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\'' - + '}'; - } -} diff --git a/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/CityMapper.java b/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/CityMapper.java deleted file mode 100644 index a106540..0000000 --- a/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/CityMapper.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.xml; - -import java.util.Collection; - -import org.apache.ibatis.annotations.Mapper; - -@Mapper -public interface CityMapper { - - void insert(City city); - - Collection findAll(); - -} diff --git a/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java b/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java deleted file mode 100644 index e74981e..0000000 --- a/samples/xml/src/main/java/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2022 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.mybatis.spring.nativex.sample.xml; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.boot.ApplicationRunner; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class MybatisSpringNativeSampleApplication { - - private static final Logger log = LoggerFactory.getLogger("ApLog"); - - public static void main(String[] args) { - SpringApplication.run(MybatisSpringNativeSampleApplication.class, args); - } - - @Bean - ApplicationRunner runner(CityMapper mapper) { - return args -> { - City newCity = new City(null, "NYC", "NY", "USA"); - mapper.insert(newCity); - log.info("New city: {}", newCity); - mapper.findAll().forEach(x -> log.info("{}", x)); - }; - } - -} diff --git a/samples/xml/src/main/resources/application.properties b/samples/xml/src/main/resources/application.properties deleted file mode 100644 index 761337e..0000000 --- a/samples/xml/src/main/resources/application.properties +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright 2022 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - diff --git a/samples/xml/src/main/resources/data.sql b/samples/xml/src/main/resources/data.sql deleted file mode 100644 index 7eb08e9..0000000 --- a/samples/xml/src/main/resources/data.sql +++ /dev/null @@ -1,19 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -insert into city(name, state, country) values( 'San Francisco', 'CA', 'USA'); -insert into city(name, state, country) values( 'Boston', 'MA', 'USA'); -insert into city(name, state, country) values( 'Portland', 'OR', 'USA'); diff --git a/samples/xml/src/main/resources/org/mybatis/spring/nativex/sample/xml/CityMapper.xml b/samples/xml/src/main/resources/org/mybatis/spring/nativex/sample/xml/CityMapper.xml deleted file mode 100644 index 0242748..0000000 --- a/samples/xml/src/main/resources/org/mybatis/spring/nativex/sample/xml/CityMapper.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - INSERT INTO city (name, state, country) VALUES (#{name}, #{state}, #{country}) - - - - - diff --git a/samples/xml/src/main/resources/schema.sql b/samples/xml/src/main/resources/schema.sql deleted file mode 100644 index ef5ac0d..0000000 --- a/samples/xml/src/main/resources/schema.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- Copyright 2022 the original author or authors. --- --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- https://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- - -CREATE TABLE city ( - id INT PRIMARY KEY auto_increment, - name VARCHAR, - state VARCHAR, - country VARCHAR -); \ No newline at end of file diff --git a/samples/xml/src/test/resources/expected-console.log b/samples/xml/src/test/resources/expected-console.log deleted file mode 100644 index 3b084ab..0000000 --- a/samples/xml/src/test/resources/expected-console.log +++ /dev/null @@ -1,10 +0,0 @@ -[INFO] AOT mode enabled -[INFO] HikariPool-1 - Starting... -[INFO] HikariPool-1 - Start completed. -[INFO] New city: City{id=4, name='NYC', state='NY', country='USA'} -[INFO] City{id=1, name='San Francisco', state='CA', country='USA'} -[INFO] City{id=2, name='Boston', state='MA', country='USA'} -[INFO] City{id=3, name='Portland', state='OR', country='USA'} -[INFO] City{id=4, name='NYC', state='NY', country='USA'} -[INFO] HikariPool-1 - Shutdown initiated... -[INFO] HikariPool-1 - Shutdown completed. diff --git a/zh_CN/apidocs/allclasses-index.html b/zh_CN/apidocs/allclasses-index.html new file mode 100644 index 0000000..f5f6594 --- /dev/null +++ b/zh_CN/apidocs/allclasses-index.html @@ -0,0 +1,83 @@ + + + + +All Classes and Interfaces (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      All Classes and Interfaces

      +
      +
      +
      Classes
      +
      +
      Class
      +
      Description
      + +
      +
      Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
      +
      + +
      +
      Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
      +
      + +
      +
      Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
      +
      + +
      +
      Registers hints to make a MyBatis Velocity component work in a Spring Native context.
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/allpackages-index.html b/zh_CN/apidocs/allpackages-index.html new file mode 100644 index 0000000..803988f --- /dev/null +++ b/zh_CN/apidocs/allpackages-index.html @@ -0,0 +1,67 @@ + + + + +All Packages (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      All Packages

      +
      +
      Package Summary
      +
      +
      Package
      +
      Description
      + +
       
      +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/copy.svg b/zh_CN/apidocs/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/zh_CN/apidocs/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/zh_CN/apidocs/element-list b/zh_CN/apidocs/element-list new file mode 100644 index 0000000..6b31b7e --- /dev/null +++ b/zh_CN/apidocs/element-list @@ -0,0 +1 @@ +org.mybatis.spring.nativex diff --git a/zh_CN/apidocs/help-doc.html b/zh_CN/apidocs/help-doc.html new file mode 100644 index 0000000..c5fae5b --- /dev/null +++ b/zh_CN/apidocs/help-doc.html @@ -0,0 +1,186 @@ + + + + +API Help (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +

      JavaDoc Help

      + +
      +
      +

      Navigation

      +Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
      +
      +
      +

      Kinds of Pages

      +The following sections describe the different kinds of pages in this collection. +
      +

      Package

      +

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

      +
        +
      • Interfaces
      • +
      • Classes
      • +
      • Enums
      • +
      • Exception Classes
      • +
      • Annotation Types
      • +
      +
      +
      +

      Class or Interface

      +

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

      +
        +
      • Class Inheritance Diagram
      • +
      • Direct Subclasses
      • +
      • All Known Subinterfaces
      • +
      • All Known Implementing Classes
      • +
      • Class or Interface Declaration
      • +
      • Class or Interface Description
      • +
      +
      +
        +
      • Nested Class Summary
      • +
      • Enum Constant Summary
      • +
      • Field Summary
      • +
      • Property Summary
      • +
      • Constructor Summary
      • +
      • Method Summary
      • +
      • Required Element Summary
      • +
      • Optional Element Summary
      • +
      +
      +
        +
      • Enum Constant Details
      • +
      • Field Details
      • +
      • Property Details
      • +
      • Constructor Details
      • +
      • Method Details
      • +
      • Element Details
      • +
      +

      Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

      +

      The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

      +
      +
      +

      Other Files

      +

      Packages and modules may contain pages with additional information related to the declarations nearby.

      +
      +
      +

      Use

      +

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

      +
      +
      +

      Tree (Class Hierarchy)

      +

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

      +
        +
      • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
      • +
      • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
      • +
      +
      +
      +

      All Packages

      +

      The All Packages page contains an alphabetic index of all packages contained in the documentation.

      +
      +
      +

      All Classes and Interfaces

      +

      The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

      +
      +
      +

      Index

      +

      The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

      +
      +
      +
      +This help file applies to API documentation generated by the standard doclet.
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/index-all.html b/zh_CN/apidocs/index-all.html new file mode 100644 index 0000000..7c999d1 --- /dev/null +++ b/zh_CN/apidocs/index-all.html @@ -0,0 +1,93 @@ + + + + +Index (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Index

      +
      +M O 
      All Classes and Interfaces|All Packages +

      M

      +
      +
      MyBatisDynamicSqlNativeConfiguration - Class in org.mybatis.spring.nativex
      +
      +
      Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
      +
      +
      MyBatisDynamicSqlNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
      +
       
      +
      MyBatisFreeMarkerNativeConfiguration - Class in org.mybatis.spring.nativex
      +
      +
      Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
      +
      +
      MyBatisFreeMarkerNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
      +
       
      +
      MyBatisThymeleafNativeConfiguration - Class in org.mybatis.spring.nativex
      +
      +
      Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
      +
      +
      MyBatisThymeleafNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
      +
       
      +
      MyBatisVelocityNativeConfiguration - Class in org.mybatis.spring.nativex
      +
      +
      Registers hints to make a MyBatis Velocity component work in a Spring Native context.
      +
      +
      MyBatisVelocityNativeConfiguration() - Constructor for class org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
      +
       
      +
      +

      O

      +
      +
      org.mybatis.spring.nativex - package org.mybatis.spring.nativex
      +
       
      +
      +M O 
      All Classes and Interfaces|All Packages
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/index.html b/zh_CN/apidocs/index.html new file mode 100644 index 0000000..5cc2fc6 --- /dev/null +++ b/zh_CN/apidocs/index.html @@ -0,0 +1,25 @@ + + + + +mybatis-spring-native-extensions 0.1.0-SNAPSHOT API + + + + + + + + + + +
      + +

      org/mybatis/spring/nativex/package-summary.html

      +
      + + diff --git a/zh_CN/apidocs/legal/ADDITIONAL_LICENSE_INFO b/zh_CN/apidocs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/zh_CN/apidocs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/zh_CN/apidocs/legal/ASSEMBLY_EXCEPTION b/zh_CN/apidocs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/zh_CN/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/zh_CN/apidocs/legal/LICENSE b/zh_CN/apidocs/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/zh_CN/apidocs/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/zh_CN/apidocs/legal/jquery.md b/zh_CN/apidocs/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/zh_CN/apidocs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/zh_CN/apidocs/legal/jqueryUI.md b/zh_CN/apidocs/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/zh_CN/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/zh_CN/apidocs/link.svg b/zh_CN/apidocs/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/zh_CN/apidocs/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/zh_CN/apidocs/member-search-index.js b/zh_CN/apidocs/member-search-index.js new file mode 100644 index 0000000..054b926 --- /dev/null +++ b/zh_CN/apidocs/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"org.mybatis.spring.nativex","c":"MyBatisDynamicSqlNativeConfiguration","l":"MyBatisDynamicSqlNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisFreeMarkerNativeConfiguration","l":"MyBatisFreeMarkerNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisThymeleafNativeConfiguration","l":"MyBatisThymeleafNativeConfiguration()","u":"%3Cinit%3E()"},{"p":"org.mybatis.spring.nativex","c":"MyBatisVelocityNativeConfiguration","l":"MyBatisVelocityNativeConfiguration()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/zh_CN/apidocs/module-search-index.js b/zh_CN/apidocs/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/zh_CN/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..977a617 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,168 @@ + + + + +MyBatisCoreNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisCoreNativeConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.nativex.type.NativeConfiguration
      +
      +
      +
      public class MyBatisCoreNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
      +
      Registers hints to make a MyBatis Core components work in a Spring Native context.
      +
      +
      Author:
      +
      Kazuki Shimizu, Josh Long
      +
      See Also:
      +
      + +
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisCoreNativeConfiguration

          +
          public MyBatisCoreNativeConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..1537aae --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisDynamicSqlNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisDynamicSqlNativeConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.nativex.type.NativeConfiguration
      +
      +
      +
      public class MyBatisDynamicSqlNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
      +
      Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisDynamicSqlNativeConfiguration

          +
          public MyBatisDynamicSqlNativeConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..f9c9e9f --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisFreeMarkerNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisFreeMarkerNativeConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.nativex.type.NativeConfiguration
      +
      +
      +
      public class MyBatisFreeMarkerNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
      +
      Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisFreeMarkerNativeConfiguration

          +
          public MyBatisFreeMarkerNativeConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..e4ed7a9 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,192 @@ + + + + +MyBatisMapperNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisMapperNativeConfigurationProcessor

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
      +
      +
      +
      public class MyBatisMapperNativeConfigurationProcessor +extends Object +implements org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
      +
      Finds and registers reflection hints for all scanned mappers in the beanFactory.
      +
      +
      Author:
      +
      Kazuki Shimizu, Josh Long
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisMapperNativeConfigurationProcessor

          +
          public MyBatisMapperNativeConfigurationProcessor()
          +
          +
        • +
        +
        +
      • + +
      • +
        +

        Method Details

        +
          +
        • +
          +

          process

          +
          public void process(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, + org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry registry)
          +
          +
          Specified by:
          +
          process in interface org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
          +
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html new file mode 100644 index 0000000..44a8ada --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.List.html @@ -0,0 +1,145 @@ + + + + +MyBatisResourcesScan.List (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Annotation Type MyBatisResourcesScan.List

      +
      +
      +
      +
      Enclosing class:
      +
      MyBatisResourcesScan
      +
      +
      +
      @Import(org.mybatis.spring.nativex.MyBatisScannedResourcesHolder.RepeatableRegistrar.class) +@Retention(RUNTIME) +public static @interface MyBatisResourcesScan.List
      +
      Repeatable annotation for MyBatisResourcesScan.
      +
      +
      +
        + +
      • +
        +

        Optional Element Summary

        +
        Optional Elements
        +
        +
        Modifier and Type
        +
        Optional Element
        +
        Description
        + + +
         
        +
        +
        +
      • +
      +
      +
      + +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html new file mode 100644 index 0000000..a9e007e --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisResourcesScan.html @@ -0,0 +1,336 @@ + + + + +MyBatisResourcesScan (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Annotation Type MyBatisResourcesScan

      +
      +
      +
      +
      @Import(org.mybatis.spring.nativex.MyBatisScannedResourcesHolder.Registrar.class) +@Retention(RUNTIME) +@Repeatable(List.class) +public @interface MyBatisResourcesScan
      +
      The annotation that indicates scan rules of resources for running on native-image.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Element Details

        +
          +
        • +
          +

          typeAliasesPackages

          +
          String[] typeAliasesPackages
          +
          Return package names for scanning type aliases. +

          + Default is none. +

          +
          +
          Returns:
          +
          package names for scanning type aliases
          +
          +
          +
          Default:
          +
          {}
          +
          +
          +
        • +
        • +
          +

          typeAliasesSupperType

          +
          Class<?> typeAliasesSupperType
          +
          Return the filter type(super class) for scanning type aliases. +

          + Default is none. +

          +
          +
          Returns:
          +
          the filter type for scanning type aliases
          +
          +
          +
          Default:
          +
          void.class
          +
          +
          +
        • +
        • +
          +

          typeHandlerPackages

          +
          String[] typeHandlerPackages
          +
          Return package names for scanning type handler. +

          + Default is none. +

          +
          +
          Returns:
          +
          package names for scanning type handler
          +
          +
          +
          Default:
          +
          {}
          +
          +
          +
        • +
        • +
          +

          mapperLocationPatterns

          +
          String[] mapperLocationPatterns
          +
          Return location patterns for scanning mapper xml file under classpath. +

          + Default is none. +

          +
          +
          Returns:
          +
          location patterns for scanning mapper xml file under classpath
          +
          +
          +
          Default:
          +
          {}
          +
          +
          +
        • +
        • +
          +

          reflectionTypePackages

          +
          String[] reflectionTypePackages
          +
          Return package names for scanning reflection hint type. +

          + Default is none. +

          +
          +
          Returns:
          +
          package names for scanning reflection hint type
          +
          +
          +
          Default:
          +
          {}
          +
          +
          +
        • +
        • +
          +

          reflectionTypeSupperType

          +
          Class<?> reflectionTypeSupperType
          +
          Return the filter type(super class) for scanning reflection hint type. +

          + Default is none. +

          +
          +
          Returns:
          +
          the filter type for scanning reflection hint type
          +
          +
          +
          Default:
          +
          void.class
          +
          +
          +
        • +
        • +
          +

          typeAccesses

          +
          org.springframework.nativex.hint.TypeAccess[] typeAccesses
          +
          Return access scopes for applying scanned classes to reflection hint. +

          + Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS, + DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS, + QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS. +

          +
          +
          Returns:
          +
          access scopes for applying scanned classes to reflection hint
          +
          +
          +
          Default:
          +
          {}
          +
          +
          +
        • +
        • +
          +

          resourceLocationPatterns

          +
          String[] resourceLocationPatterns
          +
          Return location patterns for adding resource hint file under classpath. +

          + Default is none. +

          +
          +
          Returns:
          +
          location patterns for adding resource hint file under classpath
          +
          +
          +
          Default:
          +
          {}
          +
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..25d29c8 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html @@ -0,0 +1,364 @@ + + + + +MyBatisScannedResourcesHolder (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisScannedResourcesHolder

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisScannedResourcesHolder
      +
      +
      +
      +
      public class MyBatisScannedResourcesHolder +extends Object
      +
      The holder class that scanned resources using @MyBatisResourcesScan.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisScannedResourcesHolder

          +
          public MyBatisScannedResourcesHolder()
          +
          +
        • +
        +
        +
      • + +
      • +
        +

        Method Details

        +
          +
        • +
          +

          getTypeAliasesClasses

          +
          public Set<Class<?>> getTypeAliasesClasses()
          +
          Return class list of scanned type aliases.
          +
          +
          Returns:
          +
          class list of scanned type aliases
          +
          +
          +
        • +
        • +
          +

          setTypeAliasesClasses

          +
          public void setTypeAliasesClasses(Set<Class<?>> typeAliasClasses)
          +
          Set class list of scanned type aliases.
          +
          +
          Parameters:
          +
          typeAliasClasses - class list of scanned type aliases
          +
          +
          +
        • +
        • +
          +

          getTypeHandlerClasses

          +
          public Set<Class<?>> getTypeHandlerClasses()
          +
          Return class list of scanned type handler.
          +
          +
          Returns:
          +
          class list of scanned type handler
          +
          +
          +
        • +
        • +
          +

          setTypeHandlerClasses

          +
          public void setTypeHandlerClasses(Set<Class<?>> typeHandlerClasses)
          +
          Set class list of scanned type handler.
          +
          +
          Parameters:
          +
          typeHandlerClasses - class list of scanned type handler
          +
          +
          +
        • +
        • +
          +

          getMapperLocations

          +
          public Set<String> getMapperLocations()
          +
          Return location list of scanned mapper xml file.
          +
          +
          Returns:
          +
          location list of scanned mapper xml file
          +
          +
          +
        • +
        • +
          +

          setMapperLocations

          +
          public void setMapperLocations(Set<String> mapperLocations)
          +
          Set location list of scanned mapper xml file.
          +
          +
          Parameters:
          +
          mapperLocations - location list of scanned mapper xml file
          +
          +
          +
        • +
        • +
          +

          setReflectionClasses

          +
          public void setReflectionClasses(Set<Class<?>> reflectionClasses)
          +
          Set class list of scanned reflection hint type.
          +
          +
          Parameters:
          +
          reflectionClasses - class list of scanned reflection hint type
          +
          +
          +
        • +
        • +
          +

          getReflectionClasses

          +
          public Set<Class<?>> getReflectionClasses()
          +
          Return class list of scanned reflection hint type.
          +
          +
          Returns:
          +
          class list of scanned reflection hint type
          +
          +
          +
        • +
        • +
          +

          setReflectionTypeAccesses

          +
          public void setReflectionTypeAccesses(org.springframework.nativex.hint.TypeAccess[] reflectionTypeAccesses)
          +
          Set access scopes for applying reflection type that scanned.
          +
          +
          Parameters:
          +
          reflectionTypeAccesses - access scopes for applying reflection type that scanned
          +
          +
          +
        • +
        • +
          +

          getReflectionTypeAccesses

          +
          public org.springframework.nativex.hint.TypeAccess[] getReflectionTypeAccesses()
          +
          Return access scopes for applying reflection type that scanned.
          +
          +
          Returns:
          +
          access scopes for applying reflection type that scanned
          +
          +
          +
        • +
        • +
          +

          setResourceLocations

          +
          public void setResourceLocations(Set<String> resourceLocations)
          +
          Set location list of adding resource hint file.
          +
          +
          Parameters:
          +
          resourceLocations - location list of adding resource hint file
          +
          +
          +
        • +
        • +
          +

          getResourceLocations

          +
          public Set<String> getResourceLocations()
          +
          Return location list of adding resource hint file.
          +
          +
          Returns:
          +
          location list of adding resource hint file
          +
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..7fd092f --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,192 @@ + + + + +MyBatisScannedResourcesNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisScannedResourcesNativeConfigurationProcessor

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
      +
      +
      +
      public class MyBatisScannedResourcesNativeConfigurationProcessor +extends Object +implements org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
      +
      Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the BeanFactory.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisScannedResourcesNativeConfigurationProcessor

          +
          public MyBatisScannedResourcesNativeConfigurationProcessor()
          +
          +
        • +
        +
        +
      • + +
      • +
        +

        Method Details

        +
          +
        • +
          +

          process

          +
          public void process(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, + org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry registry)
          +
          +
          Specified by:
          +
          process in interface org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor
          +
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..3de9cd9 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,162 @@ + + + + +MyBatisSpringNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisSpringNativeConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.nativex.type.NativeConfiguration
      +
      +
      +
      public class MyBatisSpringNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
      +
      Registers hints to make a MyBatis Spring component work in a Spring Native context.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisSpringNativeConfiguration

          +
          public MyBatisSpringNativeConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..503750f --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisThymeleafNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisThymeleafNativeConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.nativex.type.NativeConfiguration
      +
      +
      +
      public class MyBatisThymeleafNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
      +
      Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisThymeleafNativeConfiguration

          +
          public MyBatisThymeleafNativeConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..7fb414d --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,161 @@ + + + + +MyBatisVelocityNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisVelocityNativeConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      org.springframework.nativex.type.NativeConfiguration
      +
      +
      +
      public class MyBatisVelocityNativeConfiguration +extends Object +implements org.springframework.nativex.type.NativeConfiguration
      +
      Registers hints to make a MyBatis Velocity component work in a Spring Native context.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisVelocityNativeConfiguration

          +
          public MyBatisVelocityNativeConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..6ef2f74 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,157 @@ + + + + +MyBatisSpringNativeAutoConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +

      Class MyBatisSpringNativeAutoConfiguration

      +
      +
      java.lang.Object +
      org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration
      +
      +
      +
      +
      @Configuration +@ConditionalOnClass({org.apache.ibatis.session.Configuration.class,org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer.class}) +@AutoConfigureBefore(org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration.class) +public class MyBatisSpringNativeAutoConfiguration +extends Object
      +
      The configuration class that configure automatically for spring-native.
      +
      +
      Author:
      +
      Kazuki Shimizu
      +
      +
      +
      + +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MyBatisSpringNativeAutoConfiguration

          +
          public MyBatisSpringNativeAutoConfiguration()
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..af94105 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/class-use/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration

      +
      +No usage of org.mybatis.spring.nativex.autoconfigure.MyBatisSpringNativeAutoConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..5832f92 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,108 @@ + + + + +org.mybatis.spring.nativex.autoconfigure (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Package org.mybatis.spring.nativex.autoconfigure

      +
      +
      +
      package org.mybatis.spring.nativex.autoconfigure
      +
      + +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html new file mode 100644 index 0000000..da42b1d --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-tree.html @@ -0,0 +1,75 @@ + + + + +org.mybatis.spring.nativex.autoconfigure Class Hierarchy (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Hierarchy For Package org.mybatis.spring.nativex.autoconfigure

      +
      +Package Hierarchies: + +
      +

      Class Hierarchy

      + +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html new file mode 100644 index 0000000..78016fb --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/autoconfigure/package-use.html @@ -0,0 +1,61 @@ + + + + +Uses of Package org.mybatis.spring.nativex.autoconfigure (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Package
      org.mybatis.spring.nativex.autoconfigure

      +
      +No usage of org.mybatis.spring.nativex.autoconfigure
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..c4349c0 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration

      +
      +No usage of org.mybatis.spring.nativex.MyBatisCoreNativeConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..70f5921 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration

      +
      +No usage of org.mybatis.spring.nativex.MyBatisDynamicSqlNativeConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..f1cb09b --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration

      +
      +No usage of org.mybatis.spring.nativex.MyBatisFreeMarkerNativeConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..23ce672 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor

      +
      +No usage of org.mybatis.spring.nativex.MyBatisMapperNativeConfigurationProcessor
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html new file mode 100644 index 0000000..518ba63 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.List.html @@ -0,0 +1,61 @@ + + + + +Uses of Annotation Type org.mybatis.spring.nativex.MyBatisResourcesScan.List (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Annotation Type
      org.mybatis.spring.nativex.MyBatisResourcesScan.List

      +
      +No usage of org.mybatis.spring.nativex.MyBatisResourcesScan.List
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html new file mode 100644 index 0000000..bdc5387 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisResourcesScan.html @@ -0,0 +1,61 @@ + + + + +Uses of Annotation Type org.mybatis.spring.nativex.MyBatisResourcesScan (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Annotation Type
      org.mybatis.spring.nativex.MyBatisResourcesScan

      +
      +No usage of org.mybatis.spring.nativex.MyBatisResourcesScan
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..59327ad --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesHolder.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisScannedResourcesHolder (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisScannedResourcesHolder

      +
      +No usage of org.mybatis.spring.nativex.MyBatisScannedResourcesHolder
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..97989a4 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor

      +
      +No usage of org.mybatis.spring.nativex.MyBatisScannedResourcesNativeConfigurationProcessor
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..cff583f --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration (mybatis-spring-native-core 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration

      +
      +No usage of org.mybatis.spring.nativex.MyBatisSpringNativeConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..b3c91d6 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration

      +
      +No usage of org.mybatis.spring.nativex.MyBatisThymeleafNativeConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..4922e47 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/class-use/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,60 @@ + + + + +Uses of Class org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Class
      org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration

      +
      +No usage of org.mybatis.spring.nativex.MyBatisVelocityNativeConfiguration
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/package-summary.html b/zh_CN/apidocs/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..79d7ea0 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,108 @@ + + + + +org.mybatis.spring.nativex (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Package org.mybatis.spring.nativex

      +
      +
      +
      package org.mybatis.spring.nativex
      +
      + +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/package-tree.html b/zh_CN/apidocs/org/mybatis/spring/nativex/package-tree.html new file mode 100644 index 0000000..a5c1452 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.mybatis.spring.nativex Class Hierarchy (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Hierarchy For Package org.mybatis.spring.nativex

      +
      +
      +

      Class Hierarchy

      + +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/org/mybatis/spring/nativex/package-use.html b/zh_CN/apidocs/org/mybatis/spring/nativex/package-use.html new file mode 100644 index 0000000..03097b5 --- /dev/null +++ b/zh_CN/apidocs/org/mybatis/spring/nativex/package-use.html @@ -0,0 +1,60 @@ + + + + +Uses of Package org.mybatis.spring.nativex (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Uses of Package
      org.mybatis.spring.nativex

      +
      +No usage of org.mybatis.spring.nativex
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/overview-summary.html b/zh_CN/apidocs/overview-summary.html new file mode 100644 index 0000000..adf2c76 --- /dev/null +++ b/zh_CN/apidocs/overview-summary.html @@ -0,0 +1,25 @@ + + + + +mybatis-spring-native-core 0.1.0-SNAPSHOT API + + + + + + + + + + +
      + +

      index.html

      +
      + + diff --git a/zh_CN/apidocs/overview-tree.html b/zh_CN/apidocs/overview-tree.html new file mode 100644 index 0000000..99ea3b9 --- /dev/null +++ b/zh_CN/apidocs/overview-tree.html @@ -0,0 +1,77 @@ + + + + +Class Hierarchy (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
      + +
      +
      +
      +

      Hierarchy For All Packages

      +
      +Package Hierarchies: + +
      +

      Class Hierarchy

      + +
      +
      +
      +
      + +
      +
      +
      + + diff --git a/zh_CN/apidocs/package-search-index.js b/zh_CN/apidocs/package-search-index.js new file mode 100644 index 0000000..50d984e --- /dev/null +++ b/zh_CN/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.mybatis.spring.nativex"}];updateSearchResults(); \ No newline at end of file diff --git a/zh_CN/apidocs/resources/glass.png b/zh_CN/apidocs/resources/glass.png new file mode 100644 index 0000000..a7f591f Binary files /dev/null and b/zh_CN/apidocs/resources/glass.png differ diff --git a/zh_CN/apidocs/resources/x.png b/zh_CN/apidocs/resources/x.png new file mode 100644 index 0000000..30548a7 Binary files /dev/null and b/zh_CN/apidocs/resources/x.png differ diff --git a/zh_CN/apidocs/script-dir/jquery-3.6.1.min.js b/zh_CN/apidocs/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/zh_CN/apidocs/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
      "],col:[2,"","
      "],tr:[2,"","
      "],td:[3,"","
      "],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
      ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
      "),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
        ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
        ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
        ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
        ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/zh_CN/apidocs/script.js b/zh_CN/apidocs/script.js new file mode 100644 index 0000000..8b9691a --- /dev/null +++ b/zh_CN/apidocs/script.js @@ -0,0 +1,253 @@ +/* + * Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; + +var oddRowColor = "odd-row-color"; +var evenRowColor = "even-row-color"; +var sortAsc = "sort-asc"; +var sortDesc = "sort-desc"; +var tableTab = "table-tab"; +var activeTableTab = "active-table-tab"; + +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +// Helper for making content containing release names comparable lexicographically +function makeComparable(s) { + return s.toLowerCase().replace(/(\d+)/g, + function(n, m) { + return ("000" + m).slice(-4); + }); +} + +// Switches between two styles depending on a condition +function toggleStyle(classList, condition, trueStyle, falseStyle) { + if (condition) { + classList.remove(falseStyle); + classList.add(trueStyle); + } else { + classList.remove(trueStyle); + classList.add(falseStyle); + } +} + +// Sorts the rows in a table lexicographically by the content of a specific column +function sortTable(header, columnIndex, columns) { + var container = header.parentElement; + var descending = header.classList.contains(sortAsc); + container.querySelectorAll("div.table-header").forEach( + function(header) { + header.classList.remove(sortAsc); + header.classList.remove(sortDesc); + } + ) + var cells = container.children; + var rows = []; + for (var i = columns; i < cells.length; i += columns) { + rows.push(Array.prototype.slice.call(cells, i, i + columns)); + } + var comparator = function(a, b) { + var ka = makeComparable(a[columnIndex].textContent); + var kb = makeComparable(b[columnIndex].textContent); + if (ka < kb) + return descending ? 1 : -1; + if (ka > kb) + return descending ? -1 : 1; + return 0; + }; + var sorted = rows.sort(comparator); + var visible = 0; + sorted.forEach(function(row) { + if (row[0].style.display !== 'none') { + var isEvenRow = visible++ % 2 === 0; + } + row.forEach(function(cell) { + toggleStyle(cell.classList, isEvenRow, evenRowColor, oddRowColor); + container.appendChild(cell); + }) + }); + toggleStyle(header.classList, descending, sortDesc, sortAsc); +} + +// Toggles the visibility of a table category in all tables in a page +function toggleGlobal(checkbox, selected, columns) { + var display = checkbox.checked ? '' : 'none'; + document.querySelectorAll("div.table-tabs").forEach(function(t) { + var id = t.parentElement.getAttribute("id"); + var selectedClass = id + "-tab" + selected; + // if selected is empty string it selects all uncategorized entries + var selectUncategorized = !Boolean(selected); + var visible = 0; + document.querySelectorAll('div.' + id) + .forEach(function(elem) { + if (selectUncategorized) { + if (elem.className.indexOf(selectedClass) === -1) { + elem.style.display = display; + } + } else if (elem.classList.contains(selectedClass)) { + elem.style.display = display; + } + if (elem.style.display === '') { + var isEvenRow = visible++ % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + } + }); + var displaySection = visible === 0 ? 'none' : ''; + t.parentElement.style.display = displaySection; + document.querySelector("li#contents-" + id).style.display = displaySection; + }) +} + +// Shows the elements of a table belonging to a specific category +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} +// Copy the contents of the local snippet to the clipboard +function copySnippet(button) { + copyToClipboard(button.nextElementSibling.innerText); + switchCopyLabel(button, button.firstElementChild); +} +function copyToClipboard(content) { + var textarea = document.createElement("textarea"); + textarea.style.height = 0; + document.body.appendChild(textarea); + textarea.value = content; + textarea.select(); + document.execCommand("copy"); + document.body.removeChild(textarea); +} +function switchCopyLabel(button, span) { + var copied = span.getAttribute("data-copied"); + button.classList.add("visible"); + var initialLabel = span.innerHTML; + span.innerHTML = copied; + setTimeout(function() { + button.classList.remove("visible"); + setTimeout(function() { + if (initialLabel !== copied) { + span.innerHTML = initialLabel; + } + }, 100); + }, 1900); +} +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + var timeoutId; + contentDiv.addEventListener("scroll", function(e) { + if (timeoutId) { + clearTimeout(timeoutId); + } + timeoutId = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + }, 100); + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/zh_CN/apidocs/search-page.js b/zh_CN/apidocs/search-page.js new file mode 100644 index 0000000..540c90f --- /dev/null +++ b/zh_CN/apidocs/search-page.js @@ -0,0 +1,284 @@ +/* + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +"use strict"; +$(function() { + var copy = $("#page-search-copy"); + var expand = $("#page-search-expand"); + var searchLink = $("span#page-search-link"); + var redirect = $("input#search-redirect"); + function setSearchUrlTemplate() { + var href = document.location.href.split(/[#?]/)[0]; + href += "?q=" + "%s"; + if (redirect.is(":checked")) { + href += "&r=1"; + } + searchLink.html(href); + copy[0].onmouseenter(); + } + function copyLink(e) { + copyToClipboard(this.previousSibling.innerText); + switchCopyLabel(this, this.lastElementChild); + } + copy.click(copyLink); + copy[0].onmouseenter = function() {}; + redirect.click(setSearchUrlTemplate); + setSearchUrlTemplate(); + copy.prop("disabled", false); + redirect.prop("disabled", false); + expand.click(function (e) { + var searchInfo = $("div.page-search-info"); + if(this.parentElement.hasAttribute("open")) { + searchInfo.attr("style", "border-width: 0;"); + } else { + searchInfo.attr("style", "border-width: 1px;").height(searchInfo.prop("scrollHeight")); + } + }); +}); +$(window).on("load", function() { + var input = $("#page-search-input"); + var reset = $("#page-search-reset"); + var notify = $("#page-search-notify"); + var resultSection = $("div#result-section"); + var resultContainer = $("div#result-container"); + var searchTerm = ""; + var activeTab = ""; + var fixedTab = false; + var visibleTabs = []; + var feelingLucky = false; + function renderResults(result) { + if (!result.length) { + notify.html(messages.noResult); + } else if (result.length === 1) { + notify.html(messages.oneResult); + } else { + notify.html(messages.manyResults.replace("{0}", result.length)); + } + resultContainer.empty(); + var r = { + "types": [], + "members": [], + "packages": [], + "modules": [], + "searchTags": [] + }; + for (var i in result) { + var item = result[i]; + var arr = r[item.category]; + arr.push(item); + } + if (!activeTab || r[activeTab].length === 0 || !fixedTab) { + Object.keys(r).reduce(function(prev, curr) { + if (r[curr].length > 0 && r[curr][0].score > prev) { + activeTab = curr; + return r[curr][0].score; + } + return prev; + }, 0); + } + if (feelingLucky && activeTab) { + notify.html(messages.redirecting) + var firstItem = r[activeTab][0]; + window.location = getURL(firstItem.indexItem, firstItem.category); + return; + } + if (result.length > 20) { + if (searchTerm[searchTerm.length - 1] === ".") { + if (activeTab === "types" && r["members"].length > r["types"].length) { + activeTab = "members"; + } else if (activeTab === "packages" && r["types"].length > r["packages"].length) { + activeTab = "types"; + } + } + } + var categoryCount = Object.keys(r).reduce(function(prev, curr) { + return prev + (r[curr].length > 0 ? 1 : 0); + }, 0); + visibleTabs = []; + var tabContainer = $("
        ").appendTo(resultContainer); + for (var key in r) { + var id = "#result-tab-" + key.replace("searchTags", "search_tags"); + if (r[key].length) { + var count = r[key].length >= 1000 ? "999+" : r[key].length; + if (result.length > 20 && categoryCount > 1) { + var button = $("").appendTo(tabContainer); + button.click(key, function(e) { + fixedTab = true; + renderResult(e.data, $(this)); + }); + visibleTabs.push(key); + } else { + $("" + categories[key] + + " (" + count + ")").appendTo(tabContainer); + renderTable(key, r[key]).appendTo(resultContainer); + tabContainer = $("
        ").appendTo(resultContainer); + + } + } + } + if (activeTab && result.length > 20 && categoryCount > 1) { + $("button#result-tab-" + activeTab).addClass("active-table-tab"); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + } + resultSection.show(); + function renderResult(category, button) { + activeTab = category; + setSearchUrl(); + resultContainer.find("div.summary-table").remove(); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + button.siblings().removeClass("active-table-tab"); + button.addClass("active-table-tab"); + } + } + function selectTab(category) { + $("button#result-tab-" + category).click(); + } + function renderTable(category, items) { + var table = $("
        ") + .addClass(category === "modules" + ? "one-column-search-results" + : "two-column-search-results"); + var col1, col2; + if (category === "modules") { + col1 = "Module"; + } else if (category === "packages") { + col1 = "Module"; + col2 = "Package"; + } else if (category === "types") { + col1 = "Package"; + col2 = "Class" + } else if (category === "members") { + col1 = "Class"; + col2 = "Member"; + } else if (category === "searchTags") { + col1 = "Location"; + col2 = "Name"; + } + $("
        " + col1 + "
        ").appendTo(table); + if (category !== "modules") { + $("
        " + col2 + "
        ").appendTo(table); + } + $.each(items, function(index, item) { + var rowColor = index % 2 ? "odd-row-color" : "even-row-color"; + renderItem(item, table, rowColor); + }); + return table; + } + function renderItem(item, table, rowColor) { + var label = getHighlightedText(item.input, item.boundaries, item.prefix.length, item.input.length); + var link = $("") + .attr("href", getURL(item.indexItem, item.category)) + .attr("tabindex", "0") + .addClass("search-result-link") + .html(label); + var container = getHighlightedText(item.input, item.boundaries, 0, item.prefix.length - 1); + if (item.category === "searchTags") { + container = item.indexItem.h || ""; + } + if (item.category !== "modules") { + $("
        ").html(container).addClass("col-plain").addClass(rowColor).appendTo(table); + } + $("
        ").html(link).addClass("col-last").addClass(rowColor).appendTo(table); + } + var timeout; + function schedulePageSearch() { + if (timeout) { + clearTimeout(timeout); + } + timeout = setTimeout(function () { + doPageSearch() + }, 100); + } + function doPageSearch() { + setSearchUrl(); + var term = searchTerm = input.val().trim(); + if (term === "") { + notify.html(messages.enterTerm); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + resultSection.hide(); + } else { + notify.html(messages.searching); + doSearch({ term: term, maxResults: 1200 }, renderResults); + } + } + function setSearchUrl() { + var query = input.val().trim(); + var url = document.location.pathname; + if (query) { + url += "?q=" + encodeURI(query); + if (activeTab && fixedTab) { + url += "&c=" + activeTab; + } + } + history.replaceState({query: query}, "", url); + } + input.on("input", function(e) { + feelingLucky = false; + schedulePageSearch(); + }); + $(document).keydown(function(e) { + if ((e.ctrlKey || e.metaKey) && (e.key === "ArrowLeft" || e.key === "ArrowRight")) { + if (activeTab && visibleTabs.length > 1) { + var idx = visibleTabs.indexOf(activeTab); + idx += e.key === "ArrowLeft" ? visibleTabs.length - 1 : 1; + selectTab(visibleTabs[idx % visibleTabs.length]); + return false; + } + } + }); + reset.click(function() { + notify.html(messages.enterTerm); + resultSection.hide(); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + input.val('').focus(); + setSearchUrl(); + }); + input.prop("disabled", false); + reset.prop("disabled", false); + + var urlParams = new URLSearchParams(window.location.search); + if (urlParams.has("q")) { + input.val(urlParams.get("q")) + } + if (urlParams.has("c")) { + activeTab = urlParams.get("c"); + fixedTab = true; + } + if (urlParams.get("r")) { + feelingLucky = true; + } + if (input.val()) { + doPageSearch(); + } else { + notify.html(messages.enterTerm); + } + input.select().focus(); +}); diff --git a/zh_CN/apidocs/search.html b/zh_CN/apidocs/search.html new file mode 100644 index 0000000..906a788 --- /dev/null +++ b/zh_CN/apidocs/search.html @@ -0,0 +1,75 @@ + + + + +Search (mybatis-spring-native-extensions 0.1.0-SNAPSHOT API) + + + + + + + + + + + + + +
        + +
        +
        +

        Search

        +
        + + +
        +Additional resources +
        +
        +
        +

        The help page provides an introduction to the scope and syntax of JavaDoc search.

        +

        You can use the <ctrl> or <cmd> keys in combination with the left and right arrow keys to switch between result tabs in this page.

        +

        The URL template below may be used to configure this page as a search engine in browsers that support this feature. It has been tested to work in Google Chrome and Mozilla Firefox. Note that other browsers may not support this feature or require a different URL format.

        +link +

        + +

        +
        +

        Loading search index...

        + +
        +
        +
        + +
        +
        +
        + + diff --git a/zh_CN/apidocs/search.js b/zh_CN/apidocs/search.js new file mode 100644 index 0000000..7673397 --- /dev/null +++ b/zh_CN/apidocs/search.js @@ -0,0 +1,458 @@ +/* + * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +"use strict"; +const messages = { + enterTerm: "Enter a search term", + noResult: "No results found", + oneResult: "Found one result", + manyResults: "Found {0} results", + loading: "Loading search index...", + searching: "Searching...", + redirecting: "Redirecting to first result...", + linkIcon: "Link icon", + linkToSection: "Link to this section" +} +const categories = { + modules: "Modules", + packages: "Packages", + types: "Types", + members: "Members", + searchTags: "Search Tags" +}; +const highlight = "$&"; +const NO_MATCH = {}; +const MAX_RESULTS = 300; +function checkUnnamed(name, separator) { + return name === "" || !name ? "" : name + separator; +} +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(str, boundaries, from, to) { + var start = from; + var text = ""; + for (var i = 0; i < boundaries.length; i += 2) { + var b0 = boundaries[i]; + var b1 = boundaries[i + 1]; + if (b0 >= to || b1 <= from) { + continue; + } + text += escapeHtml(str.slice(start, Math.max(start, b0))); + text += ""; + text += escapeHtml(str.slice(Math.max(start, b0), Math.min(to, b1))); + text += ""; + start = Math.min(to, b1); + } + text += escapeHtml(str.slice(start, to)); + return text; +} +function getURLPrefix(item, category) { + var urlPrefix = ""; + var slash = "/"; + if (category === "modules") { + return item.l + slash; + } else if (category === "packages" && item.m) { + return item.m + slash; + } else if (category === "types" || category === "members") { + if (item.m) { + urlPrefix = item.m + slash; + } else { + $.each(packageSearchIndex, function(index, it) { + if (it.m && item.p === it.l) { + urlPrefix = it.m + slash; + } + }); + } + } + return urlPrefix; +} +function getURL(item, category) { + if (item.url) { + return item.url; + } + var url = getURLPrefix(item, category); + if (category === "modules") { + url += "module-summary.html"; + } else if (category === "packages") { + if (item.u) { + url = item.u; + } else { + url += item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (category === "types") { + if (item.u) { + url = item.u; + } else { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.l + ".html"; + } + } else if (category === "members") { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.c + ".html" + "#"; + if (item.u) { + url += item.u; + } else { + url += item.l; + } + } else if (category === "searchTags") { + url += item.u; + } + item.url = url; + return url; +} +function createMatcher(term, camelCase) { + if (camelCase && !isUpperCase(term)) { + return null; // no need for camel-case matcher for lower case query + } + var pattern = ""; + var upperCase = []; + term.trim().split(/\s+/).forEach(function(w, index, array) { + var tokens = w.split(/(?=[A-Z,.()<>?[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + // ',' and '?' are the only delimiters commonly followed by space in java signatures + pattern += "(" + $.ui.autocomplete.escapeRegex(s).replace(/[,?]/g, "$&\\s*?") + ")"; + upperCase.push(false); + var isWordToken = /\w$/.test(s); + if (isWordToken) { + if (i === tokens.length - 1 && index < array.length - 1) { + // space in query string matches all delimiters + pattern += "(.*?)"; + upperCase.push(isUpperCase(s[0])); + } else { + if (!camelCase && isUpperCase(s) && s.length === 1) { + pattern += "()"; + } else { + pattern += "([a-z0-9$<>?[\\]]*?)"; + } + upperCase.push(isUpperCase(s[0])); + } + } else { + pattern += "()"; + upperCase.push(false); + } + } + }); + var re = new RegExp(pattern, "gi"); + re.upperCase = upperCase; + return re; +} +function findMatch(matcher, input, startOfName, endOfName) { + var from = startOfName; + matcher.lastIndex = from; + var match = matcher.exec(input); + // Expand search area until we get a valid result or reach the beginning of the string + while (!match || match.index + match[0].length < startOfName || endOfName < match.index) { + if (from === 0) { + return NO_MATCH; + } + from = input.lastIndexOf(".", from - 2) + 1; + matcher.lastIndex = from; + match = matcher.exec(input); + } + var boundaries = []; + var matchEnd = match.index + match[0].length; + var score = 5; + var start = match.index; + var prevEnd = -1; + for (var i = 1; i < match.length; i += 2) { + var isUpper = isUpperCase(input[start]); + var isMatcherUpper = matcher.upperCase[i]; + // capturing groups come in pairs, match and non-match + boundaries.push(start, start + match[i].length); + // make sure groups are anchored on a left word boundary + var prevChar = input[start - 1] || ""; + var nextChar = input[start + 1] || ""; + if (start !== 0 && !/[\W_]/.test(prevChar) && !/[\W_]/.test(input[start])) { + if (isUpper && (isLowerCase(prevChar) || isLowerCase(nextChar))) { + score -= 0.1; + } else if (isMatcherUpper && start === prevEnd) { + score -= isUpper ? 0.1 : 1.0; + } else { + return NO_MATCH; + } + } + prevEnd = start + match[i].length; + start += match[i].length + match[i + 1].length; + + // lower score for parts of the name that are missing + if (match[i + 1] && prevEnd < endOfName) { + score -= rateNoise(match[i + 1]); + } + } + // lower score if a type name contains unmatched camel-case parts + if (input[matchEnd - 1] !== "." && endOfName > matchEnd) + score -= rateNoise(input.slice(matchEnd, endOfName)); + score -= rateNoise(input.slice(0, Math.max(startOfName, match.index))); + + if (score <= 0) { + return NO_MATCH; + } + return { + input: input, + score: score, + boundaries: boundaries + }; +} +function isUpperCase(s) { + return s !== s.toLowerCase(); +} +function isLowerCase(s) { + return s !== s.toUpperCase(); +} +function rateNoise(str) { + return (str.match(/([.(])/g) || []).length / 5 + + (str.match(/([A-Z]+)/g) || []).length / 10 + + str.length / 20; +} +function doSearch(request, response) { + var term = request.term.trim(); + var maxResults = request.maxResults || MAX_RESULTS; + if (term.length === 0) { + return this.close(); + } + var matcher = { + plainMatcher: createMatcher(term, false), + camelCaseMatcher: createMatcher(term, true) + } + var indexLoaded = indexFilesLoaded(); + + function getPrefix(item, category) { + switch (category) { + case "packages": + return checkUnnamed(item.m, "/"); + case "types": + return checkUnnamed(item.p, "."); + case "members": + return checkUnnamed(item.p, ".") + item.c + "."; + default: + return ""; + } + } + function useQualifiedName(category) { + switch (category) { + case "packages": + return /[\s/]/.test(term); + case "types": + case "members": + return /[\s.]/.test(term); + default: + return false; + } + } + function searchIndex(indexArray, category) { + var matches = []; + if (!indexArray) { + if (!indexLoaded) { + matches.push({ l: messages.loading, category: category }); + } + return matches; + } + $.each(indexArray, function (i, item) { + var prefix = getPrefix(item, category); + var simpleName = item.l; + var qualifiedName = prefix + simpleName; + var useQualified = useQualifiedName(category); + var input = useQualified ? qualifiedName : simpleName; + var startOfName = useQualified ? prefix.length : 0; + var endOfName = category === "members" && input.indexOf("(", startOfName) > -1 + ? input.indexOf("(", startOfName) : input.length; + var m = findMatch(matcher.plainMatcher, input, startOfName, endOfName); + if (m === NO_MATCH && matcher.camelCaseMatcher) { + m = findMatch(matcher.camelCaseMatcher, input, startOfName, endOfName); + } + if (m !== NO_MATCH) { + m.indexItem = item; + m.prefix = prefix; + m.category = category; + if (!useQualified) { + m.input = qualifiedName; + m.boundaries = m.boundaries.map(function(b) { + return b + prefix.length; + }); + } + matches.push(m); + } + return true; + }); + return matches.sort(function(e1, e2) { + return e2.score - e1.score; + }).slice(0, maxResults); + } + + var result = searchIndex(moduleSearchIndex, "modules") + .concat(searchIndex(packageSearchIndex, "packages")) + .concat(searchIndex(typeSearchIndex, "types")) + .concat(searchIndex(memberSearchIndex, "members")) + .concat(searchIndex(tagSearchIndex, "searchTags")); + + if (!indexLoaded) { + updateSearchResults = function() { + doSearch(request, response); + } + } else { + updateSearchResults = function() {}; + } + response(result); +} +// JQuery search menu implementation +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> .result-item"); + // workaround for search result scrolling + this.menu._scrollIntoView = function _scrollIntoView( item ) { + var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight; + if ( this._hasScroll() ) { + borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0; + paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0; + offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop; + scroll = this.activeMenu.scrollTop(); + elementHeight = this.activeMenu.height() - 26; + itemHeight = item.outerHeight(); + + if ( offset < 0 ) { + this.activeMenu.scrollTop( scroll + offset ); + } else if ( offset + itemHeight > elementHeight ) { + this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight ); + } + } + }; + }, + _renderMenu: function(ul, items) { + var currentCategory = ""; + var widget = this; + widget.menu.bindings = $(); + $.each(items, function(index, item) { + if (item.category && item.category !== currentCategory) { + ul.append("
      • " + categories[item.category] + "
      • "); + currentCategory = item.category; + } + var li = widget._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", categories[item.category] + " : " + item.l); + } else { + li.attr("aria-label", item.l); + } + li.attr("class", "result-item"); + }); + ul.append(""); + }, + _renderItem: function(ul, item) { + var li = $("
      • ").appendTo(ul); + var div = $("
        ").appendTo(li); + var label = item.l + ? item.l + : getHighlightedText(item.input, item.boundaries, 0, item.input.length); + var idx = item.indexItem; + if (item.category === "searchTags" && idx && idx.h) { + if (idx.d) { + div.html(label + " (" + idx.h + ")
        " + + idx.d + "
        "); + } else { + div.html(label + " (" + idx.h + ")"); + } + } else { + div.html(label); + } + return li; + } +}); +$(function() { + var expanded = false; + var windowWidth; + function collapse() { + if (expanded) { + $("div#navbar-top").removeAttr("style"); + $("button#navbar-toggle-button") + .removeClass("expanded") + .attr("aria-expanded", "false"); + expanded = false; + } + } + $("button#navbar-toggle-button").click(function (e) { + if (expanded) { + collapse(); + } else { + var navbar = $("div#navbar-top"); + navbar.height(navbar.prop("scrollHeight")); + $("button#navbar-toggle-button") + .addClass("expanded") + .attr("aria-expanded", "true"); + expanded = true; + windowWidth = window.innerWidth; + } + }); + $("ul.sub-nav-list-small li a").click(collapse); + $("input#search-input").focus(collapse); + $("main").click(collapse); + $("section[id] > :header, :header[id], :header:has(a[id])").each(function(idx, el) { + // Create anchor links for headers with an associated id attribute + var hdr = $(el); + var id = hdr.attr("id") || hdr.parent("section").attr("id") || hdr.children("a").attr("id"); + if (id) { + hdr.append(" " + messages.linkIcon +""); + } + }); + $(window).on("orientationchange", collapse).on("resize", function(e) { + if (expanded && windowWidth !== window.innerWidth) collapse(); + }); + var search = $("#search-input"); + var reset = $("#reset-button"); + search.catcomplete({ + minLength: 1, + delay: 200, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push({ l: messages.noResult }); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.indexItem) { + var url = getURL(ui.item.indexItem, ui.item.category); + window.location.href = pathtoroot + url; + $("#search-input").focus(); + } + } + }); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + reset.click(function() { + search.val('').focus(); + }); + search.focus(); +}); diff --git a/zh_CN/apidocs/stylesheet.css b/zh_CN/apidocs/stylesheet.css new file mode 100644 index 0000000..f71489f --- /dev/null +++ b/zh_CN/apidocs/stylesheet.css @@ -0,0 +1,1272 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * These CSS custom properties (variables) define the core color and font + * properties used in this stylesheet. + */ +:root { + /* body, block and code fonts */ + --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + --code-font-family: 'DejaVu Sans Mono', monospace; + /* Base font sizes for body and code elements */ + --body-font-size: 14px; + --code-font-size: 14px; + /* Text colors for body and block elements */ + --body-text-color: #353833; + --block-text-color: #474747; + /* Background colors for various structural elements */ + --body-background-color: #ffffff; + --section-background-color: #f8f8f8; + --detail-background-color: #ffffff; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #4D7A97; + --navbar-text-color: #ffffff; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #dee3e9; + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #f8981d; + --selected-text-color: #253441; + --selected-link-color: #1f389c; + /* Background colors for generated tables */ + --even-row-color: #ffffff; + --odd-row-color: #eeeeef; + /* Text color for page title */ + --title-color: #2c4557; + /* Text colors for links */ + --link-color: #4A6782; + --link-color-active: #bb7a2a; + /* Snippet colors */ + --snippet-background-color: #ebecee; + --snippet-text-color: var(--block-text-color); + --snippet-highlight-color: #f7c590; + /* Border colors for structural elements and user defined tables */ + --border-color: #ededed; + --table-border-color: #000000; + /* Search input colors */ + --search-input-background-color: #ffffff; + --search-input-text-color: #000000; + --search-input-placeholder-color: #909090; + /* Highlight color for active search tag target */ + --search-tag-highlight-color: #ffff00; + /* Adjustments for icon and active background colors of copy-to-clipboard buttons */ + --copy-icon-brightness: 100%; + --copy-button-background-color-active: rgba(168, 168, 176, 0.3); + /* Colors for invalid tag notifications */ + --invalid-tag-background-color: #ffe6e6; + --invalid-tag-text-color: #000000; +} +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ +body { + background-color:var(--body-background-color); + color:var(--body-text-color); + font-family:var(--body-font-family); + font-size:var(--body-font-size); + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:var(--link-color); +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:var(--link-color-active); +} +pre { + font-family:var(--code-font-family); + font-size:1em; +} +h1 { + font-size:1.428em; +} +h2 { + font-size:1.285em; +} +h3 { + font-size:1.14em; +} +h4 { + font-size:1.072em; +} +h5 { + font-size:1.001em; +} +h6 { + font-size:0.93em; +} +/* Disable font boosting for selected elements */ +h1, h2, h3, h4, h5, h6, div.member-signature { + max-height: 1000em; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:var(--code-font-family); +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:var(--code-font-size); + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:var(--code-font-family); + font-size:1em; + padding-top:4px; +} +.summary-table dt code { + font-family:var(--code-font-family); + font-size:1em; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: var(--body-font-family); + font-size: 1em; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:0.915em; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +/* + * Styles for navigation bar. + */ +@media screen { + div.flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + header.flex-header { + flex: 0 0 auto; + } + div.flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + float:left; + width:100%; + clear:right; + min-height:2.8em; + padding:10px 0 0 0; + overflow:hidden; + font-size:0.857em; +} +button#navbar-toggle-button { + display:none; +} +ul.sub-nav-list-small { + display: none; +} +.sub-nav { + background-color:var(--subnav-background-color); + float:left; + width:100%; + overflow:hidden; + font-size:0.857em; +} +.sub-nav div { + clear:left; + float:left; + padding:6px; + text-transform:uppercase; +} +.sub-nav .sub-nav-list { + padding-top:4px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0; + padding:6px; + clear:none; + text-align:right; + position:relative; +} +ul.sub-nav-list li { + list-style:none; + float:left; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:var(--navbar-text-color); + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + color:var(--link-color-active); +} +.nav-bar-cell1-rev { + background-color:var(--selected-background-color); + color:var(--selected-text-color); + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header. + */ +.title { + color:var(--title-color); + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +ul.contents-list { + margin: 0 0 15px 0; + padding: 0; + list-style: none; +} +ul.contents-list li { + font-size:0.93em; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:var(--subnav-background-color); + border:1px solid var(--border-color); + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: var(--body-font-family); + font-size:0.856em; + font-weight:bold; + margin:10px 0 0 0; + color:var(--body-text-color); +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:1em; + font-family:var(--block-font-family) +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.ref-list { + padding:0; + margin:0; +} +ul.ref-list > li { + list-style:none; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.tag-list, ul.tag-list-long { + padding-left: 0; + list-style: none; +} +ul.tag-list li { + display: inline; +} +ul.tag-list li:not(:last-child):after, +ul.tag-list-long li:not(:last-child):after +{ + content: ", "; + white-space: pre-wrap; +} +ul.preview-feature-list { + list-style: none; + margin:0; + padding:0.1em; + line-height: 1.6em; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border:1px solid var(--border-color); + border-top:0; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:var(--selected-text-color); + clear:none; + overflow:hidden; + padding: 10px 0 0 1px; + margin:0; +} +.caption a:link, .caption a:visited { + color:var(--selected-link-color); +} +.caption a:hover, +.caption a:active { + color:var(--navbar-text-color); +} +.caption span { + font-weight:bold; + white-space:nowrap; + padding:5px 12px 7px 12px; + display:inline-block; + float:left; + background-color:var(--selected-background-color); + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:10px 0 0 0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 8px; +} +div.table-tabs > .active-table-tab { + background: var(--selected-background-color); + color: var(--selected-text-color); +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.two-column-search-results { + display: grid; + grid-template-columns: minmax(400px, max-content) minmax(400px, auto); +} +div.checkboxes { + line-height: 2em; +} +div.checkboxes > span { + margin-left: 10px; +} +div.checkboxes > label { + margin-left: 8px; + white-space: nowrap; +} +div.checkboxes > label > input { + margin: 0 2px; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(25%, max-content) minmax(25%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto); +} +.three-column-release-summary { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +@media screen and (max-width: 800px) { + .two-column-search-results { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); + } + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-release-summary { + display: grid; + grid-template-columns: minmax(70%, max-content) minmax(30%, max-content) + } + .three-column-summary .col-last, + .three-column-release-summary .col-last{ + grid-column-end: span 2; + } +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; + overflow-x: auto; + scrollbar-width: thin; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:var(--subnav-background-color); + font-weight: bold; +} +/* Sortable table columns */ +.table-header[onclick] { + cursor: pointer; +} +.table-header[onclick]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + '); + background-size:100% 100%; + width:9px; + height:14px; + margin-left:4px; + margin-bottom:-3px; +} +.table-header[onclick].sort-asc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + +} +.table-header[onclick].sort-desc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +.col-first, .col-first { + font-size:0.93em; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:0.93em; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited { + font-weight:bold; +} +.even-row-color, .even-row-color .table-header { + background-color:var(--even-row-color); +} +.odd-row-color, .odd-row-color .table-header { + background-color:var(--odd-row-color); +} +/* + * Styles for contents. + */ +div.block { + font-size:var(--body-font-size); + font-family:var(--block-font-family); +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:var(--code-font-family); + font-size:1em; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + /* Color of line numbers in source pages can be set via custom property below */ + color:var(--source-linenumber-color, green); + padding:0 30px 0 0; +} +.block { + display:block; + margin:0 10px 5px 0; + color:var(--block-text-color); +} +.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +details.invalid-tag, span.invalid-tag { + font-size:1em; + font-family:var(--block-font-family); + color: var(--invalid-tag-text-color); + background: var(--invalid-tag-background-color); + border: thin solid var(--table-border-color); + border-radius:2px; + padding: 2px 4px; + display:inline-block; +} +details summary { + cursor: pointer; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-state-active { + /* Overrides the color of selection used in jQuery UI */ + background: var(--selected-background-color); + border: 1px solid var(--selected-background-color); + color: var(--selected-text-color); +} +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:auto; + overflow-x:auto; + scrollbar-width: thin; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:1; + background-color: var(--body-background-color); +} +ul.ui-autocomplete li { + float:left; + clear:both; + min-width:100%; +} +ul.ui-autocomplete li.ui-static-link { + position:sticky; + bottom:0; + left:0; + background: var(--subnav-background-color); + padding: 5px 0; + font-family: var(--body-font-family); + font-size: 0.93em; + font-weight: bolder; + z-index: 2; +} +li.ui-static-link a, li.ui-static-link a:visited { + text-decoration:none; + color:var(--link-color); + float:right; + margin-right:20px; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +.ui-autocomplete .result-highlight { + font-weight:bold; +} +#search-input, #page-search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + background-color: var(--search-input-background-color); + color: var(--search-input-text-color); + border-color: var(--border-color); + padding-left:20px; + width: 250px; + margin: 0; +} +#search-input { + margin-left: 4px; +} +#reset-button { + background-color: transparent; + background-image:url('resources/x.png'); + background-repeat:no-repeat; + background-size:contain; + border:0; + border-radius:0; + width:12px; + height:12px; + position:absolute; + right:12px; + top:10px; + font-size:0; +} +::placeholder { + color:var(--search-input-placeholder-color); + opacity: 1; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:var(--search-tag-highlight-color); +} +details.page-search-details { + display: inline-block; +} +div#result-container { + font-size: 1em; +} +div#result-container a.search-result-link { + padding: 0; + margin: 4px 0; + width: 100%; +} +#result-container .result-highlight { + font-weight:bolder; +} +.page-search-info { + background-color: var(--subnav-background-color); + border-radius: 3px; + border: 0 solid var(--border-color); + padding: 0 8px; + overflow: hidden; + height: 0; + transition: all 0.2s ease; +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.page-search-header { + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + display: inline-block; +} +button.page-search-header { + border: none; + cursor: pointer; +} +span#page-search-link { + text-decoration: underline; +} +.module-graph span, .sealed-graph span { + display:none; + position:absolute; +} +.module-graph:hover span, .sealed-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0 20px 5px 10px; + border: 1px solid var(--border-color); + background-color: var(--section-background-color); +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:var(--detail-background-color); + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +/* + * Styles for header/section anchor links + */ +a.anchor-link { + opacity: 0; + transition: opacity 0.1s; +} +:hover > a.anchor-link { + opacity: 80%; +} +a.anchor-link:hover, +a.anchor-link:focus-visible, +a.anchor-link.visible { + opacity: 100%; +} +a.anchor-link > img { + width: 0.9em; + height: 0.9em; +} +/* + * Styles for copy-to-clipboard buttons + */ +button.copy { + opacity: 70%; + border: none; + border-radius: 3px; + position: relative; + background:none; + transition: opacity 0.3s; + cursor: pointer; +} +:hover > button.copy { + opacity: 80%; +} +button.copy:hover, +button.copy:active, +button.copy:focus-visible, +button.copy.visible { + opacity: 100%; +} +button.copy img { + position: relative; + background: none; + filter: brightness(var(--copy-icon-brightness)); +} +button.copy:active { + background-color: var(--copy-button-background-color-active); +} +button.copy span { + color: var(--body-text-color); + position: relative; + top: -0.1em; + transition: all 0.1s; + font-size: 0.76rem; + line-height: 1.2em; + opacity: 0; +} +button.copy:hover span, +button.copy:focus-visible span, +button.copy.visible span { + opacity: 100%; +} +/* search page copy button */ +button#page-search-copy { + margin-left: 0.4em; + padding:0.3em; + top:0.13em; +} +button#page-search-copy img { + width: 1.2em; + height: 1.2em; + padding: 0.01em 0; + top: 0.15em; +} +button#page-search-copy span { + color: var(--body-text-color); + line-height: 1.2em; + padding: 0.2em; + top: -0.18em; +} +div.page-search-info:hover button#page-search-copy span { + opacity: 100%; +} +/* snippet copy button */ +button.snippet-copy { + position: absolute; + top: 6px; + right: 6px; + height: 1.7em; + padding: 2px; +} +button.snippet-copy img { + width: 18px; + height: 18px; + padding: 0.05em 0; +} +button.snippet-copy span { + line-height: 1.2em; + padding: 0.2em; + position: relative; + top: -0.5em; +} +div.snippet-container:hover button.snippet-copy span { + opacity: 100%; +} +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.striped > thead { + background-color: var(--subnav-background-color); +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped > tbody > tr:nth-child(even) { + background-color: var(--odd-row-color) +} +table.striped > tbody > tr:nth-child(odd) { + background-color: var(--even-row-color) +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid var(--table-border-color); + border-right: 1px solid var(--table-border-color); +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak style for small screens. + */ +@media screen and (max-width: 920px) { + header.flex-header { + max-height: 100vh; + overflow-y: auto; + } + div#navbar-top { + height: 2.8em; + transition: height 0.35s ease; + } + ul.nav-list { + display: block; + width: 40%; + float:left; + clear: left; + margin: 10px 0 0 0; + padding: 0; + } + ul.nav-list li { + float: none; + padding: 6px; + margin-left: 10px; + margin-top: 2px; + } + ul.sub-nav-list-small { + display:block; + height: 100%; + width: 50%; + float: right; + clear: right; + background-color: var(--subnav-background-color); + color: var(--body-text-color); + margin: 6px 0 0 0; + padding: 0; + } + ul.sub-nav-list-small ul { + padding-left: 20px; + } + ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited { + color:var(--link-color); + } + ul.sub-nav-list-small a:hover { + color:var(--link-color-active); + } + ul.sub-nav-list-small li { + list-style:none; + float:none; + padding: 6px; + margin-top: 1px; + text-transform:uppercase; + } + ul.sub-nav-list-small > li { + margin-left: 10px; + } + ul.sub-nav-list-small li p { + margin: 5px 0; + } + div#navbar-sub-list { + display: none; + } + .top-nav a:link, .top-nav a:active, .top-nav a:visited { + display: block; + } + button#navbar-toggle-button { + width: 3.4em; + height: 2.8em; + background-color: transparent; + display: block; + float: left; + border: 0; + margin: 0 10px; + cursor: pointer; + font-size: 10px; + } + button#navbar-toggle-button .nav-bar-toggle-icon { + display: block; + width: 24px; + height: 3px; + margin: 1px 0 4px 0; + border-radius: 2px; + transition: all 0.1s; + background-color: var(--navbar-text-color); + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { + transform: rotate(45deg); + transform-origin: 10% 10%; + width: 26px; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { + opacity: 0; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { + transform: rotate(-45deg); + transform-origin: 10% 90%; + width: 26px; + } +} +@media screen and (max-width: 800px) { + .about-language { + padding-right: 16px; + } + ul.nav-list li { + margin-left: 5px; + } + ul.sub-nav-list-small > li { + margin-left: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 400px) { + .about-language { + font-size: 10px; + padding-right: 12px; + } +} +@media screen and (max-width: 400px) { + .nav-list-search { + width: 94%; + } + #search-input, #page-search-input { + width: 70%; + } +} +@media screen and (max-width: 320px) { + .nav-list-search > label { + display: none; + } + .nav-list-search { + width: 90%; + } + #search-input, #page-search-input { + width: 80%; + } +} + +pre.snippet { + background-color: var(--snippet-background-color); + color: var(--snippet-text-color); + padding: 10px; + margin: 12px 0; + overflow: auto; + white-space: pre; +} +div.snippet-container { + position: relative; +} +@media screen and (max-width: 800px) { + pre.snippet { + padding-top: 26px; + } + button.snippet-copy { + top: 4px; + right: 4px; + } +} +pre.snippet .italic { + font-style: italic; +} +pre.snippet .bold { + font-weight: bold; +} +pre.snippet .highlighted { + background-color: var(--snippet-highlight-color); + border-radius: 10%; +} diff --git a/zh_CN/apidocs/tag-search-index.js b/zh_CN/apidocs/tag-search-index.js new file mode 100644 index 0000000..0367dae --- /dev/null +++ b/zh_CN/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/zh_CN/apidocs/type-search-index.js b/zh_CN/apidocs/type-search-index.js new file mode 100644 index 0000000..05c9d7d --- /dev/null +++ b/zh_CN/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"org.mybatis.spring.nativex","l":"MyBatisDynamicSqlNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisFreeMarkerNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisThymeleafNativeConfiguration"},{"p":"org.mybatis.spring.nativex","l":"MyBatisVelocityNativeConfiguration"}];updateSearchResults(); \ No newline at end of file diff --git a/zh_CN/checkstyle-aggregate.html b/zh_CN/checkstyle-aggregate.html new file mode 100644 index 0000000..4d444b1 --- /dev/null +++ b/zh_CN/checkstyle-aggregate.html @@ -0,0 +1,1089 @@ + + + + + + + + + + mybatis-spring-native – Checkstyle Results + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Checkstyle Results

        +

        The following document contains the results of Checkstyle 10.13.0 with checkstyle.xml ruleset.

        +

        Summary

        + + + + + + + + + + +
        Files Info Warnings Errors
        390730
        +

        Files

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        File I W E
        org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java010
        org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java010
        org/mybatis/spring/nativex/MyBatisResourcesScan.java020
        org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java010
        org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java010
        org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java010
        org/mybatis/spring/nativex/sample/cache/City.java020
        org/mybatis/spring/nativex/sample/cache/CityMapper.java020
        org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java020
        org/mybatis/spring/nativex/sample/configuration/City.java010
        org/mybatis/spring/nativex/sample/configuration/CityMapper.java020
        org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java010
        org/mybatis/spring/nativex/sample/dao/City.java020
        org/mybatis/spring/nativex/sample/dao/CityDao.java020
        org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java020
        org/mybatis/spring/nativex/sample/dynamicsql/City.java020
        org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java040
        org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java010
        org/mybatis/spring/nativex/sample/external/entity/City.java020
        org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java020
        org/mybatis/spring/nativex/sample/freemarker/City.java020
        org/mybatis/spring/nativex/sample/freemarker/CityMapper.java020
        org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java010
        org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java030
        org/mybatis/spring/nativex/sample/simple/City.java020
        org/mybatis/spring/nativex/sample/simple/CityMapper.java020
        org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java010
        org/mybatis/spring/nativex/sample/sqlprovider/City.java020
        org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java040
        org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java010
        org/mybatis/spring/nativex/sample/thymeleaf/City.java040
        org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java020
        org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java030
        org/mybatis/spring/nativex/sample/velocity/City.java020
        org/mybatis/spring/nativex/sample/velocity/CityMapper.java020
        org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java010
        org/mybatis/spring/nativex/sample/xml/City.java020
        org/mybatis/spring/nativex/sample/xml/CityMapper.java020
        org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java010
        +

        Rules

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        CategoryRuleViolationsSeverity
        codingOverloadMethodsDeclarationOrder1 Warning
        importsCustomImportOrder +
          +
        • separateLineBetweenGroups: "true"
        • +
        • sortImportsInGroupAlphabetically: "true"
        • +
        • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
        • +
        • tokens: "IMPORT, STATIC_IMPORT, PACKAGE_DEF"
        18 Warning
        javadocMissingJavadocMethod +
          +
        • scope: "public"
        • +
        • tokens: "METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"
        • +
        • minLineCount: "2"
        • +
        • allowedAnnotations: "Override, Test"
        12 Warning
        MissingJavadocType +
          +
        • scope: "protected"
        • +
        • excludeScope: "nothing"
        • +
        • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, RECORD_DEF, ANNOTATION_DEF"
        38 Warning
        sizesLineLength +
          +
        • fileExtensions: "java"
        • +
        • max: "120"
        • +
        • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
        4 Error
        +

        Details

        +

        org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.DeleteProvider'35
        +

        org/mybatis/spring/nativex/MyBatisMapperTypeUtils.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.reflection.TypeParameterResolver'26
        +

        org/mybatis/spring/nativex/MyBatisResourcesScan.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.springframework.context.annotation.Import'22
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.123
        +

        org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.commons.logging.Log'30
        +

        org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor'35
        +

        org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer'20
        +

        org/mybatis/spring/nativex/sample/cache/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.20
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
        +

        org/mybatis/spring/nativex/sample/cache/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.CacheNamespace'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.26
        +

        org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.slf4j.Logger'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.29
        +

        org/mybatis/spring/nativex/sample/configuration/City.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
        +

        org/mybatis/spring/nativex/sample/configuration/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/dao/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/dao/CityDao.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.session.SqlSession'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.23
        +

        org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningsizesLineLengthLine is longer than 120 characters (found 128).26
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.26
        +

        org/mybatis/spring/nativex/sample/dynamicsql/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.java

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'22
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.40
         WarningcodingOverloadMethodsDeclarationOrderAll overloaded methods should be placed next to each other. Placing non-overloaded methods in between overloaded methods with the same type is a violation. Previous overloaded method located at line '44'.51
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.61
        +

        org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/external/entity/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/external/mapper/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Mapper'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.23
        +

        org/mybatis/spring/nativex/sample/freemarker/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
        +

        org/mybatis/spring/nativex/sample/freemarker/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.28
        +

        org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningsizesLineLengthLine is longer than 120 characters (found 125).29
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.29
         WarningsizesLineLengthLine is longer than 120 characters (found 146).30
        +

        org/mybatis/spring/nativex/sample/simple/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/simple/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/sqlprovider/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.java

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.35
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.46
        +

        org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/thymeleaf/City.java

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.29
        +

        org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.InsertProvider'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.28
         WarningsizesLineLengthLine is longer than 120 characters (found 137).34
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.34
        +

        org/mybatis/spring/nativex/sample/velocity/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/velocity/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Insert'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/xml/City.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.18
         WarningjavadocMissingJavadocMethodMissing a Javadoc comment.25
        +

        org/mybatis/spring/nativex/sample/xml/CityMapper.java

        + + + + + + + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningimportsCustomImportOrderExtra separation in import group before 'org.apache.ibatis.annotations.Mapper'20
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.22
        +

        org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.java

        + + + + + + + + + + + + +
        SeverityCategoryRuleMessageLine
         WarningjavadocMissingJavadocTypeMissing a Javadoc comment.25
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/checkstyle.html b/zh_CN/checkstyle.html new file mode 100644 index 0000000..e95d62b --- /dev/null +++ b/zh_CN/checkstyle.html @@ -0,0 +1,102 @@ + + + + + + + + + + mybatis-spring-native-docs – Checkstyle Results + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Checkstyle Results

        +

        The following document contains the results of Checkstyle 10.13.0 with checkstyle.xml ruleset.

        +

        Summary

        + + + + + + + + + + +
        Files Info Warnings Errors
        0000
        +

        Files

        + + + + + +
        File I W E
        +

        Rules

        + + + + + +
        CategoryRuleViolationsSeverity
        +

        Details

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/ci-management.html b/zh_CN/ci-management.html new file mode 100644 index 0000000..2308dd8 --- /dev/null +++ b/zh_CN/ci-management.html @@ -0,0 +1,81 @@ + + + + + + + + + + mybatis-spring-native-docs – 持续集成 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        概述

        +

        本项目使用 GitHub Actions.

        +

        访问

        +

        以下是在本项目中使用的持续集成系统。

        +
        +

        提醒方法

        +

        未定义任何的提醒方法,请以后再查看。

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/clirr-report.html b/zh_CN/clirr-report.html new file mode 100644 index 0000000..91858e4 --- /dev/null +++ b/zh_CN/clirr-report.html @@ -0,0 +1,73 @@ + + + + + + + + + + mybatis-spring-native-docs + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +$bodyContent.replaceAll( '
        (\r?\n)?
        ', '
        ' ).replaceAll( 'class="bodyTable"', 'class="table table-striped"' ).replaceAll( 'class="bodyTable bodyTableBorder"', 'class="table table-bordered table-striped"' )
        +        
        +
        +
        +
        + + + + diff --git a/zh_CN/cpd.html b/zh_CN/cpd.html new file mode 100644 index 0000000..295ee48 --- /dev/null +++ b/zh_CN/cpd.html @@ -0,0 +1,76 @@ + + + + + + + + + + mybatis-spring-native-docs – CPD Results + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        CPD Results

        +

        The following document contains the results of PMD's CPD 6.55.0.

        +

        CPD found no problems in your source code.

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/css/apache-maven-fluido-2.0.0-M8.min.css b/zh_CN/css/apache-maven-fluido-2.0.0-M8.min.css new file mode 100644 index 0000000..1b7eff7 --- /dev/null +++ b/zh_CN/css/apache-maven-fluido-2.0.0-M8.min.css @@ -0,0 +1,20 @@ +/*! + * Bootstrap v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media print{*{color:#000 !important;text-shadow:none !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover,a:focus{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;line-height:0;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:""}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:bold}em{font-style:italic}cite{font-style:normal}.muted{color:#999}a.muted:hover,a.muted:focus{color:gray}.text-warning{color:#c09853}a.text-warning:hover,a.text-warning:focus{color:#a47e3c}.text-error{color:#b94a48}a.text-error:hover,a.text-error:focus{color:#953b39}.text-info{color:#3a87ad}a.text-info:hover,a.text-info:focus{color:#2d6987}.text-success{color:#468847}a.text-success:hover,a.text-success:focus{color:#356635}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{line-height:40px}h1{font-size:38.5px}h2{font-size:31.5px}h3{font-size:24.5px}h4{font-size:17.5px}h5{font-size:14px}h6{font-size:11.9px}h1 small{font-size:24.5px}h2 small{font-size:17.5px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;padding-right:5px;padding-left:5px;*zoom:1}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:bold}dd{margin-left:10px}.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:""}.dl-horizontal:after{clear:both}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}input,textarea,.uneditable-input{width:206px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;background-color:#fff;border:1px solid #ccc}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:20px;padding-left:20px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;line-height:0;content:""}.controls-row:after{clear:both}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left}.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad}.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3}.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;line-height:0;content:""}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-append,.input-prepend{display:inline-block;margin-bottom:10px;font-size:0;white-space:nowrap;vertical-align:middle}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:180px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0}.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5}table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0}.table td.span1,.table th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success>td{background-color:#dff0d8}.table tbody tr.error>td{background-color:#f2dede}.table tbody tr.warning>td{background-color:#fcf8e3}.table tbody tr.info>td{background-color:#d9edf7}.table-hover tbody tr.success:hover>td{background-color:#d0e9c6}.table-hover tbody tr.error:hover>td{background-color:#ebcccc}.table-hover tbody tr.warning:hover>td{background-color:#faf2cc}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{width:16px;background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{width:16px;background-position:-384px -120px}.icon-folder-open{width:16px;background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open{*z-index:1000}.open>.dropdown-menu{display:block}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px}.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-large .caret{margin-top:6px}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px}.btn-mini .caret,.btn-small .caret{margin-top:8px}.dropup .btn-large .caret{border-bottom-width:5px}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert h4{color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success h4{color:#468847}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger h4,.alert-error h4{color:#b94a48}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:20px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px}.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;line-height:0;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent}.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065)}.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:""}.navbar-inner:after{clear:both}.navbar .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff}.navbar-inverse .brand{color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff}.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111}.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb>li>.divider{padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{margin:20px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default}.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;cursor:default;background-color:transparent}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px}.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px}.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;line-height:0;content:""}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:default;background-color:#fff}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.label:empty,.badge:empty{display:none}a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress .bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}/*! + * Bootstrap Responsive v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.visible-phone{display:none !important}.visible-tablet{display:none !important}.hidden-desktop{display:none !important}.visible-desktop{display:inherit !important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important}.visible-desktop{display:none !important}.visible-tablet{display:inherit !important}.hidden-tablet{display:none !important}}@media(max-width:767px){.hidden-desktop{display:inherit !important}.visible-desktop{display:none !important}.visible-phone{display:inherit !important}.hidden-phone{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:inherit !important}.hidden-print{display:none !important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}.clear{clear:both;visibility:hidden}.clear hr{display:none}section>p,section>dt,section>dl,section>table.table,section>div.verbatim{margin-right:7px;margin-left:7px}#poweredBy{text-align:center}a.externalLink{padding-right:18px}a.newWindow{background:url('../images/window-new.png') right center no-repeat;padding-right:18px}a.externalLink[href^=http]{background:url('../images/internet-web-browser.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".asc"]{background:url('../images/accessories-text-editor.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".jpg"],a.externalLink[href$=".jpeg"],a.externalLink[href$=".gif"],a.externalLink[href$=".png"]{background:url('../images/image-x-generic.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".tar.gz"],a.externalLink[href$=".zip"]{background:url('../images/package-x-generic.png') right center no-repeat;padding-right:18px}a.externalLink[href$=".md5"],a.externalLink[href$=".sha1"]{background:url('../images/document-properties.png') right center no-repeat;padding-right:18px}a.externalLink[href^=https]{background:url('../images/application-certificate.png') right center no-repeat;padding-right:18px}a.externalLink[href^=file]{background:url('../images/drive-harddisk.png') right center no-repeat;padding-right:18px}a.externalLink[href^=ftp]{background:url('../images/network-server.png') right center no-repeat;padding-right:18px}a.externalLink[href^=mailto]{background:url('../images/contact-new.png') right center no-repeat;padding-right:18px}li.none{list-style:none}.search-query{width:95%}.sidebar-nav .search-query{width:calc(100% - 30px)}body.topBarEnabled{padding-top:43px}div.container-top,div.container-fluid-top{padding-top:10px}.builtBy{display:block}img.builtBy{margin:10px auto}#search-form{margin-left:9px;margin-right:9px}li{color:#404040}table.zebra-striped{background-color:#FFF}.footer{background-color:#EEE}.sidebar-nav{padding-left:0;padding-right:0}.sidebar-nav .icon-chevron-right,.sidebar-nav .icon-chevron-down{margin-top:2px;margin-right:-6px;float:right;opacity:.25}li.pull-right{margin-left:3px;margin-right:3px}.well{margin-bottom:10px}a.dropdown-toggle{cursor:pointer}h1>code,h2>code,h3>code,h4>code,h5>code{font-size:unset}.table th,.table td{text-align:revert}.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0;padding-left:15px}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}/*! + * "Fork me on GitHub" CSS ribbon v0.2.3 | MIT License + * https://github.com/simonwhitaker/github-fork-ribbon-css +*/.github-fork-ribbon{width:12.1em;height:12.1em;position:absolute;overflow:hidden;top:0;right:0;z-index:9999;pointer-events:none;font-size:13px;text-decoration:none;text-indent:-999999px}.github-fork-ribbon.fixed{position:fixed}.github-fork-ribbon:hover,.github-fork-ribbon:active{background-color:rgba(0,0,0,0.0)}.github-fork-ribbon:before,.github-fork-ribbon:after{position:absolute;display:block;width:15.38em;height:1.54em;top:3.23em;right:-3.23em;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.github-fork-ribbon:before{content:"";padding:.38em 0;background-color:#a00;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0.15)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.15));background-image:linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,0.15));-webkit-box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);-moz-box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);box-shadow:0 .15em .23em 0 rgba(0,0,0,0.5);pointer-events:auto}.github-fork-ribbon:after{content:attr(data-ribbon);color:#fff;font:700 1em "Helvetica Neue",Helvetica,Arial,sans-serif;line-height:1.54em;text-decoration:none;text-shadow:0 -.08em rgba(0,0,0,0.5);text-align:center;text-indent:0;padding:.15em 0;margin:.15em 0;border-width:.08em 0;border-style:dotted;border-color:#fff;border-color:rgba(255,255,255,0.7)}.github-fork-ribbon.left-top,.github-fork-ribbon.left-bottom{right:auto;left:0}.github-fork-ribbon.left-bottom,.github-fork-ribbon.right-bottom{top:auto;bottom:0}.github-fork-ribbon.left-top:before,.github-fork-ribbon.left-top:after,.github-fork-ribbon.left-bottom:before,.github-fork-ribbon.left-bottom:after{right:auto;left:-3.23em}.github-fork-ribbon.left-bottom:before,.github-fork-ribbon.left-bottom:after,.github-fork-ribbon.right-bottom:before,.github-fork-ribbon.right-bottom:after{top:auto;bottom:3.23em}.github-fork-ribbon.left-top:before,.github-fork-ribbon.left-top:after,.github-fork-ribbon.right-bottom:before,.github-fork-ribbon.right-bottom:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)} \ No newline at end of file diff --git a/zh_CN/css/print.css b/zh_CN/css/print.css new file mode 100644 index 0000000..34af557 --- /dev/null +++ b/zh_CN/css/print.css @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +#banner, +#footer, +#leftcol, +#breadcrumbs, +.docs #toc, +.docs .courtesylinks, +#leftColumn, +#navColumn { + display: none !important; +} + +#bodyColumn, +body.docs div.docs { + margin: 0 !important; + border: none !important; +} diff --git a/zh_CN/css/site.css b/zh_CN/css/site.css new file mode 100644 index 0000000..055e7e2 --- /dev/null +++ b/zh_CN/css/site.css @@ -0,0 +1 @@ +/* You can override this file with your own styles */ \ No newline at end of file diff --git a/zh_CN/dependencies.html b/zh_CN/dependencies.html new file mode 100644 index 0000000..a749f02 --- /dev/null +++ b/zh_CN/dependencies.html @@ -0,0 +1,945 @@ + + + + + + + + + + mybatis-spring-native-extensions – 项目依赖 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目依赖

        +

        compile

        +

        以下是这一项目的编译依赖列表。编译和运行本应用需要这些依赖。

        + + + + + + + + + + + + +
        GroupIdArtifactId版本类型许可证
        org.mybatis.spring.nativemybatis-spring-native-core0.1.0-SNAPSHOTjarThe Apache Software License, Version 2.0
        +

        provided

        +

        以下是这一项目的已提供的依赖列表。编译本应用时需要这些依赖,但这些依赖库在使用时会默认提供。

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本类型许可证备注
        org.springframework.experimentalspring-aot0.12.2jarApache License, Version 2.0
        org.springframework.experimentalspring-native0.12.2jarApache License, Version 2.0
        org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jarThe Apache Software License, Version 2.0
        org.mybatis.scriptingmybatis-freemarker1.2.4jarThe Apache Software License, Version 2.0
        org.mybatis.scriptingmybatis-thymeleaf1.0.4jarThe Apache Software License, Version 2.0
        org.mybatis.scriptingmybatis-velocity2.1.2jarThe Apache Software License, Version 2.0
        +

        项目传递依赖

        +

        以下是本项目的传递依赖列表。传递依赖是项目依赖的依赖:

        +

        provided

        +

        以下是这一项目的已提供的依赖列表。编译本应用时需要这些依赖,但这些依赖库在使用时会默认提供。

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本类型许可证备注
        com.squareupjavapoet1.13.0jarApache 2.0
        info.picoclipicocli4.6.1jarThe Apache Software License, version 2.0
        jakarta.annotationjakarta.annotation-api1.3.5jarEPL 2.0GPL2 w/ CPE
        net.bytebuddybyte-buddy1.12.23jarApache License, Version 2.0
        org.apache.commonscommons-compress1.21jarApache License, Version 2.0
        org.springframeworkspring-aop5.3.31jarApache License, Version 2.0
        org.springframeworkspring-beans5.3.31jarApache License, Version 2.0
        org.springframeworkspring-context5.3.31jarApache License, Version 2.0
        org.springframeworkspring-core5.3.31jarApache License, Version 2.0
        org.springframeworkspring-expression5.3.31jarApache License, Version 2.0
        org.springframeworkspring-jcl5.3.31jarApache License, Version 2.0
        org.springframework.bootspring-boot-loader-tools2.7.18jarApache License, Version 2.0
        ognlognl3.1.26jarThe Apache Software License, Version 2.0
        org.apache.commonscommons-lang33.12.0jarApache License, Version 2.0
        org.apache.commonscommons-text1.10.0jarApache License, Version 2.0
        org.apache.velocityvelocity-engine-core2.3jarApache License, Version 2.0
        org.attoparserattoparser2.0.5.RELEASEjarThe Apache Software License, Version 2.0
        org.freemarkerfreemarker2.3.32jarApache License, Version 2.0
        org.javassistjavassist3.20.0-GAjarMPL 1.1LGPL 2.1Apache License 2.0
        org.mybatismybatis3.5.15jarThe Apache Software License, Version 2.0
        org.slf4jslf4j-api1.7.36jarMIT License
        org.thymeleafthymeleaf3.0.15.RELEASEjarThe Apache Software License, Version 2.0
        org.unbescapeunbescape1.1.6.RELEASEjarThe Apache Software License, Version 2.0
        +

        项目依赖图

        +

        项目依赖树

        +
        +

        执照

        +

        The Apache Software License, version 2.0: picocli - a mighty tiny Command Line Interface

        +

        Apache License 2.0: Javassist

        +

        Apache 2.0: JavaPoet

        +

        MIT License: SLF4J API Module

        +

        Apache License, Version 2.0: Apache Commons Compress, Apache Commons Lang, Apache Commons Text, Apache FreeMarker, Apache Velocity - Engine, Byte Buddy (without dependencies), Spring AOP, Spring AOT, Spring Beans, Spring Commons Logging Bridge, Spring Context, Spring Core, Spring Expression Language (SpEL), Spring Native, spring-boot-loader-tools

        +

        LGPL 2.1: Javassist

        +

        EPL 2.0: Jakarta Annotations API

        +

        GPL2 w/ CPE: Jakarta Annotations API

        +

        MPL 1.1: Javassist

        +

        The Apache Software License, Version 2.0: MyBatis Dynamic SQL, MyBatis FreeMarker, MyBatis Thymeleaf, MyBatis Velocity, OGNL - Object Graph Navigation Library, attoparser, mybatis, mybatis-spring-native-core, mybatis-spring-native-extensions, thymeleaf, unbescape

        +

        依赖文件详细信息

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        文件大小条目Java 版本调试信息
        javapoet-1.13.0.jar106.1 kB534311.8
        picocli-4.6.1.jar402.1 kB22922429
        jakarta.annotation-api-1.3.5.jar25.1 kB281531.8
        byte-buddy-1.12.23.jar3.9 MB27632709399
        commons-compress-1.21.jar1 MB576524351.8
        core/target/classes-000--
        spring-aop-5.3.31.jar384.5 kB308279171.8
        spring-beans-5.3.31.jar706.4 kB422392131.8
        spring-context-5.3.31.jar1.3 MB979892641.8
        spring-core-5.3.31.jar1.5 MB1037978491.8
        spring-expression-5.3.31.jar293.2 kB16415061.8
        spring-jcl-5.3.31.jar25.2 kB281721.8
        spring-boot-loader-tools-2.7.18.jar250.3 kB937821.8
        spring-aot-0.12.2.jar870.1 kB4613815111
        spring-native-0.12.2.jar169.6 kB1761282711
        ognl-3.1.26.jar262.2 kB15113941.6
        commons-lang3-3.12.0.jar587.4 kB374345171.8
        commons-text-1.10.0.jar238.4 kB17415481.8
        velocity-engine-core-2.3.jar531.3 kB299256191.8
        attoparser-2.0.5.RELEASE.jar245 kB165147121.6
        freemarker-2.3.32.jar1.7 MB12501225171.8
        javassist-3.20.0-GA.jar750.6 kB423399171.6
        mybatis-3.5.15.jar1.8 MB11831083771.8
        mybatis-dynamic-sql-1.5.0.jar632.4 kB562520281.8
        mybatis-freemarker-1.2.4.jar26.2 kB241021.8
        mybatis-thymeleaf-1.0.4.jar71.8 kB665051.8
        mybatis-velocity-2.1.2.jar43.5 kB321911.8
        slf4j-api-1.7.36.jar41.1 kB463441.5
        thymeleaf-3.0.15.RELEASE.jar870.9 kB606559381.6
        unbescape-1.1.6.RELEASE.jar173.9 kB8569101.6
        共计大小条目Java 版本调试信息
        3019 MB12757118195701129
        compile: 1compile: 4.1 kB---11-
        provided: 29provided: 19 MBprovided: 12757provided: 11819provided: 570provided: 29
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/dependency-convergence.html b/zh_CN/dependency-convergence.html new file mode 100644 index 0000000..1d1901e --- /dev/null +++ b/zh_CN/dependency-convergence.html @@ -0,0 +1,97 @@ + + + + + + + + + + mybatis-spring-native – 响应式依赖一致性 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        响应式依赖一致性

        + + + + + + + + + + + + + + + + + + + + + +
        + 统计: +
        子项目的数目:17
        依赖数量 (NOD):76
        不同的artifact数目(NOA):76
        有版本冲突的 artifact 数量(NOC):0
        快照版本的artifact数目(NOS):0
        一致性(NOD/NOA):[Success] 100 %
        适合发布(100%的依赖一致性并且没有使用快照版本的依赖):[Success] 成功
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/dependency-info.html b/zh_CN/dependency-info.html new file mode 100644 index 0000000..60cfaa6 --- /dev/null +++ b/zh_CN/dependency-info.html @@ -0,0 +1,100 @@ + + + + + + + + + + mybatis-spring-native-docs – 依赖信息 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        依赖信息

        +

        Apache Maven

        +
        +
        <dependency>
        +  <groupId>org.mybatis.spring.native</groupId>
        +  <artifactId>mybatis-spring-native-docs</artifactId>
        +  <version>0.1.0-SNAPSHOT</version>
        +</dependency>
        +

        Apache Ivy

        +
        +
        <dependency org="org.mybatis.spring.native" name="mybatis-spring-native-docs" rev="0.1.0-SNAPSHOT">
        +  <artifact name="mybatis-spring-native-docs" type="jar" />
        +</dependency>
        +

        Groovy Grape

        +
        +
        @Grapes(
        +@Grab(group='org.mybatis.spring.native', module='mybatis-spring-native-docs', version='0.1.0-SNAPSHOT')
        +)
        +

        Gradle/Grails

        +
        +
        implementation 'org.mybatis.spring.native:mybatis-spring-native-docs:0.1.0-SNAPSHOT'
        +

        Scala SBT

        +
        +
        libraryDependencies += "org.mybatis.spring.native" % "mybatis-spring-native-docs" % "0.1.0-SNAPSHOT"
        +

        Leiningen

        +
        +
        [org.mybatis.spring.native/mybatis-spring-native-docs "0.1.0-SNAPSHOT"]
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/dependency-management.html b/zh_CN/dependency-management.html new file mode 100644 index 0000000..e84889e --- /dev/null +++ b/zh_CN/dependency-management.html @@ -0,0 +1,8421 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目依赖管理 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目依赖管理

        +

        compile

        +

        以下是本项目的DependencyManagement中的编译依赖列表。这些依赖项可以包含在子模块中以编译和运行子模块:

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本Classifier类型许可证
        antlrantlr2.7.7-jarBSD License
        ch.qos.logbacklogback-access1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
        ch.qos.logbacklogback-classic1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
        ch.qos.logbacklogback-core1.2.12-jarEclipse Public License - v 1.0, GNU Lesser General Public License
        com.atomikostransactions-jdbc4.0.6-jarAtomikos Multiple Licensing Scheme
        com.atomikostransactions-jms4.0.6-jarAtomikos Multiple Licensing Scheme
        com.atomikostransactions-jta4.0.6-jarAtomikos Multiple Licensing Scheme
        com.couchbase.clientjava-client3.3.4-jarThe Apache Software License, Version 2.0
        com.datastax.ossjava-driver-core4.14.1-jarApache 2
        com.datastax.ossjava-driver-core-shaded4.14.1-jarApache 2
        com.datastax.ossjava-driver-mapper-processor4.14.1-jarApache 2
        com.datastax.ossjava-driver-mapper-runtime4.14.1-jarApache 2
        com.datastax.ossjava-driver-metrics-micrometer4.14.1-jarApache 2
        com.datastax.ossjava-driver-metrics-microprofile4.14.1-jarApache 2
        com.datastax.ossjava-driver-query-builder4.14.1-jarApache 2
        com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1-jarApache 2
        com.datastax.ossjava-driver-test-infra4.14.1-jarApache 2
        com.datastax.ossnative-protocol1.5.1-jarApache 2
        com.fasterxmlclassmate1.5.1-jarApache License, Version 2.0
        com.fasterxml.jackson.corejackson-annotations2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.corejackson-core2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.corejackson-databind2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jrjackson-jr-all2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jrjackson-jr-objects2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.jrjackson-jr-stree2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-afterburner2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-blackbird2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-guice2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-kotlin2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-mrbean2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-osgi2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-paranamer2.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5-jarThe Apache Software License, Version 2.0
        com.fasterxml.jackson.modulejackson-module-scala_32.13.5-jarThe Apache Software License, Version 2.0
        com.github.ben-manes.caffeinecaffeine2.9.3-jarApache License, Version 2.0
        com.github.ben-manes.caffeineguava2.9.3-jarApache License, Version 2.0
        com.github.ben-manes.caffeinejcache2.9.3-jarApache License, Version 2.0
        com.github.ben-manes.caffeinesimulator2.9.3-jarApache License, Version 2.0
        com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1-jarThe Apache Software License, Version 2.0
        com.google.appengineappengine-api-1.0-sdk1.9.98-jarApache License, Version 2.0, CDDL/GPLv2+CE, JSR-000107 JCACHE 2.9 Public Review - Updated Specification License
        com.google.code.gsongson2.9.1-jarApache-2.0
        com.graphql-javagraphql-java18.5-jarMIT
        com.h2databaseh22.1.214-jarMPL 2.0, EPL 1.0
        com.hazelcasthazelcast5.1.7-jarThe Apache Software License, Version 2.0
        com.hazelcasthazelcast-hibernate522.2.1-jarThe Hazelcast Community License
        com.hazelcasthazelcast-hibernate532.2.1-jarThe Hazelcast Community License
        com.hazelcasthazelcast-spring5.1.7-jarThe Apache Software License, Version 2.0
        com.ibm.db2jcc11.5.9.0-jarInternational Program License Agreement (IPLA)
        com.jayway.jsonpathjson-path2.7.0-jarThe Apache Software License, Version 2.0
        com.jayway.jsonpathjson-path-assert2.7.0-jarThe Apache Software License, Version 2.0
        com.microsoft.sqlservermssql-jdbc10.2.3.jre8-jarMIT License
        com.mysqlmysql-connector-j8.0.33-jarThe GNU General Public License, v2 with Universal FOSS Exception, v1.0
        com.oracle.database.haons21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.hasimplefan21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcojdbc1121.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcojdbc11-production21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcojdbc821.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcojdbc8-production21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcrsi21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcucp21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbcucp1121.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc11_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc8_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.nlsorai18n21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.observabilitydms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.observabilityojdbc11-observability21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.observabilityojdbc11dms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.observabilityojdbc8-observability21.5.0.0-pomOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.observabilityojdbc8dms21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.r2dbcoracle-r2dbc0.4.0-jarUniversal Permissive License v1.0, Apache License, Version 2.0
        com.oracle.database.securityoraclepki21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.securityosdt_cert21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.securityosdt_core21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.xmlxdb21.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.oracle.database.xmlxmlparserv221.5.0.0-jarOracle Free Use Terms and Conditions (FUTC)
        com.querydslquerydsl-apt5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-codegen5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-codegen-utils5.0.0-jar-
        com.querydslquerydsl-collections5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-core5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-guava5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-hibernate-search5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-jdo5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-jpa5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-jpa-codegen5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-kotlin5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-kotlin-codegen5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-lucene35.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-lucene45.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-lucene55.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-mongodb5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-scala5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-spatial5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-sql5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-sql-codegen5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-sql-spatial5.0.0-jarApache License, Version 2.0
        com.querydslquerydsl-sql-spring5.0.0-jarApache License, Version 2.0
        com.rabbitmqamqp-client5.14.3-jarAL 2.0, GPL v2, MPL 2.0
        com.rabbitmqstream-client0.5.0-jarASL 2.0, MPL 2.0
        com.samskivertjmustache1.15-jarThe (New) BSD License
        com.sendgridsendgrid-java4.9.3-jarThe MIT License (MIT)
        com.squareup.okhttp3logging-interceptor4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3mockwebserver4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okcurl4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okhttp4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okhttp-brotli4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okhttp-dnsoverhttps4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okhttp-sse4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okhttp-tls4.9.3-jarThe Apache Software License, Version 2.0
        com.squareup.okhttp3okhttp-urlconnection4.9.3-jarThe Apache Software License, Version 2.0
        com.sun.activationjakarta.activation1.2.2-jarEDL 1.0
        com.sun.mailjakarta.mail1.6.7-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0
        com.sun.xml.messaging.saajsaaj-impl1.5.3-jarEclipse Distribution License - v 1.0
        com.unboundidunboundid-ldapsdk6.0.10-jarApache License, Version 2, GNU General Public License version 2 (GPLv2), GNU Lesser General Public License version 2.1 (LGPLv2.1), UnboundID LDAP SDK Free Use License
        com.zaxxerHikariCP4.0.3-jarThe Apache Software License, Version 2.0
        commons-codeccommons-codec1.15-jarApache License, Version 2.0
        commons-poolcommons-pool1.6-jarThe Apache Software License, Version 2.0
        de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11-jarThe Apache Software License, Version 2.0
        io.dropwizard.metricsmetrics-annotation4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-caffeine4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-caffeine34.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-collectd4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-core4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-ehcache4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-graphite4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-healthchecks4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-httpasyncclient4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-httpclient4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-httpclient54.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jakarta-servlet4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jakarta-servlet64.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jakarta-servlets4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jcache4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jdbi4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jdbi34.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jersey24.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jersey34.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jersey314.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jetty104.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jetty114.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jetty124.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jetty12-ee104.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jetty94.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jmx4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-json4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-jvm4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-log4j24.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-logback4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-logback134.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-logback144.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-servlet4.2.22-jarApache License 2.0
        io.dropwizard.metricsmetrics-servlets4.2.22-jarApache License 2.0
        io.lettucelettuce-core6.1.10.RELEASE-jarApache License, Version 2.0
        io.micrometermicrometer-core1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-appoptics1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-atlas1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-azure-monitor1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-cloudwatch1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-cloudwatch21.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-datadog1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-dynatrace1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-elastic1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-ganglia1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-graphite1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-health1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-humio1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-influx1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-jmx1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-kairos1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-new-relic1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-opentsdb1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-otlp1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-prometheus1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-signalfx1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-stackdriver1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-statsd1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-registry-wavefront1.9.17-jarThe Apache Software License, Version 2.0
        io.micrometermicrometer-test1.9.17-jarThe Apache Software License, Version 2.0
        io.nettynetty-all4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-buffer4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-dns4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-haproxy4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-http4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-http24.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-memcache4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-mqtt4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-redis4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-smtp4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-socks4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-stomp4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-codec-xml4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-common4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-dev-tools4.1.101.Final-jar-
        io.nettynetty-example4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-handler4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-handler-proxy4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-handler-ssl-ocsp4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-resolver4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-resolver-dns4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-resolver-dns-classes-macos4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-resolver-dns-native-macos4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
        io.nettynetty-resolver-dns-native-macos4.1.101.Finalosx-x86_64jarApache License, Version 2.0
        io.nettynetty-resolver-dns-native-macos4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-tcnative2.0.61.Finallinux-aarch_64-fedorajarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative2.0.61.Finallinux-x86_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative2.0.61.Finallinux-x86_64-fedorajarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative2.0.61.Finalosx-x86_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-boringssl-static2.0.61.Finallinux-aarch_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-boringssl-static2.0.61.Finallinux-x86_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-boringssl-static2.0.61.Finalosx-aarch_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-boringssl-static2.0.61.Finalosx-x86_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-boringssl-static2.0.61.Finalwindows-x86_64jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-boringssl-static2.0.61.Final-jarThe Apache Software License, Version 2.0
        io.nettynetty-tcnative-classes2.0.61.Final-jarThe Apache Software License, Version 2.0
        io.nettynetty-transport4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-classes-epoll4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-classes-kqueue4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-native-epoll4.1.101.Finallinux-aarch_64jarApache License, Version 2.0
        io.nettynetty-transport-native-epoll4.1.101.Finallinux-x86_64jarApache License, Version 2.0
        io.nettynetty-transport-native-epoll4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-native-kqueue4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
        io.nettynetty-transport-native-kqueue4.1.101.Finalosx-x86_64jarApache License, Version 2.0
        io.nettynetty-transport-native-kqueue4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-native-unix-common4.1.101.Finallinux-aarch_64jarApache License, Version 2.0
        io.nettynetty-transport-native-unix-common4.1.101.Finallinux-x86_64jarApache License, Version 2.0
        io.nettynetty-transport-native-unix-common4.1.101.Finalosx-aarch_64jarApache License, Version 2.0
        io.nettynetty-transport-native-unix-common4.1.101.Finalosx-x86_64jarApache License, Version 2.0
        io.nettynetty-transport-native-unix-common4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-rxtx4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-sctp4.1.101.Final-jarApache License, Version 2.0
        io.nettynetty-transport-udt4.1.101.Final-jarApache License, Version 2.0
        io.projectreactorreactor-core3.4.34-jarApache License, Version 2.0
        io.projectreactorreactor-test3.4.34-jarApache License, Version 2.0
        io.projectreactorreactor-tools3.4.34-jarApache License, Version 2.0
        io.projectreactor.addonsreactor-adapter3.4.10-jarApache License, Version 2.0
        io.projectreactor.addonsreactor-extra3.4.10-jarApache License, Version 2.0
        io.projectreactor.addonsreactor-pool0.2.12-jarThe Apache Software License, Version 2.0
        io.projectreactor.kafkareactor-kafka1.3.22-jarThe Apache Software License, Version 2.0
        io.projectreactor.kotlinreactor-kotlin-extensions1.1.10-jarThe Apache Software License, Version 2.0
        io.projectreactor.nettyreactor-netty1.0.39-jarThe Apache Software License, Version 2.0
        io.projectreactor.nettyreactor-netty-core1.0.39-jarThe Apache Software License, Version 2.0
        io.projectreactor.nettyreactor-netty-http1.0.39-jarThe Apache Software License, Version 2.0
        io.projectreactor.nettyreactor-netty-http-brave1.0.39-jarThe Apache Software License, Version 2.0
        io.projectreactor.rabbitmqreactor-rabbitmq1.5.6-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_caffeine0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_common0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_dropwizard0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_graphite_bridge0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_guava0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_hibernate0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_hotspot0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_httpserver0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_jetty0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_jetty_jdk80.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_log4j0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_log4j20.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_logback0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_pushgateway0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_servlet0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_servlet_jakarta0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_spring_boot0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_spring_web0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_tracer_otel0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_tracer_otel_agent0.15.0-jarThe Apache Software License, Version 2.0
        io.prometheussimpleclient_vertx0.15.0-jarThe Apache Software License, Version 2.0
        io.r2dbcr2dbc-h20.9.1.RELEASE-jarApache License 2.0
        io.r2dbcr2dbc-mssql0.9.0.RELEASE-jarApache License 2.0
        io.r2dbcr2dbc-pool0.9.2.RELEASE-jarApache License 2.0
        io.r2dbcr2dbc-proxy0.9.1.RELEASE-jarApache License 2.0
        io.r2dbcr2dbc-spi0.9.1.RELEASE-jarApache License 2.0
        io.reactivexrxjava1.3.8-jarThe Apache Software License, Version 2.0
        io.reactivexrxjava-reactive-streams1.2.1-jarThe Apache Software License, Version 2.0
        io.reactivex.rxjava2rxjava2.2.21-jarThe Apache Software License, Version 2.0
        io.rest-assuredjson-path4.5.1-jarApache 2.0
        io.rest-assuredjson-schema-validator4.5.1-jarApache 2.0
        io.rest-assuredkotlin-extensions4.5.1-jarApache 2.0
        io.rest-assuredrest-assured4.5.1-jarApache 2.0
        io.rest-assuredrest-assured-all4.5.1-jarApache 2.0
        io.rest-assuredrest-assured-common4.5.1-jarApache 2.0
        io.rest-assuredscala-support4.5.1-jarApache 2.0
        io.rest-assuredspring-commons4.5.1-jarApache 2.0
        io.rest-assuredspring-mock-mvc4.5.1-jarApache 2.0
        io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1-jarApache 2.0
        io.rest-assuredspring-web-test-client4.5.1-jarApache 2.0
        io.rest-assuredxml-path4.5.1-jarApache 2.0
        io.rest-assured.exampleskotlin-example4.5.1-jar-
        io.rest-assured.examplesrest-assured-itest-java4.5.1-jar-
        io.rest-assured.examplesscala-example4.5.1-jar-
        io.rest-assured.examplesscala-mock-mvc-example4.5.1-jar-
        io.rest-assured.examplesscalatra-example4.5.1-jar-
        io.rest-assured.examplesscalatra-webapp4.5.1-war-
        io.rest-assured.examplesspring-mvc-webapp4.5.1-war-
        io.rsocketrsocket-core1.1.3-jarThe Apache Software License, Version 2.0
        io.rsocketrsocket-load-balancer1.1.3-jarThe Apache Software License, Version 2.0
        io.rsocketrsocket-micrometer1.1.3-jarThe Apache Software License, Version 2.0
        io.rsocketrsocket-test1.1.3-jarThe Apache Software License, Version 2.0
        io.rsocketrsocket-transport-local1.1.3-jarThe Apache Software License, Version 2.0
        io.rsocketrsocket-transport-netty1.1.3-jarThe Apache Software License, Version 2.0
        io.spring.gradledependency-management-plugin1.0.15.RELEASE-jarThe Apache Software License, Version 2.0
        io.undertowundertow-core2.2.28.Final-jarApache License Version 2.0
        io.undertowundertow-servlet2.2.28.Final-jarApache License Version 2.0
        io.undertowundertow-websockets-jsr2.2.28.Final-jarApache License Version 2.0
        jakarta.activationjakarta.activation-api1.2.2-jarEDL 1.0
        jakarta.annotationjakarta.annotation-api1.3.5-jarEPL 2.0, GPL2 w/ CPE
        jakarta.jmsjakarta.jms-api2.0.3-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
        jakarta.jsonjakarta.json-api1.1.6-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
        jakarta.json.bindjakarta.json.bind-api1.0.2-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
        jakarta.mailjakarta.mail-api1.6.7-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0
        jakarta.management.j2eejakarta.management.j2ee-api1.1.4-jarEPL 2.0, GPL2 w/ CPE
        jakarta.persistencejakarta.persistence-api2.2.3-jarEclipse Public License v. 2.0, Eclipse Distribution License v. 1.0
        jakarta.servletjakarta.servlet-api4.0.4-jarEPL 2.0, GPL2 w/ CPE
        jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7-jarEPL 2.0, GPL2 w/ CPE
        jakarta.transactionjakarta.transaction-api1.3.3-jarEPL 2.0, GPL2 w/ CPE
        jakarta.validationjakarta.validation-api2.0.2-jarApache License 2.0
        jakarta.websocketjakarta.websocket-api1.1.2-jarEclipse Public License 2.0, GNU General Public License, version 2 with the GNU Classpath Exception
        jakarta.ws.rsjakarta.ws.rs-api2.1.6-jarEPL 2.0, GPL2 w/ CPE
        jakarta.xml.bindjakarta.xml.bind-api2.3.3-jarEclipse Distribution License - v 1.0
        jakarta.xml.soapjakarta.xml.soap-api1.4.2-jarEclipse Distribution License - v 1.0
        jakarta.xml.wsjakarta.xml.ws-api2.3.3-jarEclipse Distribution License - v 1.0
        javax.activationjavax.activation-api1.2.0-jarCDDL/GPLv2+CE
        javax.annotationjavax.annotation-api1.3.2-jarCDDL + GPLv2 with classpath exception
        javax.cachecache-api1.1.1-jarApache License, Version 2.0
        javax.jmsjavax.jms-api2.0.1-jarCDDL + GPLv2 with classpath exception
        javax.jsonjavax.json-api1.1.4-jarDual license consisting of the CDDL v1.1 and GPL v2
        javax.json.bindjavax.json.bind-api1.0-jarDual license consisting of the CDDL v1.1 and GPL v2
        javax.mailjavax.mail-api1.6.2-jarCDDL/GPLv2+CE
        javax.moneymoney-api1.1-jarApache License, Version 2.0
        javax.persistencejavax.persistence-api2.2-jarEclipse Public License v1.0, Eclipse Distribution License v. 1.0
        javax.servletjavax.servlet-api4.0.1-jarCDDL + GPLv2 with classpath exception
        javax.servletjstl1.2-jar-
        javax.transactionjavax.transaction-api1.3-jarCDDL + GPLv2 with classpath exception
        javax.validationvalidation-api2.0.1.Final-jarApache License 2.0
        javax.websocketjavax.websocket-api1.1-jarDual license consisting of the CDDL v1.1 and GPL v2
        javax.xml.bindjaxb-api2.3.1-jarCDDL 1.1, GPL2 w/ CPE
        javax.xml.wsjaxws-api2.3.1-jarCDDL + GPLv2 with classpath exception
        jaxenjaxen1.2.0-jarBSD License 2.0
        junitjunit4.13.2-jarEclipse Public License 1.0
        net.bytebuddybyte-buddy1.12.23-jarApache License, Version 2.0
        net.bytebuddybyte-buddy-agent1.12.23-jarApache License, Version 2.0
        net.minidevjson-smart2.4.11-jarThe Apache Software License, Version 2.0
        net.sf.ehcacheehcache2.10.9.2-jarThe Apache Software License, Version 2.0
        net.sourceforge.htmlunithtmlunit2.60.0-jarApache License, Version 2.0
        net.sourceforge.jtdsjtds1.3.1-jarLGPL
        net.sourceforge.nekohtmlnekohtml1.9.22-jarThe Apache Software License, Version 2.0
        nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0-jarThe Apache Software License, Version 2.0
        org.apache.activemqactivemq-amqp5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-blueprint5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-broker5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-camel5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-client5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-console5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-http5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-jaas5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-jdbc-store5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-jms-pool5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-kahadb-store5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-karaf5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-leveldb-store5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-log4j-appender5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-mqtt5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-openwire-generator5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-openwire-legacy5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-osgi5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-partition5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-pool5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-ra5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-run5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-runtime-config5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-shiro5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-spring5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-stomp5.16.7-jarApache License, Version 2.0
        org.apache.activemqactivemq-web5.16.7-jarApache License, Version 2.0
        org.apache.activemqartemis-amqp-protocol2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-commons2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-core-client2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-jdbc-store2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-jms-client2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-jms-server2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-journal2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-quorum-api2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-selector2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-server2.19.1-jarApache License, Version 2.0
        org.apache.activemqartemis-service-extensions2.19.1-jarApache License, Version 2.0
        org.apache.commonscommons-dbcp22.9.0-jarApache License, Version 2.0
        org.apache.commonscommons-lang33.12.0-jarApache License, Version 2.0
        org.apache.commonscommons-pool22.11.1-jarApache License, Version 2.0
        org.apache.derbyderby10.14.2.0-jarApache 2
        org.apache.derbyderbyclient10.14.2.0-jarApache 2
        org.apache.derbyderbynet10.14.2.0-jarApache 2
        org.apache.derbyderbyoptionaltools10.14.2.0-jarApache 2
        org.apache.derbyderbytools10.14.2.0-jarApache 2
        org.apache.httpcomponentsfluent-hc4.5.14-jarApache License, Version 2.0
        org.apache.httpcomponentshttpasyncclient4.1.5-jarApache License, Version 2.0
        org.apache.httpcomponentshttpclient4.5.14-jarApache License, Version 2.0
        org.apache.httpcomponentshttpclient-cache4.5.14-jarApache License, Version 2.0
        org.apache.httpcomponentshttpclient-osgi4.5.14-jarApache License, Version 2.0
        org.apache.httpcomponentshttpclient-win4.5.14-jarApache License, Version 2.0
        org.apache.httpcomponentshttpcore4.4.16-jarApache License, Version 2.0
        org.apache.httpcomponentshttpcore-nio4.4.16-jarApache License, Version 2.0
        org.apache.httpcomponentshttpmime4.5.14-jarApache License, Version 2.0
        org.apache.httpcomponents.client5httpclient55.1.4-jarApache License, Version 2.0
        org.apache.httpcomponents.client5httpclient5-cache5.1.4-jarApache License, Version 2.0
        org.apache.httpcomponents.client5httpclient5-fluent5.1.4-jarApache License, Version 2.0
        org.apache.httpcomponents.client5httpclient5-win5.1.4-jarApache License, Version 2.0
        org.apache.httpcomponents.core5httpcore55.1.5-jarApache License, Version 2.0
        org.apache.httpcomponents.core5httpcore5-h25.1.5-jarApache License, Version 2.0
        org.apache.httpcomponents.core5httpcore5-reactive5.1.5-jarApache License, Version 2.0
        org.apache.johnzonjohnzon-core1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.johnzonjohnzon-jaxrs1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.johnzonjohnzon-jsonb1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.johnzonjohnzon-jsonb-extras1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.johnzonjohnzon-jsonschema1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.johnzonjohnzon-mapper1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.johnzonjohnzon-websocket1.2.21-jarThe Apache Software License, Version 2.0
        org.apache.kafkaconnect3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-api3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-basic-auth-extension3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-file3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-json3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-mirror3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-mirror-client3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-runtime3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkaconnect-transforms3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkagenerator3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-clients3.1.2testjarThe Apache License, Version 2.0
        org.apache.kafkakafka-clients3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-log4j-appender3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-metadata3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-raft3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-server-common3.1.2testjarThe Apache License, Version 2.0
        org.apache.kafkakafka-server-common3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-shell3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-storage3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-storage-api3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-streams3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-streams-scala_2.123.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-streams-scala_2.133.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-streams-test-utils3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka-tools3.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka_2.123.1.2testjarThe Apache License, Version 2.0
        org.apache.kafkakafka_2.123.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkakafka_2.133.1.2testjarThe Apache License, Version 2.0
        org.apache.kafkakafka_2.133.1.2-jarThe Apache License, Version 2.0
        org.apache.kafkatrogdor3.1.2-jarThe Apache License, Version 2.0
        org.apache.logging.log4jlog4j-1.2-api2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-api2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-appserver2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-cassandra2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-core2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-couchdb2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-docker2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-flume-ng2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-iostreams2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-jcl2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-jmx-gui2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-jpa2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-jpl2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-jul2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-kubernetes2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-layout-template-json2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-liquibase2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-mongodb32.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-mongodb42.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-slf4j-impl2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-slf4j18-impl2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-spring-boot2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-taglib2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-to-slf4j2.17.2-jarApache License, Version 2.0
        org.apache.logging.log4jlog4j-web2.17.2-jarApache License, Version 2.0
        org.apache.solrsolr-analysis-extras8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-analytics8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-cell8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-core8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-dataimporthandler8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-dataimporthandler-extras8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-gcs-repository8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-jaegertracer-configurator8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-langid8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-ltr8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-prometheus-exporter8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-s3-repository8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-solrj8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-test-framework8.11.2-jarApache License, Version 2.0
        org.apache.solrsolr-velocity8.11.2-jarApache License, Version 2.0
        org.apache.tomcattomcat-annotations-api9.0.83-jarApache License, Version 2.0
        org.apache.tomcattomcat-jdbc9.0.83-jarApache License, Version 2.0
        org.apache.tomcattomcat-jsp-api9.0.83-jarApache License, Version 2.0
        org.apache.tomcat.embedtomcat-embed-core9.0.83-jarApache License, Version 2.0
        org.apache.tomcat.embedtomcat-embed-el9.0.83-jarApache License, Version 2.0
        org.apache.tomcat.embedtomcat-embed-jasper9.0.83-jarApache License, Version 2.0
        org.apache.tomcat.embedtomcat-embed-websocket9.0.83-jarApache License, Version 2.0
        org.aspectjaspectjrt1.9.7-jarEclipse Public License - v 2.0
        org.aspectjaspectjtools1.9.7-jarEclipse Public License - v 2.0
        org.aspectjaspectjweaver1.9.7-jarEclipse Public License - v 2.0
        org.assertjassertj-core3.22.0-jarApache License, Version 2.0
        org.awaitilityawaitility4.2.0-jarApache 2.0
        org.awaitilityawaitility-groovy4.2.0-jarApache 2.0
        org.awaitilityawaitility-kotlin4.2.0-jarApache 2.0
        org.awaitilityawaitility-scala4.2.0-jarApache 2.0
        org.cache2kcache2k-api2.6.1.Final-jarApache 2
        org.cache2kcache2k-config2.6.1.Final-jarApache 2
        org.cache2kcache2k-core2.6.1.Final-jarApache 2
        org.cache2kcache2k-jcache2.6.1.Final-jarApache 2
        org.cache2kcache2k-micrometer2.6.1.Final-jarApache 2
        org.cache2kcache2k-spring2.6.1.Final-jarApache 2
        org.codehaus.groovygroovy3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-ant3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-astbuilder3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-bsf3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-cli-commons3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-cli-picocli3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-console3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-datetime3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-dateutil3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-docgenerator3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-groovydoc3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-groovysh3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-jaxb3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-jmx3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-json3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-jsr2233.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-macro3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-nio3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-servlet3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-sql3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-swing3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-templates3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-test3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-test-junit53.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-testng3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-xml3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.groovygroovy-yaml3.0.19-jarThe Apache Software License, Version 2.0
        org.codehaus.janinocommons-compiler3.1.10-jarBSD-3-Clause
        org.codehaus.janinocommons-compiler-jdk3.1.10-jarBSD-3-Clause
        org.codehaus.janinojanino3.1.10-jarBSD-3-Clause
        org.eclipse.jettyapache-jsp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyapache-jstl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyinfinispan-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-alpn-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-annotations9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-ant9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-continuation9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-deploy9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-distribution9.4.53.v20231009-tar.gzApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-distribution9.4.53.v20231009-zipApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-hazelcast9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-home9.4.53.v20231009-tar.gzApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-home9.4.53.v20231009-zipApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-http9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-http-spi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-io9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-jaas9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-jaspi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-jmx9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-jndi9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-nosql9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-openid9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-plus9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-proxy9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-quickstart9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-reactive-httpclient1.1.15-jarApache License Version 2.0
        org.eclipse.jettyjetty-rewrite9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-security9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-servlet9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-servlets9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-spring9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-unixsocket9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-util9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-util-ajax9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-webapp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jettyjetty-xml9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.http2http2-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.http2http2-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.http2http2-hpack9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.http2http2-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009-jarApache Software License - Version 2.0, Eclipse Public License - Version 1.0
        org.ehcacheehcache3.10.8-jarThe Apache Software License, Version 2.0
        org.ehcacheehcache-clustered3.10.8-jarThe Apache Software License, Version 2.0
        org.ehcacheehcache-transactions3.10.8-jarThe Apache Software License, Version 2.0
        org.elasticsearchelasticsearch7.17.15-jarElastic License 2.0, Server Side Public License, v 1
        org.elasticsearch.clientelasticsearch-rest-client7.17.15-jarThe Apache Software License, Version 2.0
        org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15-jarThe Apache Software License, Version 2.0
        org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15-jarElastic License 2.0
        org.elasticsearch.clienttransport7.17.15-jarElastic License 2.0, Server Side Public License, v 1
        org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15-zipElastic License 2.0, Server Side Public License, v 1
        org.elasticsearch.plugintransport-netty4-client7.17.15-jarElastic License 2.0, Server Side Public License, v 1
        org.firebirdsql.jdbcjaybird4.0.9.java8-jarGNU Lesser General Public License, Modified BSD (3-clause) License
        org.firebirdsql.jdbcjaybird-jdk184.0.9.java8-jarGNU Lesser General Public License, Modified BSD (3-clause) License
        org.flywaydbflyway-core8.5.13-jarApache License, Version 2.0
        org.flywaydbflyway-firebird8.5.13-jarApache License, Version 2.0
        org.flywaydbflyway-mysql8.5.13-jarApache License, Version 2.0
        org.flywaydbflyway-sqlserver8.5.13-jarApache License, Version 2.0
        org.freemarkerfreemarker2.3.32-jarApache License, Version 2.0
        org.glassfishjakarta.el3.0.4-jarEPL 2.0, GPL2 w/ CPE
        org.glassfish.jaxbcodemodel2.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbcodemodel-annotation-compiler2.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbjaxb-jxc2.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbjaxb-runtime2.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbjaxb-xjc2.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbtxw22.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbtxwc22.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jaxbxsom2.3.9-jarEclipse Distribution License - v 1.0
        org.glassfish.jersey.bundlesjaxrs-ri2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.connectorsjersey-apache-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.connectorsjersey-grizzly-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.connectorsjersey-helidon-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.connectorsjersey-jdk-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.connectorsjersey-jetty-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.connectorsjersey-netty-connector2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-grizzly2-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-jdk-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-jetty-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-jetty-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-netty-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-servlet-core2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containersjersey-container-simple-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.corejersey-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.corejersey-common2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0, Public Domain
        org.glassfish.jersey.corejersey-server2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0, Modified BSD
        org.glassfish.jersey.extjersey-bean-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-declarative-linking2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-entity-filtering2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-metainf-services2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-mvc2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-mvc-bean-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-mvc-freemarker2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-mvc-jsp2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-mvc-mustache2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-proxy-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-servlet-portability2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-spring42.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-spring52.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.extjersey-wadl-doclet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-cdi1x2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.cdijersey-weld2-se2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.microprofilejersey-mp-config2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.injectjersey-cdi2-se2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.injectjersey-hk22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-jaxb2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-json-binding2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-json-jackson2.35-jarEPL 2.0, The GNU General Public License (GPL), Version 2, With Classpath Exception, Apache License, 2.0
        org.glassfish.jersey.mediajersey-media-json-jettison2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-json-processing2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-kryo2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-moxy2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-multipart2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.mediajersey-media-sse2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.securityoauth1-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.securityoauth1-server2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.securityoauth1-signature2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.securityoauth2-client2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35-pomEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35-jarEPL 2.0, GPL2 w/ CPE, EDL 1.0, BSD 2-Clause, Apache License, 2.0, Public Domain, Modified BSD, jQuery license, MIT license, W3C license
        org.glassfish.webjakarta.servlet.jsp.jstl1.2.6-jarEPL 2.0, GPL2 w/ CPE
        org.hamcresthamcrest2.2-jarBSD License 3
        org.hamcresthamcrest-core2.2-jarBSD License 3
        org.hamcresthamcrest-library2.2-jarBSD License 3
        org.hibernatehibernate-c3p05.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-core5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-ehcache5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-entitymanager5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-envers5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-hikaricp5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-java85.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-jcache5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-jpamodelgen5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-micrometer5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-proxool5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-spatial5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-testing5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernatehibernate-vibur5.6.15.Final-jarGNU Library General Public License v2.1 or later
        org.hibernate.validatorhibernate-validator6.2.5.Final-jarApache License 2.0
        org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Final-jarApache License 2.0
        org.hsqldbhsqldb2.5.2-jarHSQLDB License, a BSD open source license
        org.infinispaninfinispan-anchored-keys13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-api13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cachestore-jdbc13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cachestore-jpa13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cachestore-remote13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cachestore-rocksdb13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cachestore-sql13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cdi-common13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cdi-embedded13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cdi-remote13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-checkstyle13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cli-client13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-client-hotrod13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-client-rest13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-cloudevents-integration13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-clustered-counter13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-clustered-lock13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-commons13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-commons-test13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-component-processor13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-console0.15.5.Final-jarApache License 2.0
        org.infinispaninfinispan-core13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-extended-statistics13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-hibernate-cache-commons13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-hibernate-cache-spi13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-hibernate-cache-v5313.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-jboss-marshalling13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-jcache13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-jcache-commons13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-jcache-remote13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-key-value-store-client13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-marshaller-kryo13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-marshaller-protostuff13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-multimap13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-objectfilter13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-query13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-query-core13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-query-dsl13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-remote-query-client13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-remote-query-server13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-scripting13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-core13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-hotrod13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-memcached13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-rest13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-router13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-runtime13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-testdriver-core13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-testdriver-junit413.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-server-testdriver-junit513.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-spring5-common13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-spring5-embedded13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-spring5-remote13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-tasks13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-tasks-api13.0.20.Final-jarApache License 2.0
        org.infinispaninfinispan-tools13.0.20.Final-jar-
        org.infinispan.protostreamprotostream4.4.4.Final-jarApache License 2.0
        org.infinispan.protostreamprotostream-types4.4.4.Final-jarApache License 2.0
        org.influxdbinfluxdb-java2.22-jarThe MIT License (MIT)
        org.jboss.loggingjboss-logging3.4.3.Final-jarApache License, version 2.0
        org.jdomjdom22.0.6.1-jarSimilar to Apache License but with the acknowledgment clause removed
        org.jetbrains.kotlinkotlin-compiler1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-daemon-client1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-main-kts1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-osgi-bundle1.6.21-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinkotlin-reflect1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-script-runtime1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-script-util1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-scripting-common1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-scripting-jvm1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-stdlib1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-stdlib-common1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-stdlib-js1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test-annotations-common1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test-common1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test-js1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test-junit1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test-junit51.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinkotlin-test-testng1.6.21-jarThe Apache License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4-jarThe Apache Software License, Version 2.0
        org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4-jarThe Apache Software License, Version 2.0
        org.jolokiajolokia-core1.7.2-jarApache 2
        org.jooqjooq3.14.16-jarApache License, Version 2.0
        org.jooqjooq-codegen3.14.16-jarApache License, Version 2.0
        org.jooqjooq-kotlin3.14.16-jarApache License, Version 2.0
        org.jooqjooq-meta3.14.16-jarApache License, Version 2.0
        org.junit.jupiterjunit-jupiter5.8.2-jarEclipse Public License v2.0
        org.junit.jupiterjunit-jupiter-api5.8.2-jarEclipse Public License v2.0
        org.junit.jupiterjunit-jupiter-engine5.8.2-jarEclipse Public License v2.0
        org.junit.jupiterjunit-jupiter-migrationsupport5.8.2-jarEclipse Public License v2.0
        org.junit.jupiterjunit-jupiter-params5.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-commons1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-console1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-engine1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-jfr1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-launcher1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-reporting1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-runner1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-suite1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-suite-api1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-suite-commons1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-suite-engine1.8.2-jarEclipse Public License v2.0
        org.junit.platformjunit-platform-testkit1.8.2-jarEclipse Public License v2.0
        org.junit.vintagejunit-vintage-engine5.8.2-jarEclipse Public License v2.0
        org.liquibaseliquibase-cdi4.9.1-jarApache License, Version 2.0
        org.liquibaseliquibase-core4.9.1-jarApache License, Version 2.0
        org.mariadbr2dbc-mariadb1.1.2-jarApache License 2.0
        org.mariadb.jdbcmariadb-java-client3.1.4-jarLGPL-2.1
        org.messaginghubpooled-jms1.2.6-jarThe Apache License, Version 2.0
        org.mockitomockito-android4.5.1-jarThe MIT License
        org.mockitomockito-core4.5.1-jarThe MIT License
        org.mockitomockito-errorprone4.5.1-jarThe MIT License
        org.mockitomockito-inline4.5.1-jarThe MIT License
        org.mockitomockito-junit-jupiter4.5.1-jarThe MIT License
        org.mockitomockito-proxy4.5.1-jarThe MIT License
        org.mongodbbson4.6.1-jarThe Apache License, Version 2.0
        org.mongodbbson-record-codec4.6.1-jarThe Apache License, Version 2.0
        org.mongodbmongodb-driver-core4.6.1-jarThe Apache License, Version 2.0
        org.mongodbmongodb-driver-legacy4.6.1-jarThe Apache License, Version 2.0
        org.mongodbmongodb-driver-reactivestreams4.6.1-jarThe Apache License, Version 2.0
        org.mongodbmongodb-driver-sync4.6.1-jarThe Apache License, Version 2.0
        org.mortbay.jasperapache-el9.0.52-jarApache License Version 2.0
        org.mybatismybatis3.5.15-jarThe Apache Software License, Version 2.0
        org.mybatismybatis-spring2.1.2-jarThe Apache Software License, Version 2.0
        org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0-jarThe Apache Software License, Version 2.0
        org.mybatis.scriptingmybatis-freemarker1.2.4-jarThe Apache Software License, Version 2.0
        org.mybatis.scriptingmybatis-thymeleaf1.0.4-jarThe Apache Software License, Version 2.0
        org.mybatis.scriptingmybatis-velocity2.1.2-jarThe Apache Software License, Version 2.0
        org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2-jarThe Apache Software License, Version 2.0
        org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2-jarThe Apache Software License, Version 2.0
        org.neo4j.driverneo4j-java-driver4.4.12-jarApache License, Version 2
        org.postgresqlpostgresql42.3.8-jarBSD-2-Clause
        org.postgresqlr2dbc-postgresql0.9.2.RELEASE-jarApache License 2.0
        org.projectlomboklombok1.18.30-jarThe MIT License
        org.quartz-schedulerquartz2.3.2-jarThe Apache Software License, Version 2.0
        org.quartz-schedulerquartz-jobs2.3.2-jarThe Apache Software License, Version 2.0
        org.reactivestreamsreactive-streams1.0.4-jarMIT-0
        org.seleniumhq.seleniumhtmlunit-driver3.61.0-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumlift4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-api4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-chrome-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-chromium-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-devtools-v1004.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-devtools-v1014.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-devtools-v854.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-devtools-v994.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-edge-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-firefox-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-grid4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-http4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-ie-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-java4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-json4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-opera-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-remote-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-safari-driver4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-session-map-redis4.1.4-jarThe Apache Software License, Version 2.0
        org.seleniumhq.seleniumselenium-support4.1.4-jarThe Apache Software License, Version 2.0
        org.skyscreamerjsonassert1.5.1-jarThe Apache Software License, Version 2.0
        org.slf4jjcl-over-slf4j1.7.36-jarApache License, Version 2.0
        org.slf4jjul-to-slf4j1.7.36-jarMIT License
        org.slf4jlog4j-over-slf4j1.7.36-jarApache Software Licenses
        org.slf4jslf4j-api1.7.36-jarMIT License
        org.slf4jslf4j-ext1.7.36-jarMIT License
        org.slf4jslf4j-jcl1.7.36-jarMIT License
        org.slf4jslf4j-jdk141.7.36-jarMIT License
        org.slf4jslf4j-log4j121.7.36-jarMIT License
        org.slf4jslf4j-nop1.7.36-jarMIT License
        org.slf4jslf4j-simple1.7.36-jarMIT License
        org.springframeworkspring-aop5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-aspects5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-beans5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-context5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-context-indexer5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-context-support5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-core5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-expression5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-instrument5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-jcl5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-jdbc5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-jms5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-messaging5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-orm5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-oxm5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-r2dbc5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-test5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-tx5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-web5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-webflux5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-webmvc5.3.31-jarApache License, Version 2.0
        org.springframeworkspring-websocket5.3.31-jarApache License, Version 2.0
        org.springframework.amqpspring-amqp2.4.17-jarApache License, Version 2.0
        org.springframework.amqpspring-rabbit2.4.17-jarApache License, Version 2.0
        org.springframework.amqpspring-rabbit-junit2.4.17-jarApache License, Version 2.0
        org.springframework.amqpspring-rabbit-stream2.4.17-jarApache License, Version 2.0
        org.springframework.amqpspring-rabbit-test2.4.17-jarApache License, Version 2.0
        org.springframework.batchspring-batch-core4.3.10-jarThe Apache Software License, Version 2.0
        org.springframework.batchspring-batch-infrastructure4.3.10-jarThe Apache Software License, Version 2.0
        org.springframework.batchspring-batch-integration4.3.10-jarThe Apache Software License, Version 2.0
        org.springframework.batchspring-batch-test4.3.10-jarThe Apache Software License, Version 2.0
        org.springframework.bootspring-boot2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-actuator2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-actuator-autoconfigure2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-autoconfigure2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-autoconfigure-processor2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-buildpack-platform2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-configuration-metadata2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-configuration-processor2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-devtools2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-jarmode-layertools2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-loader2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-loader-tools2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-properties-migrator2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-activemq2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-actuator2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-amqp2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-aop2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-artemis2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-batch2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-cache2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-cassandra2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-couchbase2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-jdbc2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-jpa2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-ldap2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-mongodb2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-neo4j2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-r2dbc2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-redis2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-data-rest2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-freemarker2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-graphql2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-groovy-templates2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-hateoas2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-integration2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-jdbc2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-jersey2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-jetty2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-jooq2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-json2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-jta-atomikos2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-log4j22.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-logging2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-mail2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-mustache2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-oauth2-client2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-quartz2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-reactor-netty2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-rsocket2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-security2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-test2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-thymeleaf2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-tomcat2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-undertow2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-validation2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-web2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-web-services2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-webflux2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-starter-websocket2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-test2.7.18-jarApache License, Version 2.0
        org.springframework.bootspring-boot-test-autoconfigure2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-cassandra3.4.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-commons2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-couchbase4.4.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-elasticsearch4.4.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-envers2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-geode2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-jdbc2.4.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-jpa2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-keyvalue2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-ldap2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-mongodb3.4.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-neo4j6.3.18-jarThe Apache Software License, Version 2.0
        org.springframework.dataspring-data-r2dbc1.5.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-redis2.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-relational2.4.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-rest-core3.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-rest-hal-explorer3.7.18-jarApache License, Version 2.0
        org.springframework.dataspring-data-rest-webmvc3.7.18-jarApache License, Version 2.0
        org.springframework.experimentalspring-aot0.12.2-jarApache License, Version 2.0
        org.springframework.experimentalspring-native0.12.2-jarApache License, Version 2.0
        org.springframework.graphqlspring-graphql1.0.6-jarApache License, Version 2.0
        org.springframework.graphqlspring-graphql-test1.0.6-jarApache License, Version 2.0
        org.springframework.hateoasspring-hateoas1.5.6-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-amqp5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-core5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-event5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-feed5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-file5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-ftp5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-gemfire5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-groovy5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-http5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-ip5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-jdbc5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-jms5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-jmx5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-jpa5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-kafka5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-mail5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-mongodb5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-mqtt5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-r2dbc5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-redis5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-rmi5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-rsocket5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-scripting5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-security5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-sftp5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-stomp5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-stream5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-syslog5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-test5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-test-support5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-webflux5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-websocket5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-ws5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-xml5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-xmpp5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-zeromq5.5.20-jarApache License, Version 2.0
        org.springframework.integrationspring-integration-zookeeper5.5.20-jarApache License, Version 2.0
        org.springframework.kafkaspring-kafka2.8.11-jarApache License, Version 2.0
        org.springframework.kafkaspring-kafka-test2.8.11-jarApache License, Version 2.0
        org.springframework.ldapspring-ldap-core2.4.1-jarApache License, Version 2.0
        org.springframework.ldapspring-ldap-core-tiger2.4.1-jarApache License, Version 2.0
        org.springframework.ldapspring-ldap-ldif-core2.4.1-jarApache License, Version 2.0
        org.springframework.ldapspring-ldap-odm2.4.1-jarApache License, Version 2.0
        org.springframework.ldapspring-ldap-test2.4.1-jarApache License, Version 2.0
        org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
        org.springframework.restdocsspring-restdocs-core2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
        org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
        org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
        org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASE-jarThe Apache Software License, Version 2.0
        org.springframework.retryspring-retry1.3.4-jarApache 2.0
        org.springframework.securityspring-security-acl5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-aspects5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-cas5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-config5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-core5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-crypto5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-data5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-ldap5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-messaging5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-oauth2-client5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-oauth2-core5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-oauth2-jose5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-oauth2-resource-server5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-openid5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-remoting5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-rsocket5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-saml2-service-provider5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-taglibs5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-test5.7.11-jarApache License, Version 2.0
        org.springframework.securityspring-security-web5.7.11-jarApache License, Version 2.0
        org.springframework.sessionspring-session-core2.7.4-jarApache License, Version 2.0
        org.springframework.sessionspring-session-data-geode2.7.1-jarThe Apache Software License, Version 2.0
        org.springframework.sessionspring-session-data-mongodb2.7.4-jarApache License, Version 2.0
        org.springframework.sessionspring-session-data-redis2.7.4-jarApache License, Version 2.0
        org.springframework.sessionspring-session-hazelcast2.7.4-jarApache License, Version 2.0
        org.springframework.sessionspring-session-jdbc2.7.4-jarApache License, Version 2.0
        org.springframework.wsspring-ws-core3.1.8-jarApache License, Version 2.0
        org.springframework.wsspring-ws-security3.1.8-jarApache License, Version 2.0
        org.springframework.wsspring-ws-support3.1.8-jarApache License, Version 2.0
        org.springframework.wsspring-ws-test3.1.8-jarApache License, Version 2.0
        org.springframework.wsspring-xml3.1.8-jarApache License, Version 2.0
        org.thymeleafthymeleaf3.0.15.RELEASE-jarThe Apache Software License, Version 2.0
        org.thymeleafthymeleaf-spring53.0.15.RELEASE-jarThe Apache Software License, Version 2.0
        org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASE-jarThe Apache Software License, Version 2.0
        org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASE-jarThe Apache Software License, Version 2.0
        org.webjarswebjars-locator-core0.50-jarMIT
        org.xerialsqlite-jdbc3.36.0.3-jarThe Apache Software License, Version 2.0
        org.xmlunitxmlunit-assertj2.9.1-jarThe Apache Software License, Version 2.0
        org.xmlunitxmlunit-assertj32.9.1-jarThe Apache Software License, Version 2.0
        org.xmlunitxmlunit-core2.9.1-jarThe Apache Software License, Version 2.0
        org.xmlunitxmlunit-legacy2.9.1-jarThe BSD 3-Clause License
        org.xmlunitxmlunit-matchers2.9.1-jarThe Apache Software License, Version 2.0
        org.xmlunitxmlunit-placeholders2.9.1-jarThe Apache Software License, Version 2.0
        org.yamlsnakeyaml1.30-jarApache License, Version 2.0
        redis.clientsjedis3.8.0-jarMIT
        wsdl4jwsdl4j1.6.3-jarCPL
        +

        provided

        +

        以下是本项目的 DependencyManagement 中提供的依赖项列表。这些依赖项可以包含在子模块中以编译子模块,但在使用库时应默认提供:

        + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本类型许可证
        org.infinispaninfinispan-component-annotations13.0.20.FinaljarApache License 2.0
        org.infinispan.protostreamprotostream-processor4.4.4.FinaljarApache License 2.0
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/dependency-updates-aggregate-report.html b/zh_CN/dependency-updates-aggregate-report.html new file mode 100644 index 0000000..f899c61 --- /dev/null +++ b/zh_CN/dependency-updates-aggregate-report.html @@ -0,0 +1,44201 @@ + + + + + + + + + + mybatis-spring-native – Dependency Updates Aggregate Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's various dependencies.

        + + + + + + + + + + + + + + + + + + + + + +
        # of dependencies using the latest version available103
        # of dependencies where the next version available is smaller than an incremental version update3
        # of dependencies where the next version available is an incremental version update214
        # of dependencies where the next version available is a minor version update535
        # of dependencies where the next version available is a major version update313
        +

        Dependency Management

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        antlrantlr2.7.7jar20030911
        ch.qos.logbacklogback-access1.2.12jar1.2.131.4.14
        ch.qos.logbacklogback-classic1.2.12jar1.2.131.4.14
        ch.qos.logbacklogback-core1.2.12jar1.2.131.4.14
        com.atomikostransactions-jdbc4.0.6jar6.0.0
        com.atomikostransactions-jms4.0.6jar6.0.0
        com.atomikostransactions-jta4.0.6jar6.0.0
        com.couchbase.clientjava-client3.3.4jar3.5.3
        com.datastax.ossjava-driver-core4.14.1jar4.17.0
        com.datastax.ossjava-driver-core-shaded4.14.1jar4.17.0
        com.datastax.ossjava-driver-mapper-processor4.14.1jar4.17.0
        com.datastax.ossjava-driver-mapper-runtime4.14.1jar4.17.0
        com.datastax.ossjava-driver-metrics-micrometer4.14.1jar4.17.0
        com.datastax.ossjava-driver-metrics-microprofile4.14.1jar4.17.0
        com.datastax.ossjava-driver-query-builder4.14.1jar4.17.0
        com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1jar
        com.datastax.ossjava-driver-test-infra4.14.1jar4.17.0
        com.datastax.ossnative-protocol1.5.1jar
        com.fasterxmlclassmate1.5.1jar1.7.0
        com.fasterxml.jackson.corejackson-annotations2.13.5jar2.16.1
        com.fasterxml.jackson.corejackson-core2.13.5jar2.16.1
        com.fasterxml.jackson.corejackson-databind2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-all2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-objects2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-stree2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-afterburner2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-blackbird2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-guice2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-kotlin2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-mrbean2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-osgi2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-paranamer2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_32.13.5jar2.16.1
        com.github.ben-manes.caffeinecaffeine2.9.3jar3.1.8
        com.github.ben-manes.caffeineguava2.9.3jar3.1.8
        com.github.ben-manes.caffeinejcache2.9.3jar3.1.8
        com.github.ben-manes.caffeinesimulator2.9.3jar3.1.8
        com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1jar
        com.google.appengineappengine-api-1.0-sdk1.9.98jar2.0.24
        com.google.code.gsongson2.9.1jar2.10.1
        com.graphql-javagraphql-java18.5jar18.7230521-nf-execution
        com.h2databaseh22.1.214jar2.2.224
        com.hazelcasthazelcast5.1.7jar5.3.6
        com.hazelcasthazelcast-hibernate522.2.1jar
        com.hazelcasthazelcast-hibernate532.2.1jar2.3.05.1.0
        com.hazelcasthazelcast-spring5.1.7jar5.3.6
        com.ibm.db2jcc11.5.9.0jar
        com.jayway.jsonpathjson-path2.7.0jar2.9.0
        com.jayway.jsonpathjson-path-assert2.7.0jar2.9.0
        com.microsoft.sqlservermssql-jdbc10.2.3.jre8jar10.2.3.jre1712.6.0.jre11
        com.mysqlmysql-connector-j8.0.33jar8.3.0
        com.oracle.database.haons21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.hasimplefan21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc1121.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc11-production21.5.0.0pom21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc821.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc8-production21.5.0.0pom21.11.0.023.3.0.23.09
        com.oracle.database.jdbcrsi21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcucp21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcucp1121.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc11_g21.5.0.0jar21.11.0.0
        com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0jar21.11.0.0
        com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc8_g21.5.0.0jar21.11.0.0
        com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0jar21.11.0.0
        com.oracle.database.nlsorai18n21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.observabilitydms21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.observabilityojdbc11-observability21.5.0.0pom21.11.0.0
        com.oracle.database.observabilityojdbc11dms21.5.0.0jar21.11.0.0
        com.oracle.database.observabilityojdbc8-observability21.5.0.0pom21.11.0.0
        com.oracle.database.observabilityojdbc8dms21.5.0.0jar21.11.0.0
        com.oracle.database.r2dbcoracle-r2dbc0.4.0jar1.2.0
        com.oracle.database.securityoraclepki21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.securityosdt_cert21.5.0.0jar21.11.0.0
        com.oracle.database.securityosdt_core21.5.0.0jar21.11.0.0
        com.oracle.database.xmlxdb21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.xmlxmlparserv221.5.0.0jar21.11.0.023.3.0.23.09
        com.querydslquerydsl-apt5.0.0jar5.1.0
        com.querydslquerydsl-codegen5.0.0jar5.1.0
        com.querydslquerydsl-codegen-utils5.0.0jar
        com.querydslquerydsl-collections5.0.0jar5.1.0
        com.querydslquerydsl-core5.0.0jar5.1.0
        com.querydslquerydsl-guava5.0.0jar5.1.0
        com.querydslquerydsl-hibernate-search5.0.0jar5.1.0
        com.querydslquerydsl-jdo5.0.0jar5.1.0
        com.querydslquerydsl-jpa5.0.0jar5.1.0
        com.querydslquerydsl-jpa-codegen5.0.0jar5.1.0
        com.querydslquerydsl-kotlin5.0.0jar5.1.0
        com.querydslquerydsl-kotlin-codegen5.0.0jar5.1.0
        com.querydslquerydsl-lucene35.0.0jar5.1.0
        com.querydslquerydsl-lucene45.0.0jar5.1.0
        com.querydslquerydsl-lucene55.0.0jar5.1.0
        com.querydslquerydsl-mongodb5.0.0jar5.1.0
        com.querydslquerydsl-scala5.0.0jar5.1.0
        com.querydslquerydsl-spatial5.0.0jar5.1.0
        com.querydslquerydsl-sql5.0.0jar5.1.0
        com.querydslquerydsl-sql-codegen5.0.0jar5.1.0
        com.querydslquerydsl-sql-spatial5.0.0jar5.1.0
        com.querydslquerydsl-sql-spring5.0.0jar5.1.0
        com.rabbitmqamqp-client5.14.3jar5.20.0
        com.rabbitmqstream-client0.5.0jar0.15.0
        com.samskivertjmustache1.15jar1.16
        com.sendgridsendgrid-java4.9.3jar4.10.1
        com.squareup.okhttp3logging-interceptor4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3mockwebserver4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okcurl4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-brotli4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-dnsoverhttps4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-sse4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-tls4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-urlconnection4.9.3jar4.12.05.0.0-alpha.12
        com.sun.activationjakarta.activation1.2.2jar2.0.1
        com.sun.mailjakarta.mail1.6.7jar2.0.1
        com.sun.xml.messaging.saajsaaj-impl1.5.3jar3.0.3
        com.unboundidunboundid-ldapsdk6.0.10jar6.0.11
        com.zaxxerHikariCP4.0.3jar5.1.0
        commons-codeccommons-codec1.15jar1.16.1
        commons-poolcommons-pool1.6jar
        de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11jar3.5.44.12.2
        io.dropwizard.metricsmetrics-annotation4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-caffeine4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-caffeine34.2.22jar4.2.25
        io.dropwizard.metricsmetrics-collectd4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-core4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-ehcache4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-graphite4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-healthchecks4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-httpasyncclient4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-httpclient4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-httpclient54.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jakarta-servlet4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jakarta-servlet64.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jakarta-servlets4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jcache4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jdbi4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jdbi34.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jersey24.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jersey34.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jersey314.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty104.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty114.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty124.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty12-ee104.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty94.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jmx4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-json4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jvm4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-log4j24.2.22jar4.2.25
        io.dropwizard.metricsmetrics-logback4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-logback134.2.22jar4.2.25
        io.dropwizard.metricsmetrics-logback144.2.22jar4.2.25
        io.dropwizard.metricsmetrics-servlet4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-servlets4.2.22jar4.2.25
        io.lettucelettuce-core6.1.10.RELEASEjar6.3.1.RELEASE
        io.micrometermicrometer-core1.9.17jar1.12.2
        io.micrometermicrometer-registry-appoptics1.9.17jar1.12.2
        io.micrometermicrometer-registry-atlas1.9.17jar1.12.2
        io.micrometermicrometer-registry-azure-monitor1.9.17jar1.12.2
        io.micrometermicrometer-registry-cloudwatch1.9.17jar1.12.2
        io.micrometermicrometer-registry-cloudwatch21.9.17jar1.12.2
        io.micrometermicrometer-registry-datadog1.9.17jar1.12.2
        io.micrometermicrometer-registry-dynatrace1.9.17jar1.12.2
        io.micrometermicrometer-registry-elastic1.9.17jar1.12.2
        io.micrometermicrometer-registry-ganglia1.9.17jar1.12.2
        io.micrometermicrometer-registry-graphite1.9.17jar1.12.2
        io.micrometermicrometer-registry-health1.9.17jar1.12.2
        io.micrometermicrometer-registry-humio1.9.17jar1.12.2
        io.micrometermicrometer-registry-influx1.9.17jar1.12.2
        io.micrometermicrometer-registry-jmx1.9.17jar1.12.2
        io.micrometermicrometer-registry-kairos1.9.17jar1.12.2
        io.micrometermicrometer-registry-new-relic1.9.17jar1.12.2
        io.micrometermicrometer-registry-opentsdb1.9.17jar1.12.2
        io.micrometermicrometer-registry-otlp1.9.17jar1.12.2
        io.micrometermicrometer-registry-prometheus1.9.17jar1.12.2
        io.micrometermicrometer-registry-signalfx1.9.17jar1.12.2
        io.micrometermicrometer-registry-stackdriver1.9.17jar1.12.2
        io.micrometermicrometer-registry-statsd1.9.17jar1.12.2
        io.micrometermicrometer-registry-wavefront1.9.17jar1.12.2
        io.micrometermicrometer-test1.9.17jar1.12.2
        io.nettynetty-all4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-buffer4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-haproxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-http4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-http24.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-memcache4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-mqtt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-redis4.1.101.Finaljar4.1.106.Final
        io.nettynetty-codec-smtp4.1.101.Finaljar4.1.106.Final
        io.nettynetty-codec-socks4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-stomp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-xml4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-common4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-dev-tools4.1.101.Finaljar4.1.106.Final
        io.nettynetty-example4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-handler4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-handler-proxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-handler-ssl-ocsp4.1.101.Finaljar4.1.106.Final
        io.nettynetty-resolver4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-resolver-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-resolver-dns-classes-macos4.1.101.Finaljar4.1.106.Final
        io.nettynetty-resolver-dns-native-macos4.1.101.Finaljar4.1.106.Final
        io.nettynetty-tcnative2.0.61.Finallinux-x86_64jar2.0.62.Final
        io.nettynetty-tcnative-boringssl-static2.0.61.Finaljar2.0.62.Final
        io.nettynetty-tcnative-classes2.0.61.Finaljar2.0.62.Final
        io.nettynetty-transport4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-classes-epoll4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-classes-kqueue4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-native-epoll4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-native-kqueue4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-native-unix-common4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-rxtx4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-sctp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-udt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.projectreactorreactor-core3.4.34jar3.4.353.6.2
        io.projectreactorreactor-test3.4.34jar3.4.353.6.2
        io.projectreactorreactor-tools3.4.34jar3.4.353.6.2
        io.projectreactor.addonsreactor-adapter3.4.10jar3.5.1
        io.projectreactor.addonsreactor-extra3.4.10jar3.5.1
        io.projectreactor.addonsreactor-pool0.2.12jar1.0.5
        io.projectreactor.kafkareactor-kafka1.3.22jar
        io.projectreactor.kotlinreactor-kotlin-extensions1.1.10jar1.2.2
        io.projectreactor.nettyreactor-netty1.0.39jar1.0.411.1.15
        io.projectreactor.nettyreactor-netty-core1.0.39jar1.0.411.1.15
        io.projectreactor.nettyreactor-netty-http1.0.39jar1.0.411.1.15
        io.projectreactor.nettyreactor-netty-http-brave1.0.39jar1.0.411.1.15
        io.projectreactor.rabbitmqreactor-rabbitmq1.5.6jar
        io.prometheussimpleclient0.15.0jar0.16.0
        io.prometheussimpleclient_caffeine0.15.0jar0.16.0
        io.prometheussimpleclient_common0.15.0jar0.16.0
        io.prometheussimpleclient_dropwizard0.15.0jar0.16.0
        io.prometheussimpleclient_graphite_bridge0.15.0jar0.16.0
        io.prometheussimpleclient_guava0.15.0jar0.16.0
        io.prometheussimpleclient_hibernate0.15.0jar0.16.0
        io.prometheussimpleclient_hotspot0.15.0jar0.16.0
        io.prometheussimpleclient_httpserver0.15.0jar0.16.0
        io.prometheussimpleclient_jetty0.15.0jar0.16.0
        io.prometheussimpleclient_jetty_jdk80.15.0jar0.16.0
        io.prometheussimpleclient_log4j0.15.0jar0.16.0
        io.prometheussimpleclient_log4j20.15.0jar0.16.0
        io.prometheussimpleclient_logback0.15.0jar0.16.0
        io.prometheussimpleclient_pushgateway0.15.0jar0.16.0
        io.prometheussimpleclient_servlet0.15.0jar0.16.0
        io.prometheussimpleclient_servlet_jakarta0.15.0jar0.16.0
        io.prometheussimpleclient_spring_boot0.15.0jar0.16.0
        io.prometheussimpleclient_spring_web0.15.0jar0.16.0
        io.prometheussimpleclient_tracer_otel0.15.0jar0.16.0
        io.prometheussimpleclient_tracer_otel_agent0.15.0jar0.16.0
        io.prometheussimpleclient_vertx0.15.0jar0.16.0
        io.r2dbcr2dbc-h20.9.1.RELEASEjar1.0.0.RELEASE
        io.r2dbcr2dbc-mssql0.9.0.RELEASEjar0.9.0.SONATYPE-M41.0.2.RELEASE
        io.r2dbcr2dbc-pool0.9.2.RELEASEjar1.0.1.RELEASE
        io.r2dbcr2dbc-proxy0.9.1.RELEASEjar1.1.4.RELEASE
        io.r2dbcr2dbc-spi0.9.1.RELEASEjar1.0.0.RELEASE
        io.reactivexrxjava1.3.8jar
        io.reactivexrxjava-reactive-streams1.2.1jar
        io.reactivex.rxjava2rxjava2.2.21jar
        io.rest-assuredjson-path4.5.1jar5.4.0
        io.rest-assuredjson-schema-validator4.5.1jar5.4.0
        io.rest-assuredkotlin-extensions4.5.1jar5.4.0
        io.rest-assuredrest-assured4.5.1jar5.4.0
        io.rest-assuredrest-assured-all4.5.1jar5.4.0
        io.rest-assuredrest-assured-common4.5.1jar5.4.0
        io.rest-assuredscala-support4.5.1jar5.4.0
        io.rest-assuredspring-commons4.5.1jar5.4.0
        io.rest-assuredspring-mock-mvc4.5.1jar5.4.0
        io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1jar5.4.0
        io.rest-assuredspring-web-test-client4.5.1jar5.4.0
        io.rest-assuredxml-path4.5.1jar5.4.0
        io.rest-assured.exampleskotlin-example4.5.1jar
        io.rest-assured.examplesrest-assured-itest-java4.5.1jar
        io.rest-assured.examplesscala-example4.5.1jar
        io.rest-assured.examplesscala-mock-mvc-example4.5.1jar
        io.rest-assured.examplesscalatra-example4.5.1jar
        io.rest-assured.examplesscalatra-webapp4.5.1war
        io.rest-assured.examplesspring-mvc-webapp4.5.1war
        io.rsocketrsocket-core1.1.3jar1.1.4
        io.rsocketrsocket-load-balancer1.1.3jar1.1.4
        io.rsocketrsocket-micrometer1.1.3jar1.1.4
        io.rsocketrsocket-test1.1.3jar1.1.4
        io.rsocketrsocket-transport-local1.1.3jar1.1.4
        io.rsocketrsocket-transport-netty1.1.3jar1.1.4
        io.spring.gradledependency-management-plugin1.0.15.RELEASEjar1.1.4
        io.undertowundertow-core2.2.28.Finaljar2.3.10.Final
        io.undertowundertow-servlet2.2.28.Finaljar2.3.10.Final
        io.undertowundertow-websockets-jsr2.2.28.Finaljar2.3.10.Final
        jakarta.activationjakarta.activation-api1.2.2jar2.1.2
        jakarta.annotationjakarta.annotation-api1.3.5jar3.0.0-M1
        jakarta.jmsjakarta.jms-api2.0.3jar3.1.0
        jakarta.jsonjakarta.json-api1.1.6jar2.1.3
        jakarta.json.bindjakarta.json.bind-api1.0.2jar3.0.0
        jakarta.mailjakarta.mail-api1.6.7jar2.1.2
        jakarta.management.j2eejakarta.management.j2ee-api1.1.4jar
        jakarta.persistencejakarta.persistence-api2.2.3jar3.2.0-M1
        jakarta.servletjakarta.servlet-api4.0.4jar6.1.0-M1
        jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7jar3.0.0
        jakarta.transactionjakarta.transaction-api1.3.3jar2.0.1
        jakarta.validationjakarta.validation-api2.0.2jar3.1.0-M1
        jakarta.websocketjakarta.websocket-api1.1.2jar2.2.0-M1
        jakarta.ws.rsjakarta.ws.rs-api2.1.6jar3.1.0
        jakarta.xml.bindjakarta.xml.bind-api2.3.3jar4.0.1
        jakarta.xml.soapjakarta.xml.soap-api1.4.2jar3.0.1
        jakarta.xml.wsjakarta.xml.ws-api2.3.3jar4.0.1
        javax.activationjavax.activation-api1.2.0jar
        javax.annotationjavax.annotation-api1.3.2jar
        javax.cachecache-api1.1.1jar
        javax.jmsjavax.jms-api2.0.1jar
        javax.jsonjavax.json-api1.1.4jar
        javax.json.bindjavax.json.bind-api1.0jar
        javax.mailjavax.mail-api1.6.2jar
        javax.moneymoney-api1.1jar
        javax.persistencejavax.persistence-api2.2jar
        javax.servletjavax.servlet-api4.0.1jar
        javax.servletjstl1.2jar
        javax.transactionjavax.transaction-api1.3jar
        javax.validationvalidation-api2.0.1.Finaljar
        javax.websocketjavax.websocket-api1.1jar
        javax.xml.bindjaxb-api2.3.1jar2.4.0-b180830.0359
        javax.xml.wsjaxws-api2.3.1jar
        jaxenjaxen1.2.0jar2.0.0
        junitjunit4.13.2jar
        net.bytebuddybyte-buddy1.12.23jar1.14.11
        net.bytebuddybyte-buddy-agent1.12.23jar1.14.11
        net.minidevjson-smart2.4.11jar2.5.0
        net.sf.ehcacheehcache2.10.9.2jar
        net.sourceforge.htmlunithtmlunit2.60.0jar2.70.0
        net.sourceforge.jtdsjtds1.3.1jar
        net.sourceforge.nekohtmlnekohtml1.9.22jar
        nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0jar3.3.0
        org.apache.activemqactivemq-amqp5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-blueprint5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-broker5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-camel5.16.7jar
        org.apache.activemqactivemq-client5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-console5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-http5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-jaas5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-jdbc-store5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-jms-pool5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-kahadb-store5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-karaf5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-leveldb-store5.16.7jar
        org.apache.activemqactivemq-log4j-appender5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-mqtt5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-openwire-generator5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-openwire-legacy5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-osgi5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-partition5.16.7jar5.18.3
        org.apache.activemqactivemq-pool5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-ra5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-run5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-runtime-config5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-shiro5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-spring5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-stomp5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-web5.16.7jar5.18.36.0.1
        org.apache.activemqartemis-amqp-protocol2.19.1jar2.32.0
        org.apache.activemqartemis-commons2.19.1jar2.32.0
        org.apache.activemqartemis-core-client2.19.1jar2.32.0
        org.apache.activemqartemis-jdbc-store2.19.1jar2.32.0
        org.apache.activemqartemis-jms-client2.19.1jar2.32.0
        org.apache.activemqartemis-jms-server2.19.1jar2.32.0
        org.apache.activemqartemis-journal2.19.1jar2.32.0
        org.apache.activemqartemis-quorum-api2.19.1jar2.32.0
        org.apache.activemqartemis-selector2.19.1jar2.32.0
        org.apache.activemqartemis-server2.19.1jar2.32.0
        org.apache.activemqartemis-service-extensions2.19.1jar2.32.0
        org.apache.commonscommons-dbcp22.9.0jar2.11.0
        org.apache.commonscommons-lang33.12.0jar3.14.0
        org.apache.commonscommons-pool22.11.1jar2.12.0
        org.apache.derbyderby10.14.2.0jar10.17.1.0
        org.apache.derbyderbyclient10.14.2.0jar10.17.1.0
        org.apache.derbyderbynet10.14.2.0jar10.17.1.0
        org.apache.derbyderbyoptionaltools10.14.2.0jar10.17.1.0
        org.apache.derbyderbytools10.14.2.0jar10.17.1.0
        org.apache.httpcomponentsfluent-hc4.5.14jar
        org.apache.httpcomponentshttpasyncclient4.1.5jar
        org.apache.httpcomponentshttpclient4.5.14jar
        org.apache.httpcomponentshttpclient-cache4.5.14jar
        org.apache.httpcomponentshttpclient-osgi4.5.14jar
        org.apache.httpcomponentshttpclient-win4.5.14jar
        org.apache.httpcomponentshttpcore4.4.16jar
        org.apache.httpcomponentshttpcore-nio4.4.16jar
        org.apache.httpcomponentshttpmime4.5.14jar
        org.apache.httpcomponents.client5httpclient55.1.4jar5.4-alpha1
        org.apache.httpcomponents.client5httpclient5-cache5.1.4jar5.4-alpha1
        org.apache.httpcomponents.client5httpclient5-fluent5.1.4jar5.4-alpha1
        org.apache.httpcomponents.client5httpclient5-win5.1.4jar5.2.3
        org.apache.httpcomponents.core5httpcore55.1.5jar5.3-alpha1
        org.apache.httpcomponents.core5httpcore5-h25.1.5jar5.3-alpha1
        org.apache.httpcomponents.core5httpcore5-reactive5.1.5jar5.3-alpha1
        org.apache.johnzonjohnzon-core1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jaxrs1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jsonb1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jsonb-extras1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jsonschema1.2.21jar2.0.0
        org.apache.johnzonjohnzon-mapper1.2.21jar2.0.0
        org.apache.johnzonjohnzon-websocket1.2.21jar2.0.0
        org.apache.kafkaconnect3.1.2jar3.6.1
        org.apache.kafkaconnect-api3.1.2jar3.6.1
        org.apache.kafkaconnect-basic-auth-extension3.1.2jar3.6.1
        org.apache.kafkaconnect-file3.1.2jar3.6.1
        org.apache.kafkaconnect-json3.1.2jar3.6.1
        org.apache.kafkaconnect-mirror3.1.2jar3.6.1
        org.apache.kafkaconnect-mirror-client3.1.2jar3.6.1
        org.apache.kafkaconnect-runtime3.1.2jar3.6.1
        org.apache.kafkaconnect-transforms3.1.2jar3.6.1
        org.apache.kafkagenerator3.1.2jar3.6.1
        org.apache.kafkakafka-clients3.1.2jar3.6.1
        org.apache.kafkakafka-log4j-appender3.1.2jar3.6.1
        org.apache.kafkakafka-metadata3.1.2jar3.6.1
        org.apache.kafkakafka-raft3.1.2jar3.6.1
        org.apache.kafkakafka-server-common3.1.2jar3.6.1
        org.apache.kafkakafka-shell3.1.2jar3.6.1
        org.apache.kafkakafka-storage3.1.2jar3.6.1
        org.apache.kafkakafka-storage-api3.1.2jar3.6.1
        org.apache.kafkakafka-streams3.1.2jar3.6.1
        org.apache.kafkakafka-streams-scala_2.123.1.2jar3.6.1
        org.apache.kafkakafka-streams-scala_2.133.1.2jar3.6.1
        org.apache.kafkakafka-streams-test-utils3.1.2jar3.6.1
        org.apache.kafkakafka-tools3.1.2jar3.6.1
        org.apache.kafkakafka_2.123.1.2jar3.6.1
        org.apache.kafkakafka_2.133.1.2jar3.6.1
        org.apache.kafkatrogdor3.1.2jar3.6.1
        org.apache.logging.log4jlog4j-1.2-api2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-api2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-appserver2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-cassandra2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-core2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-couchdb2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-docker2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-flume-ng2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-iostreams2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-jcl2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-jmx-gui2.17.2jar2.22.03.0.0-alpha1
        org.apache.logging.log4jlog4j-jpa2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-jpl2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-jul2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-kubernetes2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-layout-template-json2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-liquibase2.17.2jar2.19.03.0.0-alpha1
        org.apache.logging.log4jlog4j-mongodb32.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-mongodb42.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-slf4j-impl2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-slf4j18-impl2.17.2jar2.18.0
        org.apache.logging.log4jlog4j-spring-boot2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-taglib2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-to-slf4j2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-web2.17.2jar2.22.13.0.0-alpha1
        org.apache.solrsolr-analysis-extras8.11.2jar8.11.39.4.1
        org.apache.solrsolr-analytics8.11.2jar8.11.39.4.1
        org.apache.solrsolr-cell8.11.2jar8.11.3
        org.apache.solrsolr-core8.11.2jar8.11.39.4.1
        org.apache.solrsolr-dataimporthandler8.11.2jar8.11.3
        org.apache.solrsolr-dataimporthandler-extras8.11.2jar8.11.3
        org.apache.solrsolr-gcs-repository8.11.2jar8.11.39.4.1
        org.apache.solrsolr-jaegertracer-configurator8.11.2jar8.11.39.4.1
        org.apache.solrsolr-langid8.11.2jar8.11.39.4.1
        org.apache.solrsolr-ltr8.11.2jar8.11.39.4.1
        org.apache.solrsolr-prometheus-exporter8.11.2jar8.11.39.4.1
        org.apache.solrsolr-s3-repository8.11.2jar8.11.39.4.1
        org.apache.solrsolr-solrj8.11.2jar8.11.39.4.1
        org.apache.solrsolr-test-framework8.11.2jar8.11.39.4.1
        org.apache.solrsolr-velocity8.11.2jar8.11.3
        org.apache.tomcattomcat-annotations-api9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcattomcat-jdbc9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcattomcat-jsp-api9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-core9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-el9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-jasper9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-websocket9.0.83jar9.0.8511.0.0-M16
        org.aspectjaspectjrt1.9.7jar1.9.21
        org.aspectjaspectjtools1.9.7jar1.9.21
        org.aspectjaspectjweaver1.9.7jar1.9.21
        org.assertjassertj-core3.22.0jar3.25.3
        org.awaitilityawaitility4.2.0jar
        org.awaitilityawaitility-groovy4.2.0jar
        org.awaitilityawaitility-kotlin4.2.0jar
        org.awaitilityawaitility-scala4.2.0jar
        org.cache2kcache2k-api2.6.1.Finaljar
        org.cache2kcache2k-config2.6.1.Finaljar
        org.cache2kcache2k-core2.6.1.Finaljar
        org.cache2kcache2k-jcache2.6.1.Finaljar
        org.cache2kcache2k-micrometer2.6.1.Finaljar
        org.cache2kcache2k-spring2.6.1.Finaljar
        org.codehaus.groovygroovy3.0.19jar3.0.20
        org.codehaus.groovygroovy-ant3.0.19jar3.0.20
        org.codehaus.groovygroovy-astbuilder3.0.19jar3.0.20
        org.codehaus.groovygroovy-bsf3.0.19jar3.0.20
        org.codehaus.groovygroovy-cli-commons3.0.19jar3.0.20
        org.codehaus.groovygroovy-cli-picocli3.0.19jar3.0.20
        org.codehaus.groovygroovy-console3.0.19jar3.0.20
        org.codehaus.groovygroovy-datetime3.0.19jar3.0.20
        org.codehaus.groovygroovy-dateutil3.0.19jar3.0.20
        org.codehaus.groovygroovy-docgenerator3.0.19jar3.0.20
        org.codehaus.groovygroovy-groovydoc3.0.19jar3.0.20
        org.codehaus.groovygroovy-groovysh3.0.19jar3.0.20
        org.codehaus.groovygroovy-jaxb3.0.19jar3.0.20
        org.codehaus.groovygroovy-jmx3.0.19jar3.0.20
        org.codehaus.groovygroovy-json3.0.19jar3.0.20
        org.codehaus.groovygroovy-jsr2233.0.19jar3.0.20
        org.codehaus.groovygroovy-macro3.0.19jar3.0.20
        org.codehaus.groovygroovy-nio3.0.19jar3.0.20
        org.codehaus.groovygroovy-servlet3.0.19jar3.0.20
        org.codehaus.groovygroovy-sql3.0.19jar3.0.20
        org.codehaus.groovygroovy-swing3.0.19jar3.0.20
        org.codehaus.groovygroovy-templates3.0.19jar3.0.20
        org.codehaus.groovygroovy-test3.0.19jar3.0.20
        org.codehaus.groovygroovy-test-junit53.0.19jar3.0.20
        org.codehaus.groovygroovy-testng3.0.19jar3.0.20
        org.codehaus.groovygroovy-xml3.0.19jar3.0.20
        org.codehaus.groovygroovy-yaml3.0.19jar3.0.20
        org.codehaus.janinocommons-compiler3.1.10jar3.1.12
        org.codehaus.janinocommons-compiler-jdk3.1.10jar3.1.12
        org.codehaus.janinojanino3.1.10jar3.1.12
        org.eclipse.jettyapache-jsp9.4.53.v20231009jar11.0.20
        org.eclipse.jettyapache-jstl9.4.53.v20231009jar11.0.0
        org.eclipse.jettyinfinispan-common9.4.53.v20231009jar11.0.20
        org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009jar11.0.20
        org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-alpn-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009jar
        org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009jar
        org.eclipse.jettyjetty-alpn-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-annotations9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-ant9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-continuation9.4.53.v20231009jar
        org.eclipse.jettyjetty-deploy9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-distribution9.4.53.v20231009zip11.0.0.beta1
        org.eclipse.jettyjetty-hazelcast9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-home9.4.53.v20231009zip12.0.6
        org.eclipse.jettyjetty-http9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-http-spi9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-io9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-jaas9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-jaspi9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-jmx9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-jndi9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-nosql9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-openid9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-plus9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-proxy9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-quickstart9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-reactive-httpclient1.1.15jar4.0.3
        org.eclipse.jettyjetty-rewrite9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-security9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-servlet9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-servlets9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-spring9.4.53.v20231009jar11.0.0.beta3
        org.eclipse.jettyjetty-unixsocket9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-util9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-util-ajax9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-webapp9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-xml9.4.53.v20231009jar12.0.6
        org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009jar12.0.6
        org.eclipse.jetty.http2http2-client9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-common9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-hpack9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-server9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009jar12.0.6
        org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158jar
        org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009jar
        org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009jar11.0.20
        org.ehcacheehcache3.10.8jar
        org.ehcacheehcache-clustered3.10.8jar
        org.ehcacheehcache-transactions3.10.8jar
        org.elasticsearchelasticsearch7.17.15jar7.17.188.12.1
        org.elasticsearch.clientelasticsearch-rest-client7.17.15jar7.17.188.12.1
        org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15jar7.17.188.12.1
        org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15jar7.17.188.0.0-alpha2
        org.elasticsearch.clienttransport7.17.15jar7.17.18
        org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15zip7.17.188.12.1
        org.elasticsearch.plugintransport-netty4-client7.17.15jar7.17.18
        org.firebirdsql.jdbcjaybird4.0.9.java8jar4.0.9.java114.0.10.java115.0.3.java11
        org.firebirdsql.jdbcjaybird-jdk184.0.9.java8jar4.0.10.java8
        org.flywaydbflyway-core8.5.13jar10.7.2
        org.flywaydbflyway-firebird8.5.13jar10.7.2
        org.flywaydbflyway-mysql8.5.13jar10.7.2
        org.flywaydbflyway-sqlserver8.5.13jar10.7.2
        org.freemarkerfreemarker2.3.32jar
        org.glassfishjakarta.el3.0.4jar5.0.0-M1
        org.glassfish.jaxbcodemodel2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbcodemodel-annotation-compiler2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbjaxb-jxc2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbjaxb-runtime2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbjaxb-xjc2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbtxw22.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbtxwc22.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbxsom2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jersey.bundlesjaxrs-ri2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-apache-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-grizzly-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-helidon-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-jdk-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-jetty-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-netty-connector2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-grizzly2-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-jdk-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-jetty-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-jetty-servlet2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-netty-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-servlet2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-servlet-core2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-simple-http2.35jar2.413.1.5
        org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35jar2.413.1.5
        org.glassfish.jersey.corejersey-client2.35jar2.413.1.5
        org.glassfish.jersey.corejersey-common2.35jar2.413.1.5
        org.glassfish.jersey.corejersey-server2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-bean-validation2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-declarative-linking2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-entity-filtering2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-metainf-services2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-bean-validation2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-freemarker2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-jsp2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-mustache2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-proxy-client2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-servlet-portability2.35jar2.413.0.0-M6
        org.glassfish.jersey.extjersey-spring42.35jar2.413.0.0-M6
        org.glassfish.jersey.extjersey-spring52.35jar2.413.0.0-M6
        org.glassfish.jersey.extjersey-wadl-doclet2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-weld2-se2.35jar2.413.1.5
        org.glassfish.jersey.ext.microprofilejersey-mp-config2.35jar2.413.1.5
        org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35jar2.413.1.5
        org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35jar2.413.1.5
        org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35jar2.413.1.5
        org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35jar2.413.1.5
        org.glassfish.jersey.injectjersey-cdi2-se2.35jar2.413.1.5
        org.glassfish.jersey.injectjersey-hk22.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-jaxb2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-binding2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-jackson2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-jettison2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-processing2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-kryo2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-moxy2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-multipart2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-sse2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth1-client2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth1-server2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth1-signature2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth2-client2.35jar2.413.1.5
        org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35jar2.413.1.5
        org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35pom2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35jar2.413.1.5
        org.glassfish.webjakarta.servlet.jsp.jstl1.2.6jar3.0.1
        org.hamcresthamcrest2.2jar
        org.hamcresthamcrest-core2.2jar
        org.hamcresthamcrest-library2.2jar
        org.hibernatehibernate-c3p05.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-core5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-ehcache5.6.15.Finaljar6.0.0.Alpha7
        org.hibernatehibernate-entitymanager5.6.15.Finaljar6.0.0.Alpha7
        org.hibernatehibernate-envers5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-hikaricp5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-java85.6.15.Finaljar6.0.0.Alpha7
        org.hibernatehibernate-jcache5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-jpamodelgen5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-micrometer5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-proxool5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-spatial5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-testing5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-vibur5.6.15.Finaljar6.4.4.Final
        org.hibernate.validatorhibernate-validator6.2.5.Finaljar8.0.1.Final
        org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Finaljar8.0.1.Final
        org.hsqldbhsqldb2.5.2jar2.7.2
        org.infinispaninfinispan-anchored-keys13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-jdbc13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-jpa13.0.20.Finaljar13.0.21.Final14.0.0.Dev02
        org.infinispaninfinispan-cachestore-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-rocksdb13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-sql13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cdi-common13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cdi-embedded13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cdi-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-checkstyle13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cli-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-client-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-client-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cloudevents-integration13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-clustered-counter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-clustered-lock13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-commons-test13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-component-annotations13.0.20.Finalprovidedjar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-component-processor13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-console0.15.5.Finaljar15.0.0.Dev05
        org.infinispaninfinispan-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-extended-statistics13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-hibernate-cache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-hibernate-cache-spi13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-hibernate-cache-v5313.0.20.Finaljar13.0.21.Final14.0.0.Dev02
        org.infinispaninfinispan-jboss-marshalling13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-jcache13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-jcache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-jcache-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-key-value-store-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-marshaller-kryo13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-marshaller-protostuff13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-multimap13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-objectfilter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-query13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-query-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-query-dsl13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-remote-query-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-remote-query-server13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-scripting13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-memcached13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-router13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-runtime13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-testdriver-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-testdriver-junit413.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-testdriver-junit513.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring5-common13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring5-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring5-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-tasks13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-tasks-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-tools13.0.20.Finaljar15.0.0.Dev08
        org.infinispan.protostreamprotostream4.4.4.Finaljar4.6.5.Final14.0.0.CR2
        org.infinispan.protostreamprotostream-processor4.4.4.Finalprovidedjar4.6.5.Final14.0.0.CR2
        org.infinispan.protostreamprotostream-types4.4.4.Finaljar4.6.5.Final14.0.0.CR2
        org.influxdbinfluxdb-java2.22jar2.24
        org.jboss.loggingjboss-logging3.4.3.Finaljar3.5.3.Final
        org.jdomjdom22.0.6.1jar
        org.jetbrains.kotlinkotlin-compiler1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-daemon-client1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-main-kts1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-osgi-bundle1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-reflect1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-script-runtime1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-script-util1.6.21jar1.8.22
        org.jetbrains.kotlinkotlin-scripting-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-scripting-jvm1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-js1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-annotations-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-js1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-junit1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-junit51.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-testng1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4jar1.8.0-RC2
        org.jolokiajolokia-core1.7.2jar
        org.jooqjooq3.14.16jar3.19.3
        org.jooqjooq-codegen3.14.16jar3.19.3
        org.jooqjooq-kotlin3.14.16jar3.19.3
        org.jooqjooq-meta3.14.16jar3.19.3
        org.junit.jupiterjunit-jupiter5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-api5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-engine5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-migrationsupport5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-params5.8.2jar5.10.2
        org.junit.platformjunit-platform-commons1.8.2jar1.10.2
        org.junit.platformjunit-platform-console1.8.2jar1.10.2
        org.junit.platformjunit-platform-engine1.8.2jar1.10.2
        org.junit.platformjunit-platform-jfr1.8.2jar1.10.2
        org.junit.platformjunit-platform-launcher1.8.2jar1.10.2
        org.junit.platformjunit-platform-reporting1.8.2jar1.10.2
        org.junit.platformjunit-platform-runner1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite-api1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite-commons1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite-engine1.8.2jar1.10.2
        org.junit.platformjunit-platform-testkit1.8.2jar1.10.2
        org.junit.vintagejunit-vintage-engine5.8.2jar5.10.2
        org.liquibaseliquibase-cdi4.9.1jar4.26.0
        org.liquibaseliquibase-core4.9.1jar4.26.0
        org.mariadbr2dbc-mariadb1.1.2jar1.1.4
        org.mariadb.jdbcmariadb-java-client3.1.4jar3.3.2
        org.messaginghubpooled-jms1.2.6jar3.1.5
        org.mockitomockito-android4.5.1jar4.11.05.10.0
        org.mockitomockito-core4.5.1jar4.11.05.10.0
        org.mockitomockito-errorprone4.5.1jar4.11.05.10.0
        org.mockitomockito-inline4.5.1jar4.11.05.2.0
        org.mockitomockito-junit-jupiter4.5.1jar4.11.05.10.0
        org.mockitomockito-proxy4.5.1jar4.11.05.10.0
        org.mongodbbson4.6.1jar4.11.15.0.0-beta0
        org.mongodbbson-record-codec4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-core4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-legacy4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-reactivestreams4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-sync4.6.1jar4.11.15.0.0-beta0
        org.mortbay.jasperapache-el9.0.52jar9.0.83.110.1.16
        org.mybatismybatis3.5.15jar
        org.mybatismybatis-spring2.1.2jar3.0.3
        org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jar
        org.mybatis.scriptingmybatis-freemarker1.2.4jar
        org.mybatis.scriptingmybatis-thymeleaf1.0.4jar
        org.mybatis.scriptingmybatis-velocity2.1.2jar
        org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2jar3.0.3
        org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2jar3.0.3
        org.mybatis.spring.nativemybatis-spring-native-core0.1.0-SNAPSHOTjar
        org.mybatis.spring.nativemybatis-spring-native-extensions0.1.0-SNAPSHOTjar
        org.neo4j.driverneo4j-java-driver4.4.12jar4.4.135.17.0
        org.postgresqlpostgresql42.3.8jar42.7.1
        org.postgresqlr2dbc-postgresql0.9.2.RELEASEjar0.9.3.RELEASE1.0.4.RELEASE
        org.projectlomboklombok1.18.30jar
        org.quartz-schedulerquartz2.3.2jar2.5.0-rc1
        org.quartz-schedulerquartz-jobs2.3.2jar2.5.0-rc1
        org.reactivestreamsreactive-streams1.0.4jar
        org.seleniumhq.seleniumhtmlunit-driver3.61.0jar3.64.04.13.0
        org.seleniumhq.seleniumlift4.1.4jar4.14.0
        org.seleniumhq.seleniumselenium-api4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-chrome-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-chromium-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-devtools-v1004.1.4jar4.2.2
        org.seleniumhq.seleniumselenium-devtools-v1014.1.4jar4.3.0
        org.seleniumhq.seleniumselenium-devtools-v854.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-devtools-v994.1.4jar
        org.seleniumhq.seleniumselenium-edge-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-firefox-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-grid4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-http4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-ie-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-java4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-json4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-opera-driver4.1.4jar4.4.0
        org.seleniumhq.seleniumselenium-remote-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-safari-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-session-map-redis4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-support4.1.4jar4.17.0
        org.skyscreamerjsonassert1.5.1jar
        org.slf4jjcl-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jjul-to-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jlog4j-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-api1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-ext1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-jcl1.7.36jar
        org.slf4jslf4j-jdk141.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-log4j121.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-nop1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-simple1.7.36jar1.8.0-beta42.1.0-alpha1
        org.springframeworkspring-aop5.3.31jar6.1.3
        org.springframeworkspring-aspects5.3.31jar6.1.3
        org.springframeworkspring-beans5.3.31jar6.1.3
        org.springframeworkspring-context5.3.31jar6.1.3
        org.springframeworkspring-context-indexer5.3.31jar6.1.3
        org.springframeworkspring-context-support5.3.31jar6.1.3
        org.springframeworkspring-core5.3.31jar6.1.3
        org.springframeworkspring-expression5.3.31jar6.1.3
        org.springframeworkspring-instrument5.3.31jar6.1.3
        org.springframeworkspring-jcl5.3.31jar6.1.3
        org.springframeworkspring-jdbc5.3.31jar6.1.3
        org.springframeworkspring-jms5.3.31jar6.1.3
        org.springframeworkspring-messaging5.3.31jar6.1.3
        org.springframeworkspring-orm5.3.31jar6.1.3
        org.springframeworkspring-oxm5.3.31jar6.1.3
        org.springframeworkspring-r2dbc5.3.31jar6.1.3
        org.springframeworkspring-test5.3.31jar6.1.3
        org.springframeworkspring-tx5.3.31jar6.1.3
        org.springframeworkspring-web5.3.31jar6.1.3
        org.springframeworkspring-webflux5.3.31jar6.1.3
        org.springframeworkspring-webmvc5.3.31jar6.1.3
        org.springframeworkspring-websocket5.3.31jar6.1.3
        org.springframework.amqpspring-amqp2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit-junit2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit-stream2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit-test2.4.17jar3.1.1
        org.springframework.batchspring-batch-core4.3.10jar5.1.0
        org.springframework.batchspring-batch-infrastructure4.3.10jar5.1.0
        org.springframework.batchspring-batch-integration4.3.10jar5.1.0
        org.springframework.batchspring-batch-test4.3.10jar5.1.0
        org.springframework.bootspring-boot2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-actuator2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-actuator-autoconfigure2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-autoconfigure2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-autoconfigure-processor2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-buildpack-platform2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-configuration-metadata2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-configuration-processor2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-devtools2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-jarmode-layertools2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-loader2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-loader-tools2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-properties-migrator2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-activemq2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-actuator2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-amqp2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-aop2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-artemis2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-batch2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-cache2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-cassandra2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-couchbase2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-jdbc2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-jpa2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-ldap2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-mongodb2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-neo4j2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-r2dbc2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-redis2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-rest2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-freemarker2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-graphql2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-groovy-templates2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-hateoas2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-integration2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jdbc2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jersey2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jetty2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jooq2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-json2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jta-atomikos2.7.18jar
        org.springframework.bootspring-boot-starter-log4j22.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-logging2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-mail2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-mustache2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-oauth2-client2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-quartz2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-reactor-netty2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-rsocket2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-security2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-test2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-thymeleaf2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-tomcat2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-undertow2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-validation2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-web2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-web-services2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-webflux2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-websocket2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-test2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-test-autoconfigure2.7.18jar3.3.0-M1
        org.springframework.dataspring-data-cassandra3.4.18jar4.2.2
        org.springframework.dataspring-data-commons2.7.18jar3.2.2
        org.springframework.dataspring-data-couchbase4.4.18jar5.2.2
        org.springframework.dataspring-data-elasticsearch4.4.18jar5.2.2
        org.springframework.dataspring-data-envers2.7.18jar3.2.2
        org.springframework.dataspring-data-geode2.7.18jar3.0.0-M6
        org.springframework.dataspring-data-jdbc2.4.18jar3.2.2
        org.springframework.dataspring-data-jpa2.7.18jar3.2.2
        org.springframework.dataspring-data-keyvalue2.7.18jar3.2.2
        org.springframework.dataspring-data-ldap2.7.18jar3.2.2
        org.springframework.dataspring-data-mongodb3.4.18jar4.2.2
        org.springframework.dataspring-data-neo4j6.3.18jar7.2.2
        org.springframework.dataspring-data-r2dbc1.5.18jar3.2.2
        org.springframework.dataspring-data-redis2.7.18jar3.2.2
        org.springframework.dataspring-data-relational2.4.18jar3.2.2
        org.springframework.dataspring-data-rest-core3.7.18jar4.2.2
        org.springframework.dataspring-data-rest-hal-explorer3.7.18jar4.2.2
        org.springframework.dataspring-data-rest-webmvc3.7.18jar4.2.2
        org.springframework.experimentalspring-aot0.12.2jar
        org.springframework.experimentalspring-native0.12.2jar
        org.springframework.graphqlspring-graphql1.0.6jar1.2.4
        org.springframework.graphqlspring-graphql-test1.0.6jar1.2.4
        org.springframework.hateoasspring-hateoas1.5.6jar2.2.0
        org.springframework.integrationspring-integration-amqp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-core5.5.20jar6.2.1
        org.springframework.integrationspring-integration-event5.5.20jar6.2.1
        org.springframework.integrationspring-integration-feed5.5.20jar6.2.1
        org.springframework.integrationspring-integration-file5.5.20jar6.2.1
        org.springframework.integrationspring-integration-ftp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-gemfire5.5.20jar6.0.0-M5
        org.springframework.integrationspring-integration-groovy5.5.20jar6.2.1
        org.springframework.integrationspring-integration-http5.5.20jar6.2.1
        org.springframework.integrationspring-integration-ip5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jdbc5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jms5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jmx5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jpa5.5.20jar6.2.1
        org.springframework.integrationspring-integration-kafka5.5.20jar6.2.1
        org.springframework.integrationspring-integration-mail5.5.20jar6.2.1
        org.springframework.integrationspring-integration-mongodb5.5.20jar6.2.1
        org.springframework.integrationspring-integration-mqtt5.5.20jar6.2.1
        org.springframework.integrationspring-integration-r2dbc5.5.20jar6.2.1
        org.springframework.integrationspring-integration-redis5.5.20jar6.2.1
        org.springframework.integrationspring-integration-rmi5.5.20jar
        org.springframework.integrationspring-integration-rsocket5.5.20jar6.2.1
        org.springframework.integrationspring-integration-scripting5.5.20jar6.2.1
        org.springframework.integrationspring-integration-security5.5.20jar6.2.1
        org.springframework.integrationspring-integration-sftp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-stomp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-stream5.5.20jar6.2.1
        org.springframework.integrationspring-integration-syslog5.5.20jar6.2.1
        org.springframework.integrationspring-integration-test5.5.20jar6.2.1
        org.springframework.integrationspring-integration-test-support5.5.20jar6.2.1
        org.springframework.integrationspring-integration-webflux5.5.20jar6.2.1
        org.springframework.integrationspring-integration-websocket5.5.20jar6.2.1
        org.springframework.integrationspring-integration-ws5.5.20jar6.2.1
        org.springframework.integrationspring-integration-xml5.5.20jar6.2.1
        org.springframework.integrationspring-integration-xmpp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-zeromq5.5.20jar6.2.1
        org.springframework.integrationspring-integration-zookeeper5.5.20jar6.2.1
        org.springframework.kafkaspring-kafka2.8.11jar2.9.133.1.1
        org.springframework.kafkaspring-kafka-test2.8.11jar2.9.133.1.1
        org.springframework.ldapspring-ldap-core2.4.1jar3.2.1
        org.springframework.ldapspring-ldap-core-tiger2.4.1jar3.0.0-M1
        org.springframework.ldapspring-ldap-ldif-core2.4.1jar3.2.1
        org.springframework.ldapspring-ldap-odm2.4.1jar3.2.1
        org.springframework.ldapspring-ldap-test2.4.1jar3.2.1
        org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-core2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASEjar3.0.1
        org.springframework.retryspring-retry1.3.4jar2.0.5
        org.springframework.securityspring-security-acl5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-aspects5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-cas5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-config5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-core5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-crypto5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-data5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-ldap5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-messaging5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-client5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-core5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-jose5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-resource-server5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-openid5.7.11jar5.8.96.0.0-M1
        org.springframework.securityspring-security-remoting5.7.11jar5.8.9
        org.springframework.securityspring-security-rsocket5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-saml2-service-provider5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-taglibs5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-test5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-web5.7.11jar5.8.96.3.0-M1
        org.springframework.sessionspring-session-core2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-data-geode2.7.1jar2.7.23.0.0-M5
        org.springframework.sessionspring-session-data-mongodb2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-data-redis2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-hazelcast2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-jdbc2.7.4jar3.3.0-M1
        org.springframework.wsspring-ws-core3.1.8jar4.0.10
        org.springframework.wsspring-ws-security3.1.8jar4.0.10
        org.springframework.wsspring-ws-support3.1.8jar4.0.10
        org.springframework.wsspring-ws-test3.1.8jar4.0.10
        org.springframework.wsspring-xml3.1.8jar4.0.10
        org.thymeleafthymeleaf3.0.15.RELEASEjar3.1.2.RELEASE
        org.thymeleafthymeleaf-spring53.0.15.RELEASEjar3.1.2.RELEASE
        org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASEjar
        org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASEjar3.1.2.RELEASE
        org.webjarswebjars-locator-core0.50jar0.55
        org.xerialsqlite-jdbc3.36.0.3jar3.45.1.0
        org.xmlunitxmlunit-assertj2.9.1jar
        org.xmlunitxmlunit-assertj32.9.1jar
        org.xmlunitxmlunit-core2.9.1jar
        org.xmlunitxmlunit-legacy2.9.1jar
        org.xmlunitxmlunit-matchers2.9.1jar
        org.xmlunitxmlunit-placeholders2.9.1jar
        org.yamlsnakeyaml1.30jar1.332.2
        redis.clientsjedis3.8.0jar3.10.05.2.0-alpha2
        wsdl4jwsdl4j1.6.3jar
        StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        +

        Dependencies

        +

        This project does not declare any dependencies.

        +

        Dependency Updates

        +

        +

        antlr:antlr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idantlr
        Artifact Idantlr
        Current Version2.7.7
        Scope
        Classifier
        Typejar
        Newer versions20030911 Latest Major
        +

        ch.qos.logback:logback-access

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idch.qos.logback
        Artifact Idlogback-access
        Current Version1.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.2.13 Latest Incremental
        1.3.0-alpha0
        1.3.0-alpha1
        1.3.0-alpha2
        1.3.0-alpha3
        1.3.0-alpha4
        1.3.0-alpha5
        1.3.0-alpha6
        1.3.0-alpha7
        1.3.0-alpha8
        1.3.0-alpha9
        1.3.0-alpha10
        1.3.0-alpha11
        1.3.0-alpha12
        1.3.0-alpha13
        1.3.0-alpha14
        1.3.0-alpha15
        1.3.0-alpha16
        1.3.0-beta0
        1.3.0
        1.3.1
        1.3.2
        1.3.3
        1.3.4
        1.3.5
        1.3.6
        1.3.7
        1.3.8
        1.3.9
        1.3.10
        1.3.11
        1.3.12
        1.3.13
        1.3.14
        1.4.0
        1.4.1
        1.4.2
        1.4.3
        1.4.4
        1.4.5
        1.4.6
        1.4.7
        1.4.8
        1.4.9
        1.4.10
        1.4.11
        1.4.12
        1.4.13
        1.4.14 Latest Minor
        +

        ch.qos.logback:logback-classic

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idch.qos.logback
        Artifact Idlogback-classic
        Current Version1.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.2.13 Latest Incremental
        1.3.0-alpha0
        1.3.0-alpha1
        1.3.0-alpha2
        1.3.0-alpha3
        1.3.0-alpha4
        1.3.0-alpha5
        1.3.0-alpha6
        1.3.0-alpha7
        1.3.0-alpha8
        1.3.0-alpha9
        1.3.0-alpha10
        1.3.0-alpha11
        1.3.0-alpha12
        1.3.0-alpha13
        1.3.0-alpha14
        1.3.0-alpha15
        1.3.0-alpha16
        1.3.0-beta0
        1.3.0
        1.3.1
        1.3.2
        1.3.3
        1.3.4
        1.3.5
        1.3.6
        1.3.7
        1.3.8
        1.3.9
        1.3.10
        1.3.11
        1.3.12
        1.3.13
        1.3.14
        1.4.0
        1.4.1
        1.4.2
        1.4.3
        1.4.4
        1.4.5
        1.4.6
        1.4.7
        1.4.8
        1.4.9
        1.4.10
        1.4.11
        1.4.12
        1.4.13
        1.4.14 Latest Minor
        +

        ch.qos.logback:logback-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idch.qos.logback
        Artifact Idlogback-core
        Current Version1.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.2.13 Latest Incremental
        1.3.0-alpha0
        1.3.0-alpha1
        1.3.0-alpha2
        1.3.0-alpha3
        1.3.0-alpha4
        1.3.0-alpha5
        1.3.0-alpha6
        1.3.0-alpha7
        1.3.0-alpha8
        1.3.0-alpha9
        1.3.0-alpha10
        1.3.0-alpha11
        1.3.0-alpha12
        1.3.0-alpha13
        1.3.0-alpha14
        1.3.0-alpha15
        1.3.0-alpha16
        1.3.0-beta0
        1.3.0
        1.3.1
        1.3.2
        1.3.3
        1.3.4
        1.3.5
        1.3.6
        1.3.7
        1.3.8
        1.3.9
        1.3.10
        1.3.11
        1.3.12
        1.3.13
        1.3.14
        1.4.0
        1.4.1
        1.4.2
        1.4.3
        1.4.4
        1.4.5
        1.4.6
        1.4.7
        1.4.8
        1.4.9
        1.4.10
        1.4.11
        1.4.12
        1.4.13
        1.4.14 Latest Minor
        +

        com.atomikos:transactions-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.atomikos
        Artifact Idtransactions-jdbc
        Current Version4.0.6
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        6.0.0M1
        6.0.0M2
        6.0.0 Latest Major
        +

        com.atomikos:transactions-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.atomikos
        Artifact Idtransactions-jms
        Current Version4.0.6
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        6.0.0M1
        6.0.0M2
        6.0.0 Latest Major
        +

        com.atomikos:transactions-jta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.atomikos
        Artifact Idtransactions-jta
        Current Version4.0.6
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        6.0.0M1
        6.0.0M2
        6.0.0 Latest Major
        +

        com.couchbase.client:java-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.couchbase.client
        Artifact Idjava-client
        Current Version3.3.4
        Scope
        Classifier
        Typejar
        Newer versions3.4.0
        3.4.1
        3.4.2
        3.4.3
        3.4.4
        3.4.5
        3.4.6
        3.4.7
        3.4.8
        3.4.9
        3.4.10
        3.4.11
        3.5.0
        3.5.1
        3.5.2
        3.5.3 Latest Minor
        +

        com.datastax.oss:java-driver-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-core
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-core-shaded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-core-shaded
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-mapper-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-mapper-processor
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-mapper-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-mapper-runtime
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-metrics-micrometer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-metrics-micrometer
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-metrics-microprofile

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-metrics-microprofile
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-query-builder

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-query-builder
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-shaded-guava

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-shaded-guava
        Current Version25.1-jre-graal-sub-1
        Scope
        Classifier
        Typejar
        +

        com.datastax.oss:java-driver-test-infra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-test-infra
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:native-protocol

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.datastax.oss
        Artifact Idnative-protocol
        Current Version1.5.1
        Scope
        Classifier
        Typejar
        +

        com.fasterxml:classmate

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml
        Artifact Idclassmate
        Current Version1.5.1
        Scope
        Classifier
        Typejar
        Newer versions1.6.0
        1.7.0 Latest Minor
        +

        com.fasterxml.jackson.core:jackson-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.core
        Artifact Idjackson-annotations
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.core:jackson-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.core
        Artifact Idjackson-core
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.core:jackson-databind

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.core
        Artifact Idjackson-databind
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-avro

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-avro
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-cbor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-cbor
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-csv

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-csv
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-ion

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-ion
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-properties

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-properties
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-protobuf
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-smile

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-smile
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-toml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-toml
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-xml
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-yaml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-yaml
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-eclipse-collections

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-eclipse-collections
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-guava
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hibernate4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hibernate4
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hibernate5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hibernate5
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hibernate5-jakarta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hibernate5-jakarta
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hppc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hppc
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jakarta-jsonp
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jaxrs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jaxrs
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jdk8
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-joda

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-joda
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-joda-money

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-joda-money
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-json-org

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-json-org
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jsr310

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jsr310
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jsr353

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jsr353
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-pcollections

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-pcollections
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-base
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-cbor-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-cbor-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-json-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-smile-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-smile-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-xml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-xml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-yaml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-yaml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-base

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-base
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-cbor-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-json-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-smile-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-xml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-yaml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-all

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-all
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-annotation-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-annotation-support
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-objects

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-objects
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-retrofit2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-retrofit2
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-stree

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-stree
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-afterburner

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-afterburner
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-blackbird

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-blackbird
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-guice

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-guice
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-jakarta-xmlbind-annotations
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-jaxb-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-jaxb-annotations
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-jsonSchema

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-jsonSchema
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-kotlin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-kotlin
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-mrbean

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-mrbean
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-no-ctor-deser

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-no-ctor-deser
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-osgi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-osgi
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-parameter-names

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-parameter-names
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-paranamer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-paranamer
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_2.11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_2.11
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_2.12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_2.12
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_2.13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_2.13
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_3
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.github.ben-manes.caffeine:caffeine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idcaffeine
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.ben-manes.caffeine:guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idguava
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.ben-manes.caffeine:jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idjcache
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.ben-manes.caffeine:simulator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idsimulator
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.mxab.thymeleaf.extras
        Artifact Idthymeleaf-extras-data-attribute
        Current Version2.0.1
        Scope
        Classifier
        Typejar
        +

        com.google.appengine:appengine-api-1.0-sdk

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.google.appengine
        Artifact Idappengine-api-1.0-sdk
        Current Version1.9.98
        Scope
        Classifier
        Typejar
        Newer versions2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.0.13
        2.0.14
        2.0.15
        2.0.16
        2.0.17
        2.0.19
        2.0.20
        2.0.21
        2.0.22
        2.0.23
        2.0.24 Latest Major
        +

        com.google.code.gson:gson

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.google.code.gson
        Artifact Idgson
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        Newer versions2.10
        2.10.1 Latest Minor
        +

        com.graphql-java:graphql-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.graphql-java
        Artifact Idgraphql-java
        Current Version18.5
        Scope
        Classifier
        Typejar
        Newer versions18.6
        18.7 Latest Minor
        19.0
        19.1
        19.2
        19.3
        19.4
        19.5
        19.6
        19.7
        19.8
        19.9
        20.0
        20.1
        20.2
        20.3
        20.4
        20.5
        20.6
        20.7
        21.0
        21.1
        21.2
        21.3
        2018-06-04T04-23-07
        2018-06-04T04-37-12
        2018-06-04T05-35-18-e5b324e
        2018-06-04T06-08-37-e5b324e
        2018-06-04T06-12-10-9e01eaa
        2018-06-04T06-18-26-
        2018-06-04T06-32-44-
        2018-06-04T06-49-40-474b470
        2018-06-04T11-42-58-352f0df
        2018-06-04T21-54-46-f3ede8b
        2018-06-04T22-33-28-a93fe6a
        2018-06-04T22-49-40-ad9c92a
        2018-06-05T00-30-43-5e542a9
        2018-06-05T05-02-26-ca6f7fa
        2018-06-12T07-15-39-50a2a13
        2018-06-13T01-43-44-50a2a13
        2018-06-16T10-13-54-f3af483
        2018-06-19T22-08-22-7270438
        2018-06-20T08-24-34-aa92267
        2018-06-21T06-20-30-6984d3b
        2018-06-24T21-45-32-a683b9e
        2018-06-25T00-43-57-d087b4a
        2018-06-25T02-16-07-639aff3
        2018-06-27T00-18-28-1e12da9
        2018-07-04T08-09-58-795c232
        2018-07-11T08-11-14-394ca2a
        2018-07-12T05-33-47-67d6257
        2018-07-12T11-44-24-8d02fc7
        2018-07-13T04-59-30-f72244a
        2018-07-27T07-38-22-2fe7914
        2018-07-27T07-39-10-901db94
        2018-07-27T10-32-58-4d45311
        2018-07-27T10-57-25-ad87047
        2018-07-27T12-45-31-5b44eff
        2018-07-28T00-19-13-5ea18ff
        2018-07-30T00-23-12-bfee885
        2018-07-30T07-03-52-6e1bc02
        2018-08-01T04-10-44-b8b248a
        2018-08-07T03-17-17-653d67f
        2018-08-07T03-26-20-3b4957b
        2018-08-07T05-26-11-b835941
        2018-08-07T05-28-06-4c0c33a
        2018-08-14T07-47-58-fd2454f
        2018-08-16T09-47-33-00a720f
        2018-08-20T08-16-01-b66eade
        2018-08-20T08-17-20-0deb127
        2018-08-20T08-17-43-df4775c
        2018-08-20T09-22-08-f02ee24
        2018-08-20T10-18-26-0adc5f8
        2018-08-23T21-16-30-141b8e4
        2018-08-28T23-42-26-f2f4b1f
        2018-08-28T23-42-56-5c7b9ef
        2018-08-28T23-43-42-d049882
        2018-08-29T06-42-12-24db46a
        2018-08-29T21-42-21-9ed2843
        2018-08-30T23-23-01-6c72aaf
        2018-08-30T23-23-36-0b5f286
        2018-09-03T01-10-42-4485074
        2018-09-08T05-14-26-03482af
        2018-09-08T07-01-35-b55f8a5
        2018-09-09T01-51-54-4c5aca5
        2018-09-12T11-52-41-a96e963
        2018-09-13T04-39-06-fdefa43
        2018-09-13T04-41-01-179fb2e
        2018-09-13T21-08-39-094ff85
        2018-09-13T21-13-06-e45bea8
        2018-09-16T01-27-46-27a6e44
        2018-09-16T01-27-54-eef571c
        2018-09-17T07-40-50-27a6e44
        2018-09-17T07-41-05-efbcf37
        2018-09-17T23-03-05-4363a82
        2018-09-18T21-31-05-de360a0
        2018-09-18T21-34-59-8a5fa0a
        2018-09-23T22-54-34-e6a97f6
        2018-09-27T10-23-49-6b14546
        2018-09-28T03-46-03-b031cfc
        2018-09-30T06-30-11-d526d04
        2018-10-02T04-01-30-af07d80
        2018-10-03T06-38-59-a46d462
        2018-10-03T07-03-19-80342b2
        2018-10-03T07-16-06-0d80418
        2018-10-08T21-25-58-ac9d5c6
        2018-10-09T07-07-16-78a6e4e
        2018-10-10T05-31-53-0466a3d
        2018-10-10T05-39-21-5cda03c
        2018-10-10T20-51-25-232373f
        2018-10-15T22-47-19-99aac04
        2018-10-16T04-11-52-46045a8
        2018-10-17T06-19-11-93e6150
        2018-10-17T09-47-16-c9ea5fc
        2018-10-17T23-50-56-d72f029
        2018-10-18T07-23-00-873bada
        2018-10-18T11-21-20-610a527
        2018-10-24T21-14-21-5e2c94f
        2018-10-24T21-16-55-25378bd
        2018-10-29T04-08-41-1f24856
        2018-10-31T23-42-59-ec9e3af
        2018-11-02T07-27-33-d0923be
        2018-11-03T12-19-57-9a2d4e9
        2018-11-04T23-23-23-129abec
        2018-11-05T04-59-34-c74b23e
        2018-11-05T23-39-38-cfc12d8
        2018-11-06T00-25-39-b0c4c3a
        2018-11-06T00-28-15-ec46cb6
        2018-11-07T03-10-42-5f13464
        2018-11-10T08-58-30-1e95abd
        2018-11-10T09-39-09-1f6095c
        2018-11-11T09-23-20-3dcabef
        2018-11-12T02-07-25-6ddb87f
        2018-11-15T21-34-13-6aa96be-ignored-chars
        2018-11-15T21-34-14-7110576-ignored-chars
        2018-11-16T06-01-41-51c05da-ignored-chars
        2018-11-16T06-01-54-efdaa48-ignored-chars
        2018-11-23T05-36-03-4ec08db
        2018-11-23T06-25-41-8885cd7
        2018-11-23T06-31-20-93e0f57
        2018-11-25T22-27-06-516a0c0
        2018-11-27T19-56-11-4dc1e0c
        2018-11-28T07-49-46-b808a72
        2018-11-28T08-13-20-3ada93e
        2018-12-01T05-52-33-9ba3c0e
        2018-12-02T00-31-14-9340660
        2018-12-02T00-56-57-305860d
        2018-12-02T00-57-27-28e493d
        2018-12-02T06-51-22-11cfd04
        2018-12-02T22-14-34-9e39066
        2018-12-03T06-08-55-17933ec
        2018-12-03T21-48-15-b292ab6
        2018-12-05T06-30-06-08a8613
        2018-12-07T11-12-28-9a3c8e8
        2018-12-12T01-03-50-8c7555b
        2018-12-15T05-16-49-88447e1
        2018-12-15T05-18-06-44627e4
        2018-12-20T04-16-45-68c7660
        2018-12-20T04-30-44-18a4425
        2018-12-20T04-32-18-c1600b6
        2018-12-20T05-49-26-50fe7e0
        2018-12-20T08-18-59-8e766d1
        2018-12-21T20-58-21-f24510d
        2018-12-21T21-00-05-9a6abf2
        2018-12-27T23-19-05-67fa4d9
        2018-12-28T20-03-39-0d707e9
        2018-12-29T10-59-26-1c3efb3
        2018-12-29T11-23-37-f0927ca
        2018-12-29T11-25-17-1648f54
        2018-12-29T11-37-31-7b494d1
        2018-12-29T18-59-16-f40ec83
        2018-12-29T20-24-09-8cc00d2
        2018-12-29T21-18-13-65a2c1d
        2018-12-29T21-26-21-e889103
        2018-12-29T22-10-43-33fcbc9
        2018-12-29T22-19-16-b85e315
        2018-12-29T22-55-27-8229b75
        2018-12-30T04-49-43-b422b88
        2019-01-01T05-12-10-d7fdfed
        2019-01-01T05-14-41-147d2be
        2019-01-02T07-00-24-b2bcb40
        2019-01-03T03-56-42-93f1c2f
        2019-01-03T22-57-19-e75b425
        2019-01-04T02-53-37-38a8606
        2019-01-04T03-07-40-a61f4ee
        2019-01-08T03-54-43-27471f7
        2019-01-08T05-36-31-8aaada8
        2019-01-08T05-54-26-5ecf32d
        2019-01-09T03-01-00-2790caa
        2019-01-10T02-59-04-828bf5c
        2019-01-10T22-02-11-9d62329
        2019-01-10T23-02-15-e7b431a
        2019-01-13T21-59-35-d037062
        2019-01-14T04-17-45-64a3c82
        2019-01-14T06-41-16-ead6ec2
        2019-01-14T07-14-22-fb0fa63
        2019-01-14T22-57-55-82be22b
        2019-01-15T02-21-27-1dfebed
        2019-01-15T23-05-22-e916b02
        2019-01-17T02-23-57-ecf8a08
        2019-01-18T05-18-40-0f5a890
        2019-01-18T07-01-10-c4bcd3a
        2019-01-22T00-33-57-c967dac
        2019-01-22T01-01-11-41d67d7
        2019-01-29T03-32-34-3d271c3
        2019-01-30T23-39-33-803f5cb
        2019-01-31T22-07-02-5a8b1fd
        2019-01-31T22-16-02-fc21117
        2019-01-31T22-31-13-065791a
        2019-01-31T22-35-43-b807e80
        2019-02-06T00-46-18-1ce5113
        2019-02-06T23-32-55-d73dacf
        2019-02-06T23-38-59-5f8c5bd
        2019-02-07T02-30-53-e310dc3
        2019-02-13T17-42-01-858250e
        2019-02-15T22-43-48-1231dde
        2019-02-18T02-52-52-13eb79a
        2019-02-20T00-59-31-9356c3d
        2019-02-28T01-17-35-b2cc1c2
        2019-03-05T02-16-05-6df6640
        2019-03-05T02-23-47-f40315b
        2019-03-07T03-51-32-45bf5af
        2019-03-07T04-21-43-cf62a7a
        2019-03-07T04-34-55-809a980
        2019-03-10T22-41-06-9808185
        2019-03-11T03-25-33-b3c91e8
        2019-03-11T03-25-55-fc95640
        2019-03-11T03-56-07-7f6f32b
        2019-03-11T03-58-13-4123998
        2019-03-11T04-12-00-65dea85
        2019-03-11T22-39-51-03dc939
        2019-03-11T22-40-03-cf1e838
        2019-03-11T22-42-37-93b7b58
        2019-03-11T22-46-27-52a7b6e
        2019-03-12T01-04-49-36b1c03
        2019-03-13T23-23-44-ef9d07d
        2019-03-14T00-26-07-5568795
        2019-03-14T03-40-10-806cfe7
        2019-03-15T01-33-39-648b896
        2019-03-15T01-33-47-61d57a62
        2019-03-15T05-03-21-75fb184
        2019-03-15T05-03-30-4d2c0d53
        2019-03-15T05-09-19-cbcee57
        2019-03-15T05-09-35-519fb887
        2019-03-15T05-33-44-d008832
        2019-03-19T00-28-22-88ffeb5
        2019-03-19T00-30-59-070c3a0
        2019-03-20T02-17-59-e1e7997
        2019-03-20T05-29-23-55f1989
        2019-03-20T05-29-55-cdd0cbc
        2019-03-22T02-07-23-a35079e
        2019-03-22T05-12-51-10376ba
        2019-03-25T02-33-40-0759b8d
        2019-03-25T23-57-28-8ba2d1d
        2019-04-03T06-16-20-800ea0d
        2019-04-08T02-06-59-636f7b5
        2019-04-08T08-27-21-a8a273f
        2019-04-09T05-25-48-8bae13f
        2019-04-09T05-29-53-bd9240c
        2019-04-30T06-16-13-21dff06
        2019-04-30T09-15-46-9214b60
        2019-05-01T03-50-43-fccc0c7
        2019-05-08T00-35-46-439e342
        2019-05-08T02-44-45-b370703
        2019-05-08T02-56-27-cca4316
        2019-05-14T05-01-24-4fd3721
        2019-05-14T05-11-27-400d008
        2019-05-15T02-49-32-f210154
        2019-05-20T06-48-36-6211b41
        2019-05-27T00-36-13-3a76c4a
        2019-05-27T04-13-44-5373f96
        2019-06-02T22-40-24-fcf767d
        2019-06-02T22-45-30-ca06d0e
        2019-06-02T22-56-37-9a61bfe
        2019-06-02T22-59-08-c73f438
        2019-06-03T06-53-20-dca93a9
        2019-06-07T06-51-35-dbd4e5c
        2019-06-11T03-20-45-0a2bd30
        2019-06-11T23-47-53-e00b023
        2019-06-12T00-11-29-b63be73
        2019-06-12T00-15-04-812b16c
        2019-06-12T00-38-53-8b078c6
        2019-06-12T00-39-55-a79e385
        2019-06-12T01-22-00-6020f87
        2019-06-12T01-25-50-0fec4be
        2019-06-12T01-37-10-19c6d0e
        2019-06-12T01-52-32-821241d
        2019-06-12T02-31-14-25c8232
        2019-06-12T04-51-56-e994f41
        2019-06-30T23-27-16-d762310
        2019-07-01T00-55-49-7d393f2
        2019-07-13T23-07-14-8c71e18
        2019-07-15T04-01-33-505aa81
        2019-07-15T07-36-13-5761d24
        2019-07-16T03-12-18-3cbc1ad
        2019-07-22T04-16-08-a7fbf74
        2019-07-22T04-17-57-f8658f2
        2019-07-22T04-25-03-527c587
        2019-07-24T03-34-24-2e1e989
        2019-07-31T05-09-08-4cadb88
        2019-07-31T05-58-03-755f534
        2019-08-01T04-03-44-e9b53f6
        2019-08-02T04-53-20-6063e7e
        2019-08-05T08-05-20-1a9005b
        2019-08-05T23-30-46-c454ba2
        2019-08-12T01-44-36-bf793cd
        2019-08-19T04-09-16-346d65a
        2019-08-20T01-08-54-018b57c
        2019-08-21T00-49-42-2e990d1
        2019-08-21T21-45-38-376b03f
        2019-08-22T10-09-42-a6c4461
        2019-08-22T10-31-28-7ab93b9
        2019-08-22T10-35-04-37f3ae0
        2019-08-22T10-39-43-a6c4461
        2019-08-27T06-31-52-a897adc
        2019-08-28T11-47-05-b9487a9
        2019-09-03T10-51-46-6c01c80
        2019-09-03T10-52-49-bfb284b
        2019-09-07T05-58-28-e5a610f
        2019-09-07T08-04-35-735ce06
        2019-09-07T08-05-59-ac5bc70
        2019-09-07T08-08-53-173312e
        2019-09-19T04-42-21-1ea2ed2
        2019-09-19T06-25-59-5c242a1
        2019-09-22T22-20-34-9e83320
        2019-10-08T22-47-44-e938ab4
        2019-10-16T01-41-26-24f5233
        2019-10-20T21-46-20-a0a5d63
        2019-10-20T22-57-19-d6296e0
        2019-10-21T00-35-45-a74776c
        2019-10-24T23-50-27-97bffda
        2019-10-25T04-33-32-40db9de
        2019-10-25T08-51-57-a634053
        2019-10-31T04-37-48-0919e71
        2019-11-06T22-52-38-81c2a0f
        2019-11-07T04-06-09-70d9412
        2019-11-19T08-52-32-b46beb9
        2019-12-09T21-46-06-1b79628
        2019-12-09T21-46-27-74aed1a
        2019-12-30T22-55-41-9417e85
        2019-12-30T23-36-38-9e904ca
        2019-12-31T02-25-35-a83995a
        2020-01-03T02-30-05-b8be7d1
        2020-01-03T02-30-51-fb97f3e
        2020-01-05T23-01-12-2ba4a8b
        2020-01-08T08-53-38-a2dcfd6
        2020-01-09T05-33-37-df2835b
        2020-01-13T02-25-12-b623055
        2020-01-13T03-23-46-bcdc138
        2020-01-13T03-38-11-52de81a
        2020-01-13T06-33-52-50c242d
        2020-01-14T00-59-12-593322d
        2020-01-14T02-17-18-b5692e4
        2020-01-14T02-57-52-8fe5e53
        2020-01-14T02-58-58-f430282
        2020-01-14T05-48-31-952f075
        2020-01-14T06-42-43-bef3ac2
        2020-01-14T06-45-04-f40e454
        2020-01-14T23-35-06-d42516c
        2020-01-16T00-18-31-4cf3bdd
        2020-01-16T01-18-01-fd13faf
        2020-01-16T23-47-31-4533d01
        2020-01-16T23-48-44-eb6755b
        2020-01-16T23-58-55-fd9ce3a
        2020-01-17T00-14-43-8a58c25
        2020-01-17T00-41-05-5d4d25f
        2020-01-17T00-44-53-21cdd1d
        2020-01-17T00-46-52-8b78178
        2020-01-17T02-41-10-578985f
        2020-01-24T03-11-44-8a5fe91
        2020-01-29T00-34-54-44d9c56
        2020-01-29T23-51-37-f82b53c
        2020-02-03T01-49-24-d4f9b63
        2020-02-04T03-00-21-0a40ca4
        2020-02-06T00-24-40-5b511b8
        2020-02-09T23-23-33-8f335b3
        2020-02-10T04-57-01-e33c252
        2020-02-10T23-53-32-cfd210b
        2020-02-12T22-54-17-101dc6c
        2020-02-29T00-26-15-cf90d4a
        2020-02-29T01-57-30-987fd78
        2020-04-01T09-48-46-c98ebf7
        2020-04-04T07-05-23-9eae9c1
        2020-04-29T07-25-05-1a7c11c
        2020-05-07T00-47-53-9f8cc8e
        2020-05-08T01-07-05-c8de10e
        2020-05-19T06-33-01-57ce5cf
        2020-05-19T23-15-09-be48433
        2020-05-19T23-56-49-f409b66
        2020-05-20T03-21-18-21d1479
        2020-05-20T06-07-21-2e391c1
        2020-05-20T06-36-40-2a443b4
        2020-05-20T06-55-13-453773f
        2020-05-20T07-22-07-0b49de6
        2020-05-20T23-03-10-d9d29d9
        2020-05-20T23-17-21-bbb92ac
        2020-05-20T23-42-54-8f4cd45
        2020-05-21T05-06-09-4e43ef7
        2020-05-21T05-19-49-bdc958e
        2020-05-21T05-21-25-427f493
        2020-05-21T05-53-50-341e22c
        2020-05-21T07-38-42-2acb557
        2020-05-21T08-33-51-0b611f2
        2020-05-21T10-50-06-0a18992
        2020-05-21T23-09-51-9eb260e
        2020-05-22T05-23-36-4fe702b
        2020-05-22T05-46-34-000eb52
        2020-05-24T06-42-08-c508ac3
        2020-05-25T00-16-35-ebd15e0
        2020-05-25T00-18-12-74b4855
        2020-05-26T01-36-28-7770701
        2020-05-26T04-31-46-81d3ce4
        2020-05-27T11-37-07-bb47f29
        2020-05-28T00-32-38-497d2ac
        2020-05-28T02-17-41-bc29b5f
        2020-05-28T05-56-25-f328040
        2020-05-29T04-10-05-3dfbf01
        2020-06-05T10-44-09-eff6106
        2020-06-07T01-00-15-98bb45a
        2020-06-07T01-08-08-a9f7932
        2020-06-07T01-09-40-d94eacc
        2020-06-16T23-03-22-403a837
        2020-06-19T06-05-35-10eeacc
        2020-06-22T08-53-48-3101f48
        2020-06-22T09-12-11-a0d327d
        2020-06-22T09-38-54-c40fc1d
        2020-06-29T07-38-53-4a0a7af
        2020-06-30T22-36-45-ce7fd42
        2020-07-03T00-47-06-d3032e7
        2020-07-03T01-10-37-bb87d8f
        2020-08-24T06-09-06-d3b6af0
        2020-08-25T03-42-48-443390b
        2020-08-25T04-35-08-bab2a91
        2020-08-25T04-49-03-31f3d3f
        2020-08-25T05-10-41-2ed520e
        2020-08-25T06-42-13-d40046e
        2020-08-25T06-43-04-baeb392
        2020-08-25T06-43-52-1607bdf
        2020-08-25T07-30-29-fd556cc
        2020-08-25T07-31-26-c27a9cd
        2020-08-25T07-36-16-26a012c
        2020-08-25T07-38-57-05deb85
        2020-08-25T08-08-25-8b22a39
        2020-08-25T15-37-52-a7117f8
        2020-08-31T04-32-29-6a56b3a
        2020-09-08T04-55-10-f64f1cd
        2020-09-08T04-55-19-30e680b
        2020-09-08T04-56-12-5c5798e
        2020-09-08T04-56-57-be01c7f
        2020-09-08T04-57-53-264cb12
        2020-09-08T23-57-06-7ee7602
        2020-09-10T23-56-06-6f9b54d
        2020-09-10T23-59-03-dcdea33
        2020-09-13T08-18-38-7fc94c5
        2020-09-13T08-19-45-0d97d9d
        2020-09-13T08-20-40-c3c48a2
        2020-09-13T09-05-14-4b66774
        2020-09-14T23-02-53-a9151d3
        2020-09-14T23-03-24-5ebd3ac
        2020-09-14T23-04-32-61a78fe
        2020-09-17T10-31-42-09111ae
        2020-09-19T01-23-44-97a3073
        2020-09-19T01-24-58-592215d
        2020-09-21T10-25-11-af83f79
        2020-09-21T10-26-13-58daf97
        2020-09-23T01-42-02-53999d6
        2020-10-01T08-02-28-3998b0d
        2020-10-01T08-12-16-06593e2
        2020-10-01T08-12-52-24e4b17
        2020-10-01T08-13-33-6eb4df2
        2020-10-01T08-15-11-6cc1974
        2020-10-01T20-49-20-d2ca93c
        2020-10-01T21-02-05-1852cb7
        2020-10-01T21-06-37-558aeaa
        2020-10-06T07-50-37-7a8e903
        2020-10-09T06-02-11-8e55666
        2020-10-09T06-03-45-4a893b0
        2020-10-15T08-28-25-6af9785
        2020-10-16T05-33-59-df5bbde
        2020-10-20T00-43-22-34f34fe
        2020-10-20T01-20-15-2b4457c
        2020-10-21T10-06-46-49bbbeb
        2020-10-25T05-02-24-a39aec8
        2020-10-27T16-39-54-0de364a
        2020-10-27T17-35-04-0de364a
        2020-11-01T02-27-21-3295066
        2020-11-02T04-11-46-9ba7606
        2020-11-02T04-33-43-dd5d4d8
        2020-11-02T23-55-44-d576991
        2020-11-03T02-03-16-cf89ea3
        2020-11-04T22-40-01-afaa9aa
        2020-11-05T07-48-24-3dd5e02
        2020-11-10T10-26-00-07ca7ee
        2020-11-10T11-49-19-a1c123d
        2020-11-10T22-37-49-c801fd8
        2020-11-11T00-55-26-17f0e27
        2020-11-13T21-13-26-fb86ee6
        2020-11-16T00-00-07-ff3f691
        2020-11-16T00-02-27-3dfeae3
        2020-11-24T02-56-06-432d5f0
        2020-11-24T23-36-57-43668fb
        2020-11-28T08-02-26-b01df74
        2020-11-28T08-17-17-be8025f
        2020-12-09T22-35-43-9803c10
        2020-12-12T02-26-00-5e61bb3
        2020-12-13T07-30-15-d1a4c15
        2020-12-21T21-14-06-a12f84b
        2021-01-27T06-23-16-986ee60
        2021-01-29T11-36-47-b874235
        2021-01-30T04-10-11-59cd870
        2021-01-31T07-23-49-4d37858
        2021-02-02T00-45-04-fcce8632
        2021-02-02T01-21-59-55cccb55
        2021-02-02T01-28-37-13467897
        2021-02-02T01-34-58-8d747c1
        2021-02-02T01-35-37-3bae3c26
        2021-02-02T02-54-22-7c559d8d
        2021-02-02T02-59-50-70c1c921
        2021-02-02T03-06-53-a7c2d205
        2021-02-02T03-08-48-040823c2
        2021-02-02T03-45-35-79a57f67
        2021-02-02T03-49-01-6bf9674d
        2021-02-02T04-19-10-0e6921e1
        2021-02-06T05-29-55-33cd6e60
        2021-02-09T05-22-20-b645925f
        2021-02-10T08-16-57-4dbf45fd
        2021-02-13T02-14-19-a9de9cec
        2021-02-13T23-17-27-86627c27
        2021-02-17T06-17-55-6ffdd2d5
        2021-02-27T05-24-51-419acbb4
        2021-02-28T10-07-29-dbfb40d9
        2021-02-28T11-48-01-dc2cdda7
        2021-03-18T23-19-42-52ebe904
        2021-03-19T00-06-52-e166c255
        2021-03-19T01-12-05-a24cd52a
        2021-03-21T22-31-57-479b7a43
        2021-03-22T20-02-28-3a701a0f
        2021-03-25T09-33-46-e4c16ebb
        2021-03-25T21-09-07-5bc917f7
        2021-03-28T09-04-54-b1b364be
        2021-03-29T04-07-12-b98161f0
        2021-03-29T04-35-54-5e2ceda5
        2021-03-29T04-41-52-39ea068d
        2021-03-29T05-11-02-d63bb6b6
        2021-03-29T05-12-42-e5e8847b
        2021-03-29T05-13-32-fdea5cfc
        2021-03-29T21-50-33-a37cde2a
        2021-03-30T02-09-41-e91c8894
        2021-03-30T02-27-57-dbf4b18b
        2021-03-30T02-57-48-22314931
        2021-04-09T04-37-57-b510f5e6
        2021-04-11T23-40-30-f362d619
        2021-04-11T23-42-01-1d16e703
        2021-04-11T23-42-55-656f4e35
        2021-04-11T23-47-53-93cc5158
        2021-04-19T03-51-46-d783ec7e
        2021-04-27T02-21-11-eb3afc27
        2021-04-28T06-28-49-4d52fd0e
        2021-05-03T08-53-12-8f1ec444
        230521-nf-execution Latest Major
        +

        com.h2database:h2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.h2database
        Artifact Idh2
        Current Version2.1.214
        Scope
        Classifier
        Typejar
        Newer versions2.2.220
        2.2.222
        2.2.224 Latest Minor
        +

        com.hazelcast:hazelcast

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.hazelcast
        Artifact Idhazelcast
        Current Version5.1.7
        Scope
        Classifier
        Typejar
        Newer versions5.2-BETA-1
        5.2.0
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3.0-BETA-1
        5.3.0-BETA-2
        5.3.0
        5.3.1
        5.3.2
        5.3.4
        5.3.5
        5.3.6 Latest Minor
        +

        com.hazelcast:hazelcast-hibernate52

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.hazelcast
        Artifact Idhazelcast-hibernate52
        Current Version2.2.1
        Scope
        Classifier
        Typejar
        +

        com.hazelcast:hazelcast-hibernate53

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.hazelcast
        Artifact Idhazelcast-hibernate53
        Current Version2.2.1
        Scope
        Classifier
        Typejar
        Newer versions2.3.0 Latest Minor
        5.0.0
        5.1.0 Latest Major
        +

        com.hazelcast:hazelcast-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.hazelcast
        Artifact Idhazelcast-spring
        Current Version5.1.7
        Scope
        Classifier
        Typejar
        Newer versions5.2-BETA-1
        5.2.0
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3.0-BETA-1
        5.3.0-BETA-2
        5.3.0
        5.3.1
        5.3.2
        5.3.4
        5.3.5
        5.3.6 Latest Minor
        +

        com.ibm.db2:jcc

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.ibm.db2
        Artifact Idjcc
        Current Version11.5.9.0
        Scope
        Classifier
        Typejar
        +

        com.jayway.jsonpath:json-path

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.jayway.jsonpath
        Artifact Idjson-path
        Current Version2.7.0
        Scope
        Classifier
        Typejar
        Newer versions2.8.0
        2.9.0 Latest Minor
        +

        com.jayway.jsonpath:json-path-assert

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.jayway.jsonpath
        Artifact Idjson-path-assert
        Current Version2.7.0
        Scope
        Classifier
        Typejar
        Newer versions2.8.0
        2.9.0 Latest Minor
        +

        com.microsoft.sqlserver:mssql-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idcom.microsoft.sqlserver
        Artifact Idmssql-jdbc
        Current Version10.2.3.jre8
        Scope
        Classifier
        Typejar
        Newer versions10.2.3.jre11
        10.2.3.jre17 Latest Subincremental
        11.1.0-SNAPSHOT.jre8-preview
        11.1.0-SNAPSHOT.jre11-preview
        11.1.0-SNAPSHOT.jre17-preview
        11.1.0.jre8-preview
        11.1.0.jre11-preview
        11.1.0.jre17-preview
        11.1.1.jre8-preview
        11.1.1.jre11-preview
        11.1.1.jre17-preview
        11.1.1.jre18-preview
        11.1.2.jre8-preview
        11.1.2.jre11-preview
        11.1.2.jre17-preview
        11.1.2.jre18-preview
        11.2.0.jre8
        11.2.0.jre11
        11.2.0.jre17
        11.2.0.jre18
        11.2.1.jre8
        11.2.1.jre11
        11.2.1.jre17
        11.2.1.jre18
        11.2.2.jre8
        11.2.2.jre11
        11.2.2.jre17
        11.2.2.jre18
        11.2.3.jre8
        11.2.3.jre11
        11.2.3.jre17
        11.2.3.jre18
        12.1.0.jre8-preview
        12.1.0.jre11-preview
        12.2.0.jre8
        12.2.0.jre11
        12.3.0.jre8-preview
        12.3.0.jre11-preview
        12.3.0.jre17-preview
        12.3.0.jre20-preview
        12.3.1.jre8-preview
        12.3.1.jre11-preview
        12.4.0.jre8
        12.4.0.jre8-preview
        12.4.0.jre11
        12.4.0.jre11-preview
        12.4.1.jre8
        12.4.1.jre11
        12.4.2.jre8
        12.4.2.jre11
        12.5.0.jre8-preview
        12.5.0.jre11-preview
        12.6.0.jre8
        12.6.0.jre11 Latest Major
        +

        com.mysql:mysql-connector-j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.mysql
        Artifact Idmysql-connector-j
        Current Version8.0.33
        Scope
        Classifier
        Typejar
        Newer versions8.1.0
        8.2.0
        8.3.0 Latest Minor
        +

        com.oracle.database.ha:ons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.ha
        Artifact Idons
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.ha:simplefan

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.ha
        Artifact Idsimplefan
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc11
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc11-production

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc11-production
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc8
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc8-production

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc8-production
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:rsi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idrsi
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ucp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Iducp
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ucp11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Iducp11
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc.debug:ojdbc11-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc11-observability-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11-observability-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc11_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc11dms_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11dms_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8-observability-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8-observability-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8dms_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8dms_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.nls:orai18n

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.nls
        Artifact Idorai18n
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.observability:dms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Iddms
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.observability:ojdbc11-observability

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc11-observability
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.observability:ojdbc11dms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc11dms
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.observability:ojdbc8-observability

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc8-observability
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.observability:ojdbc8dms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc8dms
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.r2dbc:oracle-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.oracle.database.r2dbc
        Artifact Idoracle-r2dbc
        Current Version0.4.0
        Scope
        Classifier
        Typejar
        Newer versions1.0.0
        1.1.0
        1.1.1
        1.2.0 Latest Major
        +

        com.oracle.database.security:oraclepki

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.security
        Artifact Idoraclepki
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.security:osdt_cert

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.security
        Artifact Idosdt_cert
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.security:osdt_core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.security
        Artifact Idosdt_core
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.xml:xdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.xml
        Artifact Idxdb
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.xml:xmlparserv2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.xml
        Artifact Idxmlparserv2
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.querydsl:querydsl-apt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-apt
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-codegen-utils

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.querydsl
        Artifact Idquerydsl-codegen-utils
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        +

        com.querydsl:querydsl-collections

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-collections
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-core
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-guava
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-hibernate-search

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-hibernate-search
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-jdo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-jdo
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-jpa
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-jpa-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-jpa-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-kotlin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-kotlin
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-kotlin-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-kotlin-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-lucene3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-lucene3
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-lucene4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-lucene4
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-lucene5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-lucene5
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-mongodb
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-scala

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-scala
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-spatial

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-spatial
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql-spatial

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql-spatial
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql-spring
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.rabbitmq:amqp-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.rabbitmq
        Artifact Idamqp-client
        Current Version5.14.3
        Scope
        Classifier
        Typejar
        Newer versions5.15.0
        5.16.0
        5.16.1
        5.17.0
        5.17.1
        5.18.0
        5.19.0
        5.20.0 Latest Minor
        +

        com.rabbitmq:stream-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.rabbitmq
        Artifact Idstream-client
        Current Version0.5.0
        Scope
        Classifier
        Typejar
        Newer versions0.6.0
        0.7.0
        0.8.0
        0.9.0
        0.10.0
        0.11.0
        0.12.0
        0.13.0
        0.14.0
        0.15.0 Latest Minor
        +

        com.samskivert:jmustache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.samskivert
        Artifact Idjmustache
        Current Version1.15
        Scope
        Classifier
        Typejar
        Newer versions1.16 Latest Minor
        +

        com.sendgrid:sendgrid-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.sendgrid
        Artifact Idsendgrid-java
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0
        4.10.1 Latest Minor
        +

        com.squareup.okhttp3:logging-interceptor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idlogging-interceptor
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:mockwebserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idmockwebserver
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okcurl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokcurl
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-brotli

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-brotli
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-dnsoverhttps

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-dnsoverhttps
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-sse

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-sse
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-tls

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-tls
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-urlconnection

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-urlconnection
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.sun.activation:jakarta.activation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.sun.activation
        Artifact Idjakarta.activation
        Current Version1.2.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-rc1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1 Latest Major
        +

        com.sun.mail:jakarta.mail

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.sun.mail
        Artifact Idjakarta.mail
        Current Version1.6.7
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0-RC4
        2.0.0-RC5
        2.0.0-RC6
        2.0.0
        2.0.1 Latest Major
        +

        com.sun.xml.messaging.saaj:saaj-impl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.sun.xml.messaging.saaj
        Artifact Idsaaj-impl
        Current Version1.5.3
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0
        2.0.1
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        com.unboundid:unboundid-ldapsdk

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idcom.unboundid
        Artifact Idunboundid-ldapsdk
        Current Version6.0.10
        Scope
        Classifier
        Typejar
        Newer versions6.0.11 Latest Incremental
        +

        com.zaxxer:HikariCP

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.zaxxer
        Artifact IdHikariCP
        Current Version4.0.3
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0 Latest Major
        +

        commons-codec:commons-codec

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcommons-codec
        Artifact Idcommons-codec
        Current Version1.15
        Scope
        Classifier
        Typejar
        Newer versions1.16.0
        1.16.1 Latest Minor
        +

        commons-pool:commons-pool

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcommons-pool
        Artifact Idcommons-pool
        Current Version1.6
        Scope
        Classifier
        Typejar
        +

        de.flapdoodle.embed:de.flapdoodle.embed.mongo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idde.flapdoodle.embed
        Artifact Idde.flapdoodle.embed.mongo
        Current Version3.4.11
        Scope
        Classifier
        Typejar
        Newer versions3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4 Latest Minor
        4.0.0-beta
        4.0.1-beta
        4.0.2-beta
        4.0.3-beta
        4.0.4-beta
        4.0.5-beta
        4.0.6-beta
        4.0.7-beta
        4.0.8-beta
        4.0.9-beta
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.2.0
        4.3.0
        4.3.1
        4.3.2
        4.3.3
        4.4.0
        4.4.1
        4.5.0
        4.5.1
        4.6.0
        4.6.1
        4.6.2
        4.6.3
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.9.0
        4.9.1
        4.9.2
        4.9.3
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1
        4.12.0
        4.12.1
        4.12.2 Latest Major
        +

        io.dropwizard.metrics:metrics-annotation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-annotation
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-caffeine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-caffeine
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-caffeine3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-caffeine3
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-collectd

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-collectd
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-core
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-ehcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-ehcache
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-graphite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-graphite
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-healthchecks

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-healthchecks
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-httpasyncclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-httpasyncclient
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-httpclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-httpclient
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-httpclient5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-httpclient5
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jakarta-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jakarta-servlet
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jakarta-servlet6

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jakarta-servlet6
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jakarta-servlets

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jakarta-servlets
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jcache
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jdbi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jdbi
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jdbi3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jdbi3
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jersey2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jersey2
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jersey3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jersey3
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jersey31

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jersey31
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty10

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty10
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty11
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty12
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty12-ee10

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty12-ee10
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty9

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty9
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jmx
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-json
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jvm
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-log4j2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-log4j2
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-logback

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-logback
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-logback13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-logback13
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-logback14

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-logback14
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-servlet
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-servlets

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-servlets
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.lettuce:lettuce-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.lettuce
        Artifact Idlettuce-core
        Current Version6.1.10.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions6.2.0.RELEASE
        6.2.1.RELEASE
        6.2.2.RELEASE
        6.2.3.RELEASE
        6.2.4.RELEASE
        6.2.5.RELEASE
        6.2.6.RELEASE
        6.2.7.RELEASE
        6.3.0.RELEASE
        6.3.1.RELEASE Latest Minor
        +

        io.micrometer:micrometer-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-core
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-appoptics

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-appoptics
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-atlas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-atlas
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-azure-monitor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-azure-monitor
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-cloudwatch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-cloudwatch
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-cloudwatch2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-cloudwatch2
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-datadog

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-datadog
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-dynatrace

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-dynatrace
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-elastic

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-elastic
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-ganglia

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-ganglia
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-graphite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-graphite
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-health

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-health
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-humio

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-humio
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-influx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-influx
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-jmx
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-kairos

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-kairos
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-new-relic

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-new-relic
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-opentsdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-opentsdb
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-otlp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-otlp
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-prometheus

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-prometheus
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-signalfx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-signalfx
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-stackdriver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-stackdriver
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-statsd

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-statsd
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-wavefront

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-wavefront
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-test
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.netty:netty-all

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-all
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-buffer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-buffer
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-dns

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-dns
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-haproxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-haproxy
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-http
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-http2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-http2
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-memcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-memcache
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-mqtt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-mqtt
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-redis
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-codec-smtp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-smtp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-codec-socks

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-socks
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-stomp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-stomp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-xml
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-common
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-dev-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-dev-tools
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-example

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-example
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-handler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-handler
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-handler-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-handler-proxy
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-handler-ssl-ocsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-handler-ssl-ocsp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-resolver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-resolver-dns

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver-dns
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-resolver-dns-classes-macos

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver-dns-classes-macos
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-resolver-dns-native-macos

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver-dns-native-macos
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-tcnative

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-tcnative
        Current Version2.0.61.Final
        Scope
        Classifierlinux-x86_64
        Typejar
        Newer versions2.0.62.Final Latest Incremental
        +

        io.netty:netty-tcnative-boringssl-static

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-tcnative-boringssl-static
        Current Version2.0.61.Final
        Scope
        Classifier
        Typejar
        Newer versions2.0.62.Final Latest Incremental
        +

        io.netty:netty-tcnative-classes

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-tcnative-classes
        Current Version2.0.61.Final
        Scope
        Classifier
        Typejar
        Newer versions2.0.62.Final Latest Incremental
        +

        io.netty:netty-transport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-classes-epoll

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-classes-epoll
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-classes-kqueue

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-classes-kqueue
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-native-epoll

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-native-epoll
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-native-kqueue

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-native-kqueue
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-native-unix-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-native-unix-common
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-rxtx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-rxtx
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-sctp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-sctp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-udt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-udt
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.projectreactor:reactor-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor
        Artifact Idreactor-core
        Current Version3.4.34
        Scope
        Classifier
        Typejar
        Newer versions3.4.35 Latest Incremental
        3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4
        3.5.5
        3.5.6
        3.5.7
        3.5.8
        3.5.9
        3.5.10
        3.5.11
        3.5.12
        3.5.13
        3.5.14
        3.6.0-M1
        3.6.0-M2
        3.6.0-M3
        3.6.0-RC1
        3.6.0
        3.6.1
        3.6.2 Latest Minor
        +

        io.projectreactor:reactor-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor
        Artifact Idreactor-test
        Current Version3.4.34
        Scope
        Classifier
        Typejar
        Newer versions3.4.35 Latest Incremental
        3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4
        3.5.5
        3.5.6
        3.5.7
        3.5.8
        3.5.9
        3.5.10
        3.5.11
        3.5.12
        3.5.13
        3.5.14
        3.6.0-M1
        3.6.0-M2
        3.6.0-M3
        3.6.0-RC1
        3.6.0
        3.6.1
        3.6.2 Latest Minor
        +

        io.projectreactor:reactor-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor
        Artifact Idreactor-tools
        Current Version3.4.34
        Scope
        Classifier
        Typejar
        Newer versions3.4.35 Latest Incremental
        3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4
        3.5.5
        3.5.6
        3.5.7
        3.5.8
        3.5.9
        3.5.10
        3.5.11
        3.5.12
        3.5.13
        3.5.14
        3.6.0-M1
        3.6.0-M2
        3.6.0-M3
        3.6.0-RC1
        3.6.0
        3.6.1
        3.6.2 Latest Minor
        +

        io.projectreactor.addons:reactor-adapter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.projectreactor.addons
        Artifact Idreactor-adapter
        Current Version3.4.10
        Scope
        Classifier
        Typejar
        Newer versions3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1 Latest Minor
        +

        io.projectreactor.addons:reactor-extra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.projectreactor.addons
        Artifact Idreactor-extra
        Current Version3.4.10
        Scope
        Classifier
        Typejar
        Newer versions3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1 Latest Minor
        +

        io.projectreactor.addons:reactor-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.projectreactor.addons
        Artifact Idreactor-pool
        Current Version0.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.0.0-M1
        1.0.0-M3
        1.0.0-M4
        1.0.0-M5
        1.0.0-M6
        1.0.0-RC1
        1.0.0
        1.0.1
        1.0.2
        1.0.3
        1.0.4
        1.0.5 Latest Major
        +

        io.projectreactor.kafka:reactor-kafka

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.projectreactor.kafka
        Artifact Idreactor-kafka
        Current Version1.3.22
        Scope
        Classifier
        Typejar
        +

        io.projectreactor.kotlin:reactor-kotlin-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.projectreactor.kotlin
        Artifact Idreactor-kotlin-extensions
        Current Version1.1.10
        Scope
        Classifier
        Typejar
        Newer versions1.2.0-M1
        1.2.0-M3
        1.2.0-M4
        1.2.0-M5
        1.2.0-M6
        1.2.0-RC1
        1.2.0
        1.2.1
        1.2.2 Latest Minor
        +

        io.projectreactor.netty:reactor-netty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.netty:reactor-netty-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty-core
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.netty:reactor-netty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty-http
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.netty:reactor-netty-http-brave

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty-http-brave
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.rabbitmq:reactor-rabbitmq

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.projectreactor.rabbitmq
        Artifact Idreactor-rabbitmq
        Current Version1.5.6
        Scope
        Classifier
        Typejar
        +

        io.prometheus:simpleclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_caffeine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_caffeine
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_common
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_dropwizard

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_dropwizard
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_graphite_bridge

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_graphite_bridge
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_guava
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_hibernate

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_hibernate
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_hotspot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_hotspot
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_httpserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_httpserver
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_jetty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_jetty
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_jetty_jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_jetty_jdk8
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_log4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_log4j
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_log4j2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_log4j2
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_logback

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_logback
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_pushgateway

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_pushgateway
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_servlet
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_servlet_jakarta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_servlet_jakarta
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_spring_boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_spring_boot
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_spring_web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_spring_web
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_tracer_otel

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_tracer_otel
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_tracer_otel_agent

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_tracer_otel_agent
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_vertx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_vertx
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.r2dbc:r2dbc-h2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-h2
        Current Version0.9.1.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.M6
        1.0.0.M7
        1.0.0.RC1
        1.0.0.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-mssql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idio.r2dbc
        Artifact Idr2dbc-mssql
        Current Version0.9.0.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions0.9.0.SONATYPE-M4 Latest Subincremental
        1.0.0.M6
        1.0.0.M7
        1.0.0.RC1
        1.0.0.RELEASE
        1.0.1.RELEASE
        1.0.2.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-pool
        Current Version0.9.2.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.RC1
        1.0.0.RELEASE
        1.0.1.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-proxy
        Current Version0.9.1.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.M7
        1.0.0.RELEASE
        1.0.1.RELEASE
        1.1.0.RELEASE
        1.1.1.RELEASE
        1.1.2.RELEASE
        1.1.3.RELEASE
        1.1.4.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-spi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-spi
        Current Version0.9.1.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.M4
        1.0.0.M5
        1.0.0.M6
        1.0.0.M7
        1.0.0.RELEASE Latest Major
        +

        io.reactivex:rxjava

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.reactivex
        Artifact Idrxjava
        Current Version1.3.8
        Scope
        Classifier
        Typejar
        +

        io.reactivex:rxjava-reactive-streams

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.reactivex
        Artifact Idrxjava-reactive-streams
        Current Version1.2.1
        Scope
        Classifier
        Typejar
        +

        io.reactivex.rxjava2:rxjava

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.reactivex.rxjava2
        Artifact Idrxjava
        Current Version2.2.21
        Scope
        Classifier
        Typejar
        +

        io.rest-assured:json-path

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idjson-path
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:json-schema-validator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idjson-schema-validator
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:kotlin-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idkotlin-extensions
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:rest-assured

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idrest-assured
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:rest-assured-all

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idrest-assured-all
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:rest-assured-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idrest-assured-common
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:scala-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idscala-support
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-commons
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-mock-mvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-mock-mvc
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-mock-mvc-kotlin-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-mock-mvc-kotlin-extensions
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-web-test-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-web-test-client
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:xml-path

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idxml-path
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured.examples:kotlin-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idkotlin-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:rest-assured-itest-java

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idrest-assured-itest-java
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scala-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscala-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scala-mock-mvc-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscala-mock-mvc-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scalatra-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscalatra-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scalatra-webapp

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscalatra-webapp
        Current Version4.5.1
        Scope
        Classifier
        Typewar
        +

        io.rest-assured.examples:spring-mvc-webapp

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idspring-mvc-webapp
        Current Version4.5.1
        Scope
        Classifier
        Typewar
        +

        io.rsocket:rsocket-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-core
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-load-balancer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-load-balancer
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-micrometer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-micrometer
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-test
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-transport-local

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-transport-local
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-transport-netty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-transport-netty
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.spring.gradle:dependency-management-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.spring.gradle
        Artifact Iddependency-management-plugin
        Current Version1.0.15.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4 Latest Minor
        +

        io.undertow:undertow-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.undertow
        Artifact Idundertow-core
        Current Version2.2.28.Final
        Scope
        Classifier
        Typejar
        Newer versions2.3.0.Alpha1
        2.3.0.Alpha2
        2.3.0.Beta1
        2.3.0.Final
        2.3.1.Final
        2.3.2.Final
        2.3.3.Final
        2.3.4.Final
        2.3.5.Final
        2.3.6.Final
        2.3.7.Final
        2.3.8.Final
        2.3.9.Final
        2.3.10.Final Latest Minor
        +

        io.undertow:undertow-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.undertow
        Artifact Idundertow-servlet
        Current Version2.2.28.Final
        Scope
        Classifier
        Typejar
        Newer versions2.3.0.Alpha1
        2.3.0.Alpha2
        2.3.0.Beta1
        2.3.0.Final
        2.3.1.Final
        2.3.2.Final
        2.3.3.Final
        2.3.4.Final
        2.3.5.Final
        2.3.6.Final
        2.3.7.Final
        2.3.8.Final
        2.3.9.Final
        2.3.10.Final Latest Minor
        +

        io.undertow:undertow-websockets-jsr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.undertow
        Artifact Idundertow-websockets-jsr
        Current Version2.2.28.Final
        Scope
        Classifier
        Typejar
        Newer versions2.3.0.Alpha1
        2.3.0.Alpha2
        2.3.0.Beta1
        2.3.0.Final
        2.3.1.Final
        2.3.2.Final
        2.3.3.Final
        2.3.4.Final
        2.3.5.Final
        2.3.6.Final
        2.3.7.Final
        2.3.8.Final
        2.3.9.Final
        2.3.10.Final Latest Minor
        +

        jakarta.activation:jakarta.activation-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.activation
        Artifact Idjakarta.activation-api
        Current Version1.2.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-rc1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1
        2.1.0-RC1
        2.1.0-RC2
        2.1.0
        2.1.1
        2.1.2 Latest Major
        +

        jakarta.annotation:jakarta.annotation-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.annotation
        Artifact Idjakarta.annotation-api
        Current Version1.3.5
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0
        2.1.0-B1
        2.1.0
        2.1.1
        3.0.0-M1 Latest Major
        +

        jakarta.jms:jakarta.jms-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.jms
        Artifact Idjakarta.jms-api
        Current Version2.0.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0
        3.1.0 Latest Major
        +

        jakarta.json:jakarta.json-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.json
        Artifact Idjakarta.json-api
        Current Version1.1.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1
        2.0.2
        2.1.0-RC1
        2.1.0
        2.1.1
        2.1.2
        2.1.3 Latest Major
        +

        jakarta.json.bind:jakarta.json.bind-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.json.bind
        Artifact Idjakarta.json.bind-api
        Current Version1.0.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0
        3.0.0-RC1
        3.0.0 Latest Major
        +

        jakarta.mail:jakarta.mail-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.mail
        Artifact Idjakarta.mail-api
        Current Version1.6.7
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0-RC4
        2.0.0-RC5
        2.0.0-RC6
        2.0.0
        2.0.1
        2.1.0-RC1
        2.1.0-RC2
        2.1.0
        2.1.1
        2.1.2 Latest Major
        +

        jakarta.management.j2ee:jakarta.management.j2ee-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjakarta.management.j2ee
        Artifact Idjakarta.management.j2ee-api
        Current Version1.1.4
        Scope
        Classifier
        Typejar
        +

        jakarta.persistence:jakarta.persistence-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.persistence
        Artifact Idjakarta.persistence-api
        Current Version2.2.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.2.0-B01
        3.2.0-B02
        3.2.0-M1 Latest Major
        +

        jakarta.servlet:jakarta.servlet-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.servlet
        Artifact Idjakarta.servlet-api
        Current Version4.0.4
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0
        6.0.0
        6.1.0-M1 Latest Major
        +

        jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.servlet.jsp.jstl
        Artifact Idjakarta.servlet.jsp.jstl-api
        Current Version1.2.7
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0
        3.0.0 Latest Major
        +

        jakarta.transaction:jakarta.transaction-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.transaction
        Artifact Idjakarta.transaction-api
        Current Version1.3.3
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1-RC1
        2.0.1 Latest Major
        +

        jakarta.validation:jakarta.validation-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.validation
        Artifact Idjakarta.validation-api
        Current Version2.0.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0
        3.0.1
        3.0.2
        3.1.0-M1 Latest Major
        +

        jakarta.websocket:jakarta.websocket-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.websocket
        Artifact Idjakarta.websocket-api
        Current Version1.1.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0-RC1
        2.0.0
        2.1.0
        2.1.1
        2.2.0-M1 Latest Major
        +

        jakarta.ws.rs:jakarta.ws.rs-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.ws.rs
        Artifact Idjakarta.ws.rs-api
        Current Version2.1.6
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0
        3.1.0 Latest Major
        +

        jakarta.xml.bind:jakarta.xml.bind-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.xml.bind
        Artifact Idjakarta.xml.bind-api
        Current Version2.3.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0-RC2
        3.0.0-RC3
        3.0.0
        3.0.1
        4.0.0-RC1
        4.0.0-RC2
        4.0.0-RC3
        4.0.0
        4.0.1 Latest Major
        +

        jakarta.xml.soap:jakarta.xml.soap-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.xml.soap
        Artifact Idjakarta.xml.soap-api
        Current Version1.4.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1 Latest Major
        +

        jakarta.xml.ws:jakarta.xml.ws-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.xml.ws
        Artifact Idjakarta.xml.ws-api
        Current Version2.3.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0-RC2
        3.0.0-RC3
        3.0.0
        3.0.1
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1 Latest Major
        +

        javax.activation:javax.activation-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.activation
        Artifact Idjavax.activation-api
        Current Version1.2.0
        Scope
        Classifier
        Typejar
        +

        javax.annotation:javax.annotation-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.annotation
        Artifact Idjavax.annotation-api
        Current Version1.3.2
        Scope
        Classifier
        Typejar
        +

        javax.cache:cache-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.cache
        Artifact Idcache-api
        Current Version1.1.1
        Scope
        Classifier
        Typejar
        +

        javax.jms:javax.jms-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.jms
        Artifact Idjavax.jms-api
        Current Version2.0.1
        Scope
        Classifier
        Typejar
        +

        javax.json:javax.json-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.json
        Artifact Idjavax.json-api
        Current Version1.1.4
        Scope
        Classifier
        Typejar
        +

        javax.json.bind:javax.json.bind-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.json.bind
        Artifact Idjavax.json.bind-api
        Current Version1.0
        Scope
        Classifier
        Typejar
        +

        javax.mail:javax.mail-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.mail
        Artifact Idjavax.mail-api
        Current Version1.6.2
        Scope
        Classifier
        Typejar
        +

        javax.money:money-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.money
        Artifact Idmoney-api
        Current Version1.1
        Scope
        Classifier
        Typejar
        +

        javax.persistence:javax.persistence-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.persistence
        Artifact Idjavax.persistence-api
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        javax.servlet:javax.servlet-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.servlet
        Artifact Idjavax.servlet-api
        Current Version4.0.1
        Scope
        Classifier
        Typejar
        +

        javax.servlet:jstl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.servlet
        Artifact Idjstl
        Current Version1.2
        Scope
        Classifier
        Typejar
        +

        javax.transaction:javax.transaction-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.transaction
        Artifact Idjavax.transaction-api
        Current Version1.3
        Scope
        Classifier
        Typejar
        +

        javax.validation:validation-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.validation
        Artifact Idvalidation-api
        Current Version2.0.1.Final
        Scope
        Classifier
        Typejar
        +

        javax.websocket:javax.websocket-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.websocket
        Artifact Idjavax.websocket-api
        Current Version1.1
        Scope
        Classifier
        Typejar
        +

        javax.xml.bind:jaxb-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idjavax.xml.bind
        Artifact Idjaxb-api
        Current Version2.3.1
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0427
        2.4.0-b180830.0359 Latest Minor
        +

        javax.xml.ws:jaxws-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.xml.ws
        Artifact Idjaxws-api
        Current Version2.3.1
        Scope
        Classifier
        Typejar
        +

        jaxen:jaxen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjaxen
        Artifact Idjaxen
        Current Version1.2.0
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-beta-1
        2.0.0 Latest Major
        +

        junit:junit

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjunit
        Artifact Idjunit
        Current Version4.13.2
        Scope
        Classifier
        Typejar
        +

        net.bytebuddy:byte-buddy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.bytebuddy
        Artifact Idbyte-buddy
        Current Version1.12.23
        Scope
        Classifier
        Typejar
        Newer versions1.13.0
        1.14.0
        1.14.1
        1.14.2
        1.14.3
        1.14.4
        1.14.5
        1.14.6
        1.14.7
        1.14.8
        1.14.9
        1.14.10
        1.14.11 Latest Minor
        +

        net.bytebuddy:byte-buddy-agent

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.bytebuddy
        Artifact Idbyte-buddy-agent
        Current Version1.12.23
        Scope
        Classifier
        Typejar
        Newer versions1.13.0
        1.14.0
        1.14.1
        1.14.2
        1.14.3
        1.14.4
        1.14.5
        1.14.6
        1.14.7
        1.14.8
        1.14.9
        1.14.10
        1.14.11 Latest Minor
        +

        net.minidev:json-smart

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.minidev
        Artifact Idjson-smart
        Current Version2.4.11
        Scope
        Classifier
        Typejar
        Newer versions2.5.0 Latest Minor
        +

        net.sf.ehcache:ehcache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.sf.ehcache
        Artifact Idehcache
        Current Version2.10.9.2
        Scope
        Classifier
        Typejar
        +

        net.sourceforge.htmlunit:htmlunit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.sourceforge.htmlunit
        Artifact Idhtmlunit
        Current Version2.60.0
        Scope
        Classifier
        Typejar
        Newer versions2.61.0
        2.62.0
        2.63.0
        2.64.0
        2.65.0
        2.65.1
        2.66.0
        2.67.0
        2.68.0
        2.69.0
        2.70.0 Latest Minor
        +

        net.sourceforge.jtds:jtds

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.sourceforge.jtds
        Artifact Idjtds
        Current Version1.3.1
        Scope
        Classifier
        Typejar
        +

        net.sourceforge.nekohtml:nekohtml

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.sourceforge.nekohtml
        Artifact Idnekohtml
        Current Version1.9.22
        Scope
        Classifier
        Typejar
        +

        nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnz.net.ultraq.thymeleaf
        Artifact Idthymeleaf-layout-dialect
        Current Version3.0.0
        Scope
        Classifier
        Typejar
        Newer versions3.1.0
        3.2.0
        3.2.1
        3.3.0 Latest Minor
        +

        org.apache.activemq:activemq-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-amqp
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-blueprint

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-blueprint
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-broker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-broker
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-camel

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.activemq
        Artifact Idactivemq-camel
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        +

        org.apache.activemq:activemq-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-client
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-console
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-http
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-jaas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-jaas
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-jdbc-store

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-jdbc-store
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-jms-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-jms-pool
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-kahadb-store

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-kahadb-store
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-karaf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-karaf
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-leveldb-store

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.activemq
        Artifact Idactivemq-leveldb-store
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        +

        org.apache.activemq:activemq-log4j-appender

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-log4j-appender
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-mqtt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-mqtt
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-openwire-generator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-openwire-generator
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-openwire-legacy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-openwire-legacy
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-osgi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-osgi
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-partition

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-partition
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        +

        org.apache.activemq:activemq-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-pool
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-ra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-ra
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-run

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-run
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-runtime-config

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-runtime-config
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-shiro

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-shiro
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-spring
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-stomp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-stomp
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-web
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:artemis-amqp-protocol

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-amqp-protocol
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-commons
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-core-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-core-client
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-jdbc-store

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-jdbc-store
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-jms-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-jms-client
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-jms-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-jms-server
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-journal

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-journal
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-quorum-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-quorum-api
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-selector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-selector
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-server
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-service-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-service-extensions
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.commons:commons-dbcp2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.commons
        Artifact Idcommons-dbcp2
        Current Version2.9.0
        Scope
        Classifier
        Typejar
        Newer versions2.10.0
        2.11.0 Latest Minor
        +

        org.apache.commons:commons-lang3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.commons
        Artifact Idcommons-lang3
        Current Version3.12.0
        Scope
        Classifier
        Typejar
        Newer versions3.13.0
        3.14.0 Latest Minor
        +

        org.apache.commons:commons-pool2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.commons
        Artifact Idcommons-pool2
        Current Version2.11.1
        Scope
        Classifier
        Typejar
        Newer versions2.12.0 Latest Minor
        +

        org.apache.derby:derby

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderby
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbyclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbyclient
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbynet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbynet
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbyoptionaltools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbyoptionaltools
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbytools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbytools
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.httpcomponents:fluent-hc

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idfluent-hc
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpasyncclient

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpasyncclient
        Current Version4.1.5
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient-cache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient-cache
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient-osgi

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient-osgi
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient-win

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient-win
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpcore

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpcore
        Current Version4.4.16
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpcore-nio

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpcore-nio
        Current Version4.4.16
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpmime

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpmime
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents.client5:httpclient5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.3-alpha1
        5.3
        5.3.1
        5.4-alpha1 Latest Minor
        +

        org.apache.httpcomponents.client5:httpclient5-cache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5-cache
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.3-alpha1
        5.3
        5.3.1
        5.4-alpha1 Latest Minor
        +

        org.apache.httpcomponents.client5:httpclient5-fluent

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5-fluent
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.3-alpha1
        5.3
        5.3.1
        5.4-alpha1 Latest Minor
        +

        org.apache.httpcomponents.client5:httpclient5-win

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5-win
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3 Latest Minor
        +

        org.apache.httpcomponents.core5:httpcore5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.core5
        Artifact Idhttpcore5
        Current Version5.1.5
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-alpha2
        5.2-beta1
        5.2-beta2
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3-alpha1 Latest Minor
        +

        org.apache.httpcomponents.core5:httpcore5-h2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.core5
        Artifact Idhttpcore5-h2
        Current Version5.1.5
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-alpha2
        5.2-beta1
        5.2-beta2
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3-alpha1 Latest Minor
        +

        org.apache.httpcomponents.core5:httpcore5-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.core5
        Artifact Idhttpcore5-reactive
        Current Version5.1.5
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-alpha2
        5.2-beta1
        5.2-beta2
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3-alpha1 Latest Minor
        +

        org.apache.johnzon:johnzon-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-core
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jaxrs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jaxrs
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jsonb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jsonb
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jsonb-extras

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jsonb-extras
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jsonschema

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jsonschema
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-mapper

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-mapper
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-websocket
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.kafka:connect

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-api
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-basic-auth-extension

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-basic-auth-extension
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-file

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-file
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-json
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-mirror

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-mirror
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-mirror-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-mirror-client
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-runtime
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-transforms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-transforms
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:generator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idgenerator
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-clients

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-clients
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-log4j-appender

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-log4j-appender
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-metadata

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-metadata
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-raft

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-raft
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-server-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-server-common
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-shell

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-shell
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-storage

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-storage
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-storage-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-storage-api
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams-scala_2.12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams-scala_2.12
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams-scala_2.13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams-scala_2.13
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams-test-utils

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams-test-utils
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-tools
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka_2.12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka_2.12
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka_2.13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka_2.13
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:trogdor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idtrogdor
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.logging.log4j:log4j-1.2-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-1.2-api
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-api
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-appserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-appserver
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-cassandra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-cassandra
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-core
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-couchdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-couchdb
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-docker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-docker
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-flume-ng

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-flume-ng
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-iostreams

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-iostreams
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-jcl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jcl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-jmx-gui

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jmx-gui
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.22.0 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jpa
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-jpl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jpl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-jul

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jul
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-kubernetes

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-kubernetes
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-layout-template-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-layout-template-json
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-liquibase

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-liquibase
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-mongodb3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-mongodb3
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-mongodb4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-mongodb4
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-slf4j-impl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-slf4j-impl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-slf4j18-impl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-slf4j18-impl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0 Latest Minor
        +

        org.apache.logging.log4j:log4j-spring-boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-spring-boot
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-spring-cloud-config-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-spring-cloud-config-client
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-taglib

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-taglib
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-to-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-to-slf4j
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-web
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.solr:solr-analysis-extras

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-analysis-extras
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-analytics

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-analytics
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-cell

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-cell
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.solr:solr-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-core
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-dataimporthandler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-dataimporthandler
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.solr:solr-dataimporthandler-extras

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-dataimporthandler-extras
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.solr:solr-gcs-repository

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-gcs-repository
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-jaegertracer-configurator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-jaegertracer-configurator
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-langid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-langid
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-ltr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-ltr
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-prometheus-exporter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-prometheus-exporter
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-s3-repository

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-s3-repository
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-solrj

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-solrj
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-test-framework

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-test-framework
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-velocity

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-velocity
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.tomcat:tomcat-annotations-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat
        Artifact Idtomcat-annotations-api
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat:tomcat-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat
        Artifact Idtomcat-jdbc
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat:tomcat-jsp-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat
        Artifact Idtomcat-jsp-api
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-core
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-el

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-el
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-jasper

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-jasper
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-websocket
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.aspectj:aspectjrt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.aspectj
        Artifact Idaspectjrt
        Current Version1.9.7
        Scope
        Classifier
        Typejar
        Newer versions1.9.8.M1
        1.9.8.RC1
        1.9.8.RC2
        1.9.8.RC3
        1.9.8
        1.9.9
        1.9.9.1
        1.9.19
        1.9.20
        1.9.20.1
        1.9.21.M1
        1.9.21.RC1
        1.9.21 Latest Incremental
        +

        org.aspectj:aspectjtools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.aspectj
        Artifact Idaspectjtools
        Current Version1.9.7
        Scope
        Classifier
        Typejar
        Newer versions1.9.8.M1
        1.9.8.RC1
        1.9.8.RC2
        1.9.8.RC3
        1.9.8
        1.9.9
        1.9.9.1
        1.9.19
        1.9.20
        1.9.20.1
        1.9.21.M1
        1.9.21.RC1
        1.9.21 Latest Incremental
        +

        org.aspectj:aspectjweaver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.aspectj
        Artifact Idaspectjweaver
        Current Version1.9.7
        Scope
        Classifier
        Typejar
        Newer versions1.9.8.M1
        1.9.8.RC1
        1.9.8.RC2
        1.9.8.RC3
        1.9.8
        1.9.9
        1.9.9.1
        1.9.19
        1.9.20
        1.9.20.1
        1.9.21.M1
        1.9.21.RC1
        1.9.21 Latest Incremental
        +

        org.assertj:assertj-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.assertj
        Artifact Idassertj-core
        Current Version3.22.0
        Scope
        Classifier
        Typejar
        Newer versions3.23.0
        3.23.1
        3.24.0
        3.24.1
        3.24.2
        3.25.0
        3.25.1
        3.25.2
        3.25.3 Latest Minor
        +

        org.awaitility:awaitility

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.awaitility:awaitility-groovy

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility-groovy
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.awaitility:awaitility-kotlin

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility-kotlin
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.awaitility:awaitility-scala

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility-scala
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-api
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-config

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-config
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-core
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-jcache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-jcache
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-micrometer

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-micrometer
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-spring

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-spring
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.codehaus.groovy:groovy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-ant

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-ant
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-astbuilder

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-astbuilder
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-bsf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-bsf
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-cli-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-cli-commons
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-cli-picocli

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-cli-picocli
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-console
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-datetime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-datetime
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-dateutil

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-dateutil
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-docgenerator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-docgenerator
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-groovydoc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-groovydoc
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-groovysh

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-groovysh
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-jaxb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-jaxb
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-jmx
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-json
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-jsr223

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-jsr223
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-macro

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-macro
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-nio

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-nio
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-servlet
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-sql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-sql
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-swing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-swing
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-templates

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-templates
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-test
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-test-junit5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-test-junit5
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-testng

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-testng
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-xml
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-yaml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-yaml
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.janino:commons-compiler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.janino
        Artifact Idcommons-compiler
        Current Version3.1.10
        Scope
        Classifier
        Typejar
        Newer versions3.1.11
        3.1.12 Latest Incremental
        +

        org.codehaus.janino:commons-compiler-jdk

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.janino
        Artifact Idcommons-compiler-jdk
        Current Version3.1.10
        Scope
        Classifier
        Typejar
        Newer versions3.1.11
        3.1.12 Latest Incremental
        +

        org.codehaus.janino:janino

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.janino
        Artifact Idjanino
        Current Version3.1.10
        Scope
        Classifier
        Typejar
        Newer versions3.1.11
        3.1.12 Latest Incremental
        +

        org.eclipse.jetty:apache-jsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idapache-jsp
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:apache-jstl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idapache-jstl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0 Latest Major
        +

        org.eclipse.jetty:infinispan-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idinfinispan-common
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:infinispan-embedded-query

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idinfinispan-embedded-query
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:infinispan-remote-query

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idinfinispan-remote-query
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-conscrypt-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-conscrypt-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-conscrypt-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-conscrypt-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-java-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-java-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-java-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-java-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-openjdk8-client

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-openjdk8-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty:jetty-alpn-openjdk8-server

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-openjdk8-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty:jetty-alpn-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-annotations
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-ant

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-ant
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-continuation

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-continuation
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty:jetty-deploy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-deploy
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-distribution

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-distribution
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typezip
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        11.0.0-alpha0
        11.0.0.beta1 Latest Major
        +

        org.eclipse.jetty:jetty-hazelcast

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-hazelcast
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-home

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-home
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typezip
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-http
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-http-spi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-http-spi
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-io

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-io
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-jaas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jaas
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-jaspi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jaspi
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jmx
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-jndi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jndi
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-nosql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-nosql
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-openid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-openid
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-plus

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-plus
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-proxy
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-quickstart

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-quickstart
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-reactive-httpclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-reactive-httpclient
        Current Version1.1.15
        Scope
        Classifier
        Typejar
        Newer versions2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        4.0.0.beta0
        4.0.0.beta1
        4.0.0
        4.0.1
        4.0.2
        4.0.3 Latest Major
        +

        org.eclipse.jetty:jetty-rewrite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-rewrite
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-security
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-servlet
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-servlets

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-servlets
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-spring
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3 Latest Major
        +

        org.eclipse.jetty:jetty-unixsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-unixsocket
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-util

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-util
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-util-ajax

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-util-ajax
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-webapp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-webapp
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-xml
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty.fcgi:fcgi-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.fcgi
        Artifact Idfcgi-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.fcgi:fcgi-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.fcgi
        Artifact Idfcgi-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.gcloud:jetty-gcloud-session-manager

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.gcloud
        Artifact Idjetty-gcloud-session-manager
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty.http2:http2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-common
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-hpack

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-hpack
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-http-client-transport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-http-client-transport
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.memcached:jetty-memcached-sessions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.memcached
        Artifact Idjetty-memcached-sessions
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty.orbit:javax.servlet.jsp

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.orbit
        Artifact Idjavax.servlet.jsp
        Current Version2.2.0.v201112011158
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.osgi:jetty-httpservice

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-httpservice
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.osgi:jetty-osgi-boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-osgi-boot
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.osgi:jetty-osgi-boot-jsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-osgi-boot-jsp
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.osgi:jetty-osgi-boot-warurl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-osgi-boot-warurl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.websocket:javax-websocket-client-impl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idjavax-websocket-client-impl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:javax-websocket-server-impl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idjavax-websocket-server-impl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-api
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-client

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-common

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-common
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-server

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-servlet
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.ehcache:ehcache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ehcache
        Artifact Idehcache
        Current Version3.10.8
        Scope
        Classifier
        Typejar
        +

        org.ehcache:ehcache-clustered

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ehcache
        Artifact Idehcache-clustered
        Current Version3.10.8
        Scope
        Classifier
        Typejar
        +

        org.ehcache:ehcache-transactions

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ehcache
        Artifact Idehcache-transactions
        Current Version3.10.8
        Scope
        Classifier
        Typejar
        +

        org.elasticsearch:elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch
        Artifact Idelasticsearch
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.client:elasticsearch-rest-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idelasticsearch-rest-client
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.client:elasticsearch-rest-client-sniffer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idelasticsearch-rest-client-sniffer
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.client:elasticsearch-rest-high-level-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idelasticsearch-rest-high-level-client
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2 Latest Major
        +

        org.elasticsearch.client:transport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idtransport
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        +

        org.elasticsearch.distribution.integ-test-zip:elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.distribution.integ-test-zip
        Artifact Idelasticsearch
        Current Version7.17.15
        Scope
        Classifier
        Typezip
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.plugin:transport-netty4-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.plugin
        Artifact Idtransport-netty4-client
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        +

        org.firebirdsql.jdbc:jaybird

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idorg.firebirdsql.jdbc
        Artifact Idjaybird
        Current Version4.0.9.java8
        Scope
        Classifier
        Typejar
        Newer versions4.0.9.java11 Latest Subincremental
        4.0.10.java7
        4.0.10.java8
        4.0.10.java11 Latest Incremental
        5.0.0.java8-beta-1
        5.0.0.java8
        5.0.0.java11-beta-1
        5.0.0.java11
        5.0.1.java8
        5.0.1.java11
        5.0.2.java8
        5.0.2.java11
        5.0.3.java8
        5.0.3.java11 Latest Major
        +

        org.firebirdsql.jdbc:jaybird-jdk18

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.firebirdsql.jdbc
        Artifact Idjaybird-jdk18
        Current Version4.0.9.java8
        Scope
        Classifier
        Typejar
        Newer versions4.0.10.java8 Latest Incremental
        +

        org.flywaydb:flyway-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-core
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.flywaydb:flyway-firebird

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-firebird
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.flywaydb:flyway-mysql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-mysql
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.flywaydb:flyway-sqlserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-sqlserver
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.freemarker:freemarker

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.freemarker
        Artifact Idfreemarker
        Current Version2.3.32
        Scope
        Classifier
        Typejar
        +

        org.glassfish:jakarta.el

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.glassfish
        Artifact Idjakarta.el
        Current Version3.0.4
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        5.0.0-M1 Latest Major
        +

        org.glassfish.jaxb:codemodel

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idcodemodel
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:codemodel-annotation-compiler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idcodemodel-annotation-compiler
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:jaxb-jxc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idjaxb-jxc
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:jaxb-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idjaxb-runtime
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:jaxb-xjc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idjaxb-xjc
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:txw2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idtxw2
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:txwc2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idtxwc2
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:xsom

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idxsom
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jersey.bundles:jaxrs-ri

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.bundles
        Artifact Idjaxrs-ri
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-apache-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-apache-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-grizzly-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-grizzly-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-helidon-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-helidon-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-jdk-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-jdk-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-jetty-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-jetty-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-netty-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-netty-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-grizzly2-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-grizzly2-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-grizzly2-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-grizzly2-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-jdk-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-jdk-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-jetty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-jetty-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-jetty-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-jetty-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-netty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-netty-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-servlet-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-servlet-core
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-simple-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-simple-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers.glassfish:jersey-gf-ejb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers.glassfish
        Artifact Idjersey-gf-ejb
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.core:jersey-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.core
        Artifact Idjersey-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.core:jersey-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.core
        Artifact Idjersey-common
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.core:jersey-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.core
        Artifact Idjersey-server
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-bean-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-bean-validation
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-declarative-linking

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-declarative-linking
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-entity-filtering

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-entity-filtering
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-metainf-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-metainf-services
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-bean-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-bean-validation
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-freemarker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-freemarker
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-jsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-jsp
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-mustache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-mustache
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-proxy-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-proxy-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-servlet-portability

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-servlet-portability
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6 Latest Major
        +

        org.glassfish.jersey.ext:jersey-spring4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-spring4
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6 Latest Major
        +

        org.glassfish.jersey.ext:jersey-spring5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-spring5
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6 Latest Major
        +

        org.glassfish.jersey.ext:jersey-wadl-doclet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-wadl-doclet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi-rs-inject

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi-rs-inject
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-ban-custom-hk2-binding

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-ban-custom-hk2-binding
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-transaction

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-transaction
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-validation
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-weld2-se

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-weld2-se
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.microprofile:jersey-mp-config

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.microprofile
        Artifact Idjersey-mp-config
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.microprofile:jersey-mp-rest-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.microprofile
        Artifact Idjersey-mp-rest-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.rx:jersey-rx-client-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.rx
        Artifact Idjersey-rx-client-guava
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.rx
        Artifact Idjersey-rx-client-rxjava
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.rx
        Artifact Idjersey-rx-client-rxjava2
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.inject:jersey-cdi2-se

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.inject
        Artifact Idjersey-cdi2-se
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.inject:jersey-hk2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.inject
        Artifact Idjersey-hk2
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-jaxb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-jaxb
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-binding

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-binding
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-jackson

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-jackson
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-jettison

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-jettison
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-processing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-processing
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-kryo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-kryo
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-moxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-moxy
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-multipart

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-multipart
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-sse

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-sse
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth1-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth1-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth1-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth1-server
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth1-signature

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth1-signature
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth2-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework:jersey-test-framework-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework
        Artifact Idjersey-test-framework-core
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework:jersey-test-framework-util

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework
        Artifact Idjersey-test-framework-util
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-bundle
        Current Version2.35
        Scope
        Classifier
        Typepom
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-external

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-external
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-grizzly2
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-inmemory

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-inmemory
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-jdk-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-jetty
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-simple

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-simple
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.web:jakarta.servlet.jsp.jstl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.glassfish.web
        Artifact Idjakarta.servlet.jsp.jstl
        Current Version1.2.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0
        3.0.0
        3.0.1 Latest Major
        +

        org.hamcrest:hamcrest

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.hamcrest
        Artifact Idhamcrest
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        org.hamcrest:hamcrest-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.hamcrest
        Artifact Idhamcrest-core
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        org.hamcrest:hamcrest-library

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.hamcrest
        Artifact Idhamcrest-library
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        org.hibernate:hibernate-c3p0

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-c3p0
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-core
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-ehcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-ehcache
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7 Latest Major
        +

        org.hibernate:hibernate-entitymanager

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-entitymanager
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7 Latest Major
        +

        org.hibernate:hibernate-envers

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-envers
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-hikaricp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-hikaricp
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-java8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-java8
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7 Latest Major
        +

        org.hibernate:hibernate-jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-jcache
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-jpamodelgen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-jpamodelgen
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-micrometer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-micrometer
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-proxool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-proxool
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-spatial

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-spatial
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-testing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-testing
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-vibur

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-vibur
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate.validator:hibernate-validator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate.validator
        Artifact Idhibernate-validator
        Current Version6.2.5.Final
        Scope
        Classifier
        Typejar
        Newer versions7.0.0.Alpha1
        7.0.0.Alpha2
        7.0.0.Alpha3
        7.0.0.Alpha4
        7.0.0.Alpha5
        7.0.0.Alpha6
        7.0.0.CR1
        7.0.0.Final
        7.0.1.Final
        7.0.2.Final
        7.0.3.Final
        7.0.4.Final
        7.0.5.Final
        8.0.0.Alpha1
        8.0.0.Alpha2
        8.0.0.Alpha3
        8.0.0.CR1
        8.0.0.CR2
        8.0.0.CR3
        8.0.0.Final
        8.0.1.Final Latest Major
        +

        org.hibernate.validator:hibernate-validator-annotation-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate.validator
        Artifact Idhibernate-validator-annotation-processor
        Current Version6.2.5.Final
        Scope
        Classifier
        Typejar
        Newer versions7.0.0.Alpha1
        7.0.0.Alpha2
        7.0.0.Alpha3
        7.0.0.Alpha4
        7.0.0.Alpha5
        7.0.0.Alpha6
        7.0.0.CR1
        7.0.0.Final
        7.0.1.Final
        7.0.2.Final
        7.0.3.Final
        7.0.4.Final
        7.0.5.Final
        8.0.0.Alpha1
        8.0.0.Alpha2
        8.0.0.Alpha3
        8.0.0.CR1
        8.0.0.CR2
        8.0.0.CR3
        8.0.0.Final
        8.0.1.Final Latest Major
        +

        org.hsqldb:hsqldb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.hsqldb
        Artifact Idhsqldb
        Current Version2.5.2
        Scope
        Classifier
        Typejar
        Newer versions2.6.0
        2.6.1
        2.7.0
        2.7.1
        2.7.2 Latest Minor
        +

        org.infinispan:infinispan-anchored-keys

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-anchored-keys
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-api
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-jdbc
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-jpa
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.Dev01
        14.0.0.Dev02 Latest Major
        +

        org.infinispan:infinispan-cachestore-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-rocksdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-rocksdb
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-sql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-sql
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cdi-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cdi-common
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cdi-embedded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cdi-embedded
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cdi-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cdi-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-checkstyle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-checkstyle
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cli-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cli-client
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-client-hotrod

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-client-hotrod
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-client-rest

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-client-rest
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cloudevents-integration

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cloudevents-integration
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-clustered-counter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-clustered-counter
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-clustered-lock

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-clustered-lock
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-commons
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-commons-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-commons-test
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-component-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-component-annotations
        Current Version13.0.20.Final
        Scopeprovided
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-component-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-component-processor
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-console
        Current Version0.15.5.Final
        Scope
        Classifier
        Typejar
        Newer versions14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        15.0.0.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05 Latest Major
        +

        org.infinispan:infinispan-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-extended-statistics

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-extended-statistics
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-hibernate-cache-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-hibernate-cache-commons
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-hibernate-cache-spi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-hibernate-cache-spi
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-hibernate-cache-v53

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-hibernate-cache-v53
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.Dev01
        14.0.0.Dev02 Latest Major
        +

        org.infinispan:infinispan-jboss-marshalling

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jboss-marshalling
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jcache
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-jcache-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jcache-commons
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-jcache-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jcache-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-key-value-store-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-key-value-store-client
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-marshaller-kryo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-kryo
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-marshaller-kryo-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-kryo-bundle
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-marshaller-protostuff

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-protostuff
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-marshaller-protostuff-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-protostuff-bundle
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-multimap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-multimap
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-objectfilter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-objectfilter
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-query

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-query
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-query-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-query-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-query-dsl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-query-dsl
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-remote-query-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-remote-query-client
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-remote-query-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-remote-query-server
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-scripting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-scripting
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-hotrod

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-hotrod
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-memcached

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-memcached
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-rest

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-rest
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-router

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-router
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-runtime
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-testdriver-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-testdriver-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-testdriver-junit4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-testdriver-junit4
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-testdriver-junit5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-testdriver-junit5
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-spring-boot-starter-embedded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring-boot-starter-embedded
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring-boot-starter-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring-boot-starter-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring5-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring5-common
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring5-embedded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring5-embedded
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring5-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring5-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-tasks

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-tasks
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-tasks-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-tasks-api
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-tools
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan.protostream:protostream

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.infinispan.protostream
        Artifact Idprotostream
        Current Version4.4.4.Final
        Scope
        Classifier
        Typejar
        Newer versions4.5.0.CR1
        4.5.0.Final
        4.5.0.Dev01
        4.5.0.Dev02
        4.5.0.Dev03
        4.5.0.Dev04
        4.5.0.Dev05
        4.5.1.Final
        4.6.0.Final
        4.6.1.Final
        4.6.2.Final
        4.6.3.Final
        4.6.4.Final
        4.6.5.Final Latest Minor
        5.0.0.Dev01
        14.0.0.CR2 Latest Major
        +

        org.infinispan.protostream:protostream-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.infinispan.protostream
        Artifact Idprotostream-processor
        Current Version4.4.4.Final
        Scopeprovided
        Classifier
        Typejar
        Newer versions4.5.0.CR1
        4.5.0.Final
        4.5.0.Dev01
        4.5.0.Dev02
        4.5.0.Dev03
        4.5.0.Dev04
        4.5.0.Dev05
        4.5.1.Final
        4.6.0.Final
        4.6.1.Final
        4.6.2.Final
        4.6.3.Final
        4.6.4.Final
        4.6.5.Final Latest Minor
        5.0.0.Dev01
        14.0.0.CR2 Latest Major
        +

        org.infinispan.protostream:protostream-types

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.infinispan.protostream
        Artifact Idprotostream-types
        Current Version4.4.4.Final
        Scope
        Classifier
        Typejar
        Newer versions4.5.0.CR1
        4.5.0.Final
        4.5.0.Dev01
        4.5.0.Dev02
        4.5.0.Dev03
        4.5.0.Dev04
        4.5.0.Dev05
        4.5.1.Final
        4.6.0.Final
        4.6.1.Final
        4.6.2.Final
        4.6.3.Final
        4.6.4.Final
        4.6.5.Final Latest Minor
        5.0.0.Dev01
        14.0.0.CR2 Latest Major
        +

        org.influxdb:influxdb-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.influxdb
        Artifact Idinfluxdb-java
        Current Version2.22
        Scope
        Classifier
        Typejar
        Newer versions2.23
        2.24 Latest Minor
        +

        org.jboss.logging:jboss-logging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jboss.logging
        Artifact Idjboss-logging
        Current Version3.4.3.Final
        Scope
        Classifier
        Typejar
        Newer versions3.5.0.Final
        3.5.1.Final
        3.5.2.Final
        3.5.3.Final Latest Minor
        +

        org.jdom:jdom2

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.jdom
        Artifact Idjdom2
        Current Version2.0.6.1
        Scope
        Classifier
        Typejar
        +

        org.jetbrains.kotlin:kotlin-compiler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-compiler
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-compiler-embeddable

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-compiler-embeddable
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-daemon-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-daemon-client
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-main-kts

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-main-kts
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-osgi-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-osgi-bundle
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-reflect

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-reflect
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-script-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-script-runtime
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-script-util

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-script-util
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22 Latest Minor
        +

        org.jetbrains.kotlin:kotlin-scripting-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-scripting-ide-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-ide-services
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-scripting-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-jvm
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-scripting-jvm-host

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-jvm-host
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-jdk7

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-jdk7
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-jdk8
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-js

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-js
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-annotations-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-annotations-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-js

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-js
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-junit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-junit
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-junit5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-junit5
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-testng

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-testng
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-android

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-android
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-core
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-core-jvm
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-debug
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-guava
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-javafx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-javafx
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-jdk8
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-jdk9

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-jdk9
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-play-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-play-services
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-reactive
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-reactor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-reactor
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-rx2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-rx2
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-rx3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-rx3
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-slf4j
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-swing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-swing
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-test
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-test-jvm
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jolokia:jolokia-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.jolokia
        Artifact Idjolokia-core
        Current Version1.7.2
        Scope
        Classifier
        Typejar
        +

        org.jooq:jooq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.jooq:jooq-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq-codegen
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.jooq:jooq-kotlin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq-kotlin
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.jooq:jooq-meta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq-meta
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.junit.jupiter:junit-jupiter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-api
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-engine
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-migrationsupport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-migrationsupport
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-params

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-params
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-commons
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-console
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-engine
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-jfr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-jfr
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-launcher

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-launcher
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-reporting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-reporting
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-runner

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-runner
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite-api
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite-commons
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite-engine
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-testkit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-testkit
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.vintage:junit-vintage-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.vintage
        Artifact Idjunit-vintage-engine
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.liquibase:liquibase-cdi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.liquibase
        Artifact Idliquibase-cdi
        Current Version4.9.1
        Scope
        Classifier
        Typejar
        Newer versions4.10.0
        4.11.0
        4.12.0
        4.13.0
        4.14.0
        4.15.0
        4.16.0
        4.16.1
        4.17.0
        4.17.1
        4.17.2
        4.18.0
        4.19.0
        4.19.1
        4.20.0
        4.21.0
        4.21.1
        4.22.0
        4.23.0
        4.23.1
        4.23.2
        4.24.0
        4.25.0
        4.25.1
        4.26.0 Latest Minor
        +

        org.liquibase:liquibase-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.liquibase
        Artifact Idliquibase-core
        Current Version4.9.1
        Scope
        Classifier
        Typejar
        Newer versions4.10.0
        4.11.0
        4.12.0
        4.13.0
        4.14.0
        4.15.0
        4.16.0
        4.16.1
        4.17.0
        4.17.1
        4.17.2
        4.18.0
        4.19.0
        4.19.1
        4.20.0
        4.21.0
        4.21.1
        4.22.0
        4.23.0
        4.23.1
        4.23.2
        4.24.0
        4.25.0
        4.25.1
        4.26.0 Latest Minor
        +

        org.mariadb:r2dbc-mariadb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.mariadb
        Artifact Idr2dbc-mariadb
        Current Version1.1.2
        Scope
        Classifier
        Typejar
        Newer versions1.1.3
        1.1.4 Latest Incremental
        +

        org.mariadb.jdbc:mariadb-java-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mariadb.jdbc
        Artifact Idmariadb-java-client
        Current Version3.1.4
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.3.0
        3.3.1
        3.3.2 Latest Minor
        +

        org.messaginghub:pooled-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.messaginghub
        Artifact Idpooled-jms
        Current Version1.2.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        3.0.0
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.mockito:mockito-android

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-android
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-core
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-errorprone

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-errorprone
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-inline

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-inline
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0 Latest Major
        +

        org.mockito:mockito-junit-jupiter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-junit-jupiter
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-proxy
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mongodb:bson

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idbson
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:bson-record-codec

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idbson-record-codec
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-core
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-legacy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-legacy
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-reactivestreams

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-reactivestreams
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-sync

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-sync
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mortbay.jasper:apache-el

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.mortbay.jasper
        Artifact Idapache-el
        Current Version9.0.52
        Scope
        Classifier
        Typejar
        Newer versions9.0.83
        9.0.83.1 Latest Incremental
        10.0.0-M5
        10.0.0-M7
        10.0.0-M10
        10.0.0-1-M7
        10.0.2
        10.0.7
        10.0.10
        10.0.14
        10.0.27
        10.1.0-M16
        10.1.1
        10.1.5
        10.1.7
        10.1.16 Latest Major
        +

        org.mybatis:mybatis

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis
        Artifact Idmybatis
        Current Version3.5.15
        Scope
        Classifier
        Typejar
        +

        org.mybatis:mybatis-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.mybatis
        Artifact Idmybatis-spring
        Current Version2.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        org.mybatis.dynamic-sql:mybatis-dynamic-sql

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.dynamic-sql
        Artifact Idmybatis-dynamic-sql
        Current Version1.5.0
        Scope
        Classifier
        Typejar
        +

        org.mybatis.scripting:mybatis-freemarker

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.scripting
        Artifact Idmybatis-freemarker
        Current Version1.2.4
        Scope
        Classifier
        Typejar
        +

        org.mybatis.scripting:mybatis-thymeleaf

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.scripting
        Artifact Idmybatis-thymeleaf
        Current Version1.0.4
        Scope
        Classifier
        Typejar
        +

        org.mybatis.scripting:mybatis-velocity

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.scripting
        Artifact Idmybatis-velocity
        Current Version2.1.2
        Scope
        Classifier
        Typejar
        +

        org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.mybatis.spring.boot
        Artifact Idmybatis-spring-boot-autoconfigure
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        org.mybatis.spring.boot:mybatis-spring-boot-starter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.mybatis.spring.boot
        Artifact Idmybatis-spring-boot-starter
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        org.mybatis.spring.native:mybatis-spring-native-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.spring.native
        Artifact Idmybatis-spring-native-core
        Current Version0.1.0-SNAPSHOT
        Scope
        Classifier
        Typejar
        +

        org.mybatis.spring.native:mybatis-spring-native-extensions

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.spring.native
        Artifact Idmybatis-spring-native-extensions
        Current Version0.1.0-SNAPSHOT
        Scope
        Classifier
        Typejar
        +

        org.neo4j.driver:neo4j-java-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.neo4j.driver
        Artifact Idneo4j-java-driver
        Current Version4.4.12
        Scope
        Classifier
        Typejar
        Newer versions4.4.13 Latest Incremental
        5.0.0-alpha01
        5.0.0-alpha02
        5.0.0-alpha03
        5.0.0-beta01
        5.0.0
        5.1.0
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0
        5.11.0
        5.12.0
        5.13.0
        5.14.0
        5.15.0
        5.16.0
        5.17.0 Latest Major
        +

        org.postgresql:postgresql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.postgresql
        Artifact Idpostgresql
        Current Version42.3.8
        Scope
        Classifier
        Typejar
        Newer versions42.4.0
        42.4.1
        42.4.2
        42.4.3
        42.5.0
        42.5.1
        42.5.2
        42.5.3
        42.5.4
        42.6.0
        42.7.0
        42.7.1 Latest Minor
        +

        org.postgresql:r2dbc-postgresql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.postgresql
        Artifact Idr2dbc-postgresql
        Current Version0.9.2.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions0.9.3.RELEASE Latest Incremental
        1.0.0.RC1
        1.0.0.RELEASE
        1.0.1.RELEASE
        1.0.2.RELEASE
        1.0.3.RELEASE
        1.0.4.RELEASE Latest Major
        +

        org.projectlombok:lombok

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.projectlombok
        Artifact Idlombok
        Current Version1.18.30
        Scope
        Classifier
        Typejar
        +

        org.quartz-scheduler:quartz

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.quartz-scheduler
        Artifact Idquartz
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-rc1
        2.4.0-rc2
        2.5.0-rc1 Latest Minor
        +

        org.quartz-scheduler:quartz-jobs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.quartz-scheduler
        Artifact Idquartz-jobs
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-rc1
        2.4.0-rc2
        2.5.0-rc1 Latest Minor
        +

        org.reactivestreams:reactive-streams

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.reactivestreams
        Artifact Idreactive-streams
        Current Version1.0.4
        Scope
        Classifier
        Typejar
        +

        org.seleniumhq.selenium:htmlunit-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idhtmlunit-driver
        Current Version3.61.0
        Scope
        Classifier
        Typejar
        Newer versions3.62.0
        3.63.0
        3.64.0 Latest Minor
        4.5.0
        4.5.2
        4.6.0
        4.7.0
        4.7.2
        4.8.0
        4.8.1
        4.8.1.1
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.13.0 Latest Major
        +

        org.seleniumhq.selenium:lift

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idlift
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-api
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-chrome-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-chrome-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-chromium-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-chromium-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v100

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v100
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v101

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v101
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v85

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v85
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v99

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v99
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        +

        org.seleniumhq.selenium:selenium-edge-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-edge-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-firefox-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-firefox-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-grid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-grid
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-http
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-ie-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-ie-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-java
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-json
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-opera-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-opera-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-remote-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-remote-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-safari-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-safari-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-session-map-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-session-map-jdbc
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-session-map-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-session-map-redis
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-support
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.skyscreamer:jsonassert

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.skyscreamer
        Artifact Idjsonassert
        Current Version1.5.1
        Scope
        Classifier
        Typejar
        +

        org.slf4j:jcl-over-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idjcl-over-slf4j
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:jul-to-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idjul-to-slf4j
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:log4j-over-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idlog4j-over-slf4j
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-api
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-ext

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-ext
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-jcl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.slf4j
        Artifact Idslf4j-jcl
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        +

        org.slf4j:slf4j-jdk14

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-jdk14
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-log4j12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-log4j12
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-nop

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-nop
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-simple

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-simple
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.springframework:spring-aop

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-aop
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-aspects

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-aspects
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-beans

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-beans
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-context

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-context
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-context-indexer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-context-indexer
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-context-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-context-support
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-core
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-expression

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-expression
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-instrument

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-instrument
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-jcl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-jcl
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-jdbc
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-jms
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-messaging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-messaging
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-orm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-orm
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-oxm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-oxm
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-r2dbc
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-test
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-tx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-tx
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-web
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-webflux

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-webflux
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-webmvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-webmvc
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-websocket
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework.amqp:spring-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-amqp
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit-junit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit-junit
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit-stream

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit-stream
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit-test
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.batch:spring-batch-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-core
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.batch:spring-batch-infrastructure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-infrastructure
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.batch:spring-batch-integration

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-integration
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.batch:spring-batch-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-test
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.boot:spring-boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-actuator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-actuator
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-actuator-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-actuator-autoconfigure
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-autoconfigure
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-autoconfigure-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-autoconfigure-processor
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-buildpack-platform

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-buildpack-platform
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-configuration-metadata

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-configuration-metadata
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-configuration-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-configuration-processor
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-devtools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-devtools
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-jarmode-layertools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-jarmode-layertools
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-loader

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-loader
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-loader-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-loader-tools
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-properties-migrator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-properties-migrator
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-activemq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-activemq
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-actuator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-actuator
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-amqp
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-aop

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-aop
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-artemis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-artemis
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-batch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-batch
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-cache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-cache
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-cassandra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-cassandra
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-cassandra-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-cassandra-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-couchbase

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-couchbase
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-couchbase-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-couchbase-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-elasticsearch
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-jdbc
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-jpa
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-ldap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-ldap
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-mongodb
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-mongodb-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-mongodb-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-neo4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-neo4j
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-r2dbc
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-redis
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-redis-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-redis-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-rest

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-rest
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-freemarker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-freemarker
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-graphql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-graphql
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-groovy-templates

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-groovy-templates
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-hateoas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-hateoas
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-integration

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-integration
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jdbc
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jersey

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jersey
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jetty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jetty
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jooq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jooq
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-json
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jta-atomikos

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jta-atomikos
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        +

        org.springframework.boot:spring-boot-starter-log4j2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-log4j2
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-logging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-logging
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-mail

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-mail
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-mustache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-mustache
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-oauth2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-oauth2-client
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-oauth2-resource-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-oauth2-resource-server
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-quartz

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-quartz
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-reactor-netty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-reactor-netty
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-rsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-rsocket
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-security
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-test
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-thymeleaf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-thymeleaf
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-tomcat

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-tomcat
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-undertow

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-undertow
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-validation
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-web
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-web-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-web-services
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-webflux

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-webflux
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-websocket
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-test
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-test-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-test-autoconfigure
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.data:spring-data-cassandra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-cassandra
        Current Version3.4.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-commons
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-couchbase

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-couchbase
        Current Version4.4.18
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        5.0.10
        5.0.11
        5.0.12
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0
        5.1.1
        5.1.2
        5.1.3
        5.1.4
        5.1.5
        5.1.6
        5.1.7
        5.1.8
        5.2.0-M1
        5.2.0-M2
        5.2.0-M3
        5.2.0-RC1
        5.2.0
        5.2.1
        5.2.2 Latest Major
        +

        org.springframework.data:spring-data-elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-elasticsearch
        Current Version4.4.18
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        5.0.10
        5.0.11
        5.0.12
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0
        5.1.1
        5.1.2
        5.1.3
        5.1.4
        5.1.5
        5.1.6
        5.1.7
        5.1.8
        5.2.0-M1
        5.2.0-M2
        5.2.0-M3
        5.2.0-RC1
        5.2.0
        5.2.1
        5.2.2 Latest Major
        +

        org.springframework.data:spring-data-envers

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-envers
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-geode

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-geode
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6 Latest Major
        +

        org.springframework.data:spring-data-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-jdbc
        Current Version2.4.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-jpa
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-keyvalue

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-keyvalue
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-ldap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-ldap
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-mongodb
        Current Version3.4.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-neo4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-neo4j
        Current Version6.3.18
        Scope
        Classifier
        Typejar
        Newer versions7.0.0-M1
        7.0.0-M2
        7.0.0-M3
        7.0.0-M4
        7.0.0-M5
        7.0.0-M6
        7.0.0-RC1
        7.0.0-RC2
        7.0.0
        7.0.1
        7.0.2
        7.0.3
        7.0.4
        7.0.5
        7.0.6
        7.0.7
        7.0.8
        7.0.9
        7.0.10
        7.0.11
        7.0.12
        7.1.0-M1
        7.1.0-M2
        7.1.0-M3
        7.1.0-RC1
        7.1.0
        7.1.1
        7.1.2
        7.1.3
        7.1.4
        7.1.5
        7.1.6
        7.1.7
        7.1.8
        7.2.0-M1
        7.2.0-M2
        7.2.0-M3
        7.2.0-RC1
        7.2.0
        7.2.1
        7.2.2 Latest Major
        +

        org.springframework.data:spring-data-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-r2dbc
        Current Version1.5.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-redis
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-relational

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-relational
        Current Version2.4.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-rest-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-rest-core
        Current Version3.7.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-rest-hal-explorer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-rest-hal-explorer
        Current Version3.7.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-rest-webmvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-rest-webmvc
        Current Version3.7.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.experimental:spring-aot

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.experimental
        Artifact Idspring-aot
        Current Version0.12.2
        Scope
        Classifier
        Typejar
        +

        org.springframework.experimental:spring-native

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.experimental
        Artifact Idspring-native
        Current Version0.12.2
        Scope
        Classifier
        Typejar
        +

        org.springframework.graphql:spring-graphql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.graphql
        Artifact Idspring-graphql
        Current Version1.0.6
        Scope
        Classifier
        Typejar
        Newer versions1.1.0-M1
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.2.0-M1
        1.2.0-RC1
        1.2.0
        1.2.1
        1.2.2
        1.2.3
        1.2.4 Latest Minor
        +

        org.springframework.graphql:spring-graphql-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.graphql
        Artifact Idspring-graphql-test
        Current Version1.0.6
        Scope
        Classifier
        Typejar
        Newer versions1.1.0-M1
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.2.0-M1
        1.2.0-RC1
        1.2.0
        1.2.1
        1.2.2
        1.2.3
        1.2.4 Latest Minor
        +

        org.springframework.hateoas:spring-hateoas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.hateoas
        Artifact Idspring-hateoas
        Current Version1.5.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0-M2
        2.0.0-M3
        2.0.0-M4
        2.0.0-M5
        2.0.0-M6
        2.0.0-RC1
        2.0.0-RC2
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.1.0-M1
        2.1.0-RC1
        2.1.0
        2.1.1
        2.1.2
        2.1.3
        2.2.0-M1
        2.2.0-M2
        2.2.0-RC1
        2.2.0 Latest Major
        +

        org.springframework.integration:spring-integration-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-amqp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-core
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-event

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-event
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-feed

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-feed
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-file

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-file
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-ftp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-ftp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-gemfire

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-gemfire
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5 Latest Major
        +

        org.springframework.integration:spring-integration-groovy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-groovy
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-http
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-ip

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-ip
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jdbc
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jms
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jmx
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jpa
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-kafka

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-kafka
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-mail

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-mail
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-mongodb
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-mqtt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-mqtt
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-r2dbc
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-redis
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-rmi

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-rmi
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        +

        org.springframework.integration:spring-integration-rsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-rsocket
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-scripting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-scripting
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-security
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-sftp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-sftp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-stomp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-stomp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-stream

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-stream
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-syslog

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-syslog
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-test
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-test-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-test-support
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-webflux

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-webflux
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-websocket
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-ws

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-ws
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-xml
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-xmpp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-xmpp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-zeromq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-zeromq
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-zookeeper

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-zookeeper
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.kafka:spring-kafka

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.kafka
        Artifact Idspring-kafka
        Current Version2.8.11
        Scope
        Classifier
        Typejar
        Newer versions2.9.0-M1
        2.9.0-RC1
        2.9.0
        2.9.1
        2.9.2
        2.9.3
        2.9.4
        2.9.5
        2.9.6
        2.9.7
        2.9.8
        2.9.9
        2.9.10
        2.9.11
        2.9.12
        2.9.13 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.kafka:spring-kafka-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.kafka
        Artifact Idspring-kafka-test
        Current Version2.8.11
        Scope
        Classifier
        Typejar
        Newer versions2.9.0-M1
        2.9.0-RC1
        2.9.0
        2.9.1
        2.9.2
        2.9.3
        2.9.4
        2.9.5
        2.9.6
        2.9.7
        2.9.8
        2.9.9
        2.9.10
        2.9.11
        2.9.12
        2.9.13 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-core
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-core-tiger

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-core-tiger
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1 Latest Major
        +

        org.springframework.ldap:spring-ldap-ldif-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-ldif-core
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-odm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-odm
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-test
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-asciidoctor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-asciidoctor
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-core
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-mockmvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-mockmvc
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-restassured

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-restassured
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-webtestclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-webtestclient
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.retry:spring-retry

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.retry
        Artifact Idspring-retry
        Current Version1.3.4
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0-RC1
        2.0.0-RC2
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5 Latest Major
        +

        org.springframework.security:spring-security-acl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-acl
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-aspects

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-aspects
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-cas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-cas
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-config

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-config
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-core
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-crypto

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-crypto
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-data

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-data
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-ldap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-ldap
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-messaging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-messaging
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-client
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-core
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-jose

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-jose
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-resource-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-resource-server
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-openid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-openid
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1 Latest Major
        +

        org.springframework.security:spring-security-remoting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-remoting
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        +

        org.springframework.security:spring-security-rsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-rsocket
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-saml2-service-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-saml2-service-provider
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-taglibs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-taglibs
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-test
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-web
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-core
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-data-geode

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-data-geode
        Current Version2.7.1
        Scope
        Classifier
        Typejar
        Newer versions2.7.2 Latest Incremental
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5 Latest Major
        +

        org.springframework.session:spring-session-data-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-data-mongodb
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-data-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-data-redis
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-hazelcast

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-hazelcast
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-jdbc
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.ws:spring-ws-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-core
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-ws-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-security
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-ws-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-support
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-ws-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-test
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-xml
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.thymeleaf:thymeleaf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.thymeleaf
        Artifact Idthymeleaf
        Current Version3.0.15.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.1.0.M1
        3.1.0.M2
        3.1.0.M3
        3.1.0.RC1
        3.1.0.RC2
        3.1.0.RELEASE
        3.1.1.RELEASE
        3.1.2.RELEASE Latest Minor
        +

        org.thymeleaf:thymeleaf-spring5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.thymeleaf
        Artifact Idthymeleaf-spring5
        Current Version3.0.15.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.1.0.M1
        3.1.0.M2
        3.1.0.M3
        3.1.0.RC1
        3.1.0.RC2
        3.1.0.RELEASE
        3.1.1.RELEASE
        3.1.2.RELEASE Latest Minor
        +

        org.thymeleaf.extras:thymeleaf-extras-java8time

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.thymeleaf.extras
        Artifact Idthymeleaf-extras-java8time
        Current Version3.0.4.RELEASE
        Scope
        Classifier
        Typejar
        +

        org.thymeleaf.extras:thymeleaf-extras-springsecurity5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.thymeleaf.extras
        Artifact Idthymeleaf-extras-springsecurity5
        Current Version3.0.5.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.1.0.M1
        3.1.0.RC1
        3.1.0.RC2
        3.1.0.RELEASE
        3.1.1.RELEASE
        3.1.2.RELEASE Latest Minor
        +

        org.webjars:webjars-locator-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.webjars
        Artifact Idwebjars-locator-core
        Current Version0.50
        Scope
        Classifier
        Typejar
        Newer versions0.51
        0.52
        0.53
        0.54
        0.55 Latest Minor
        +

        org.xerial:sqlite-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.xerial
        Artifact Idsqlite-jdbc
        Current Version3.36.0.3
        Scope
        Classifier
        Typejar
        Newer versions3.39.2.0
        3.39.2.1
        3.39.3.0
        3.39.4.0
        3.39.4.1
        3.40.0.0
        3.40.1.0
        3.41.0.0
        3.41.0.1
        3.41.2.0
        3.41.2.1
        3.41.2.2
        3.42.0.0
        3.42.0.1
        3.43.0.0
        3.43.2.0
        3.43.2.1
        3.43.2.2
        3.44.0.0
        3.44.1.0
        3.45.0.0
        3.45.1.0 Latest Minor
        +

        org.xmlunit:xmlunit-assertj

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-assertj
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-assertj3

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-assertj3
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-core
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-legacy

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-legacy
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-matchers

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-matchers
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-placeholders

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-placeholders
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.yaml:snakeyaml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.yaml
        Artifact Idsnakeyaml
        Current Version1.30
        Scope
        Classifier
        Typejar
        Newer versions1.31
        1.32
        1.33 Latest Minor
        2.0
        2.1
        2.2 Latest Major
        +

        redis.clients:jedis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idredis.clients
        Artifact Idjedis
        Current Version3.8.0
        Scope
        Classifier
        Typejar
        Newer versions3.9.0
        3.10.0 Latest Minor
        4.0.0-beta1
        4.0.0-beta2
        4.0.0-beta3
        4.0.0-beta4
        4.0.0-RC1
        4.0.0-rc2
        4.0.0
        4.0.1
        4.1.0
        4.1.1
        4.2.0-m1
        4.2.0-rc1
        4.2.0
        4.2.1
        4.2.2
        4.2.3
        4.3.0-m1
        4.3.0-m2
        4.3.0
        4.3.1
        4.3.2
        4.4.0-m1
        4.4.0-m2
        4.4.0-rc1
        4.4.0
        4.4.1
        4.4.2
        4.4.3
        4.4.4
        4.4.5
        4.4.6
        5.0.0-alpha1
        5.0.0-alpha2
        5.0.0-beta1
        5.0.0-beta2
        5.0.0
        5.0.1
        5.0.2
        5.1.0
        5.2.0-alpha2 Latest Major
        +

        wsdl4j:wsdl4j

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idwsdl4j
        Artifact Idwsdl4j
        Current Version1.6.3
        Scope
        Classifier
        Typejar
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/dependency-updates-report.html b/zh_CN/dependency-updates-report.html new file mode 100644 index 0000000..98499df --- /dev/null +++ b/zh_CN/dependency-updates-report.html @@ -0,0 +1,44132 @@ + + + + + + + + + + mybatis-spring-native-docs – Dependency Updates Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's various dependencies.

        + + + + + + + + + + + + + + + + + + + + + +
        # of dependencies using the latest version available101
        # of dependencies where the next version available is smaller than an incremental version update3
        # of dependencies where the next version available is an incremental version update214
        # of dependencies where the next version available is a minor version update535
        # of dependencies where the next version available is a major version update313
        +

        Dependency Management

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        antlrantlr2.7.7jar20030911
        ch.qos.logbacklogback-access1.2.12jar1.2.131.4.14
        ch.qos.logbacklogback-classic1.2.12jar1.2.131.4.14
        ch.qos.logbacklogback-core1.2.12jar1.2.131.4.14
        com.atomikostransactions-jdbc4.0.6jar6.0.0
        com.atomikostransactions-jms4.0.6jar6.0.0
        com.atomikostransactions-jta4.0.6jar6.0.0
        com.couchbase.clientjava-client3.3.4jar3.5.3
        com.datastax.ossjava-driver-core4.14.1jar4.17.0
        com.datastax.ossjava-driver-core-shaded4.14.1jar4.17.0
        com.datastax.ossjava-driver-mapper-processor4.14.1jar4.17.0
        com.datastax.ossjava-driver-mapper-runtime4.14.1jar4.17.0
        com.datastax.ossjava-driver-metrics-micrometer4.14.1jar4.17.0
        com.datastax.ossjava-driver-metrics-microprofile4.14.1jar4.17.0
        com.datastax.ossjava-driver-query-builder4.14.1jar4.17.0
        com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1jar
        com.datastax.ossjava-driver-test-infra4.14.1jar4.17.0
        com.datastax.ossnative-protocol1.5.1jar
        com.fasterxmlclassmate1.5.1jar1.7.0
        com.fasterxml.jackson.corejackson-annotations2.13.5jar2.16.1
        com.fasterxml.jackson.corejackson-core2.13.5jar2.16.1
        com.fasterxml.jackson.corejackson-databind2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.5jar2.16.1
        com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-guava2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-joda2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.5jar2.16.1
        com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-all2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-objects2.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-retrofit22.13.5jar2.16.1
        com.fasterxml.jackson.jrjackson-jr-stree2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-afterburner2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-blackbird2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-guice2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-kotlin2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-mrbean2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-osgi2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-parameter-names2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-paranamer2.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_2.112.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_2.122.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_2.132.13.5jar2.16.1
        com.fasterxml.jackson.modulejackson-module-scala_32.13.5jar2.16.1
        com.github.ben-manes.caffeinecaffeine2.9.3jar3.1.8
        com.github.ben-manes.caffeineguava2.9.3jar3.1.8
        com.github.ben-manes.caffeinejcache2.9.3jar3.1.8
        com.github.ben-manes.caffeinesimulator2.9.3jar3.1.8
        com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1jar
        com.google.appengineappengine-api-1.0-sdk1.9.98jar2.0.24
        com.google.code.gsongson2.9.1jar2.10.1
        com.graphql-javagraphql-java18.5jar18.7230521-nf-execution
        com.h2databaseh22.1.214jar2.2.224
        com.hazelcasthazelcast5.1.7jar5.3.6
        com.hazelcasthazelcast-hibernate522.2.1jar
        com.hazelcasthazelcast-hibernate532.2.1jar2.3.05.1.0
        com.hazelcasthazelcast-spring5.1.7jar5.3.6
        com.ibm.db2jcc11.5.9.0jar
        com.jayway.jsonpathjson-path2.7.0jar2.9.0
        com.jayway.jsonpathjson-path-assert2.7.0jar2.9.0
        com.microsoft.sqlservermssql-jdbc10.2.3.jre8jar10.2.3.jre1712.6.0.jre11
        com.mysqlmysql-connector-j8.0.33jar8.3.0
        com.oracle.database.haons21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.hasimplefan21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc1121.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc11-production21.5.0.0pom21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc821.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcojdbc8-production21.5.0.0pom21.11.0.023.3.0.23.09
        com.oracle.database.jdbcrsi21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcucp21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbcucp1121.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.jdbc.debugojdbc11-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc11-observability-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc11_g21.5.0.0jar21.11.0.0
        com.oracle.database.jdbc.debugojdbc11dms_g21.5.0.0jar21.11.0.0
        com.oracle.database.jdbc.debugojdbc8-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc8-observability-debug21.5.0.0pom21.11.0.0
        com.oracle.database.jdbc.debugojdbc8_g21.5.0.0jar21.11.0.0
        com.oracle.database.jdbc.debugojdbc8dms_g21.5.0.0jar21.11.0.0
        com.oracle.database.nlsorai18n21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.observabilitydms21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.observabilityojdbc11-observability21.5.0.0pom21.11.0.0
        com.oracle.database.observabilityojdbc11dms21.5.0.0jar21.11.0.0
        com.oracle.database.observabilityojdbc8-observability21.5.0.0pom21.11.0.0
        com.oracle.database.observabilityojdbc8dms21.5.0.0jar21.11.0.0
        com.oracle.database.r2dbcoracle-r2dbc0.4.0jar1.2.0
        com.oracle.database.securityoraclepki21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.securityosdt_cert21.5.0.0jar21.11.0.0
        com.oracle.database.securityosdt_core21.5.0.0jar21.11.0.0
        com.oracle.database.xmlxdb21.5.0.0jar21.11.0.023.3.0.23.09
        com.oracle.database.xmlxmlparserv221.5.0.0jar21.11.0.023.3.0.23.09
        com.querydslquerydsl-apt5.0.0jar5.1.0
        com.querydslquerydsl-codegen5.0.0jar5.1.0
        com.querydslquerydsl-codegen-utils5.0.0jar
        com.querydslquerydsl-collections5.0.0jar5.1.0
        com.querydslquerydsl-core5.0.0jar5.1.0
        com.querydslquerydsl-guava5.0.0jar5.1.0
        com.querydslquerydsl-hibernate-search5.0.0jar5.1.0
        com.querydslquerydsl-jdo5.0.0jar5.1.0
        com.querydslquerydsl-jpa5.0.0jar5.1.0
        com.querydslquerydsl-jpa-codegen5.0.0jar5.1.0
        com.querydslquerydsl-kotlin5.0.0jar5.1.0
        com.querydslquerydsl-kotlin-codegen5.0.0jar5.1.0
        com.querydslquerydsl-lucene35.0.0jar5.1.0
        com.querydslquerydsl-lucene45.0.0jar5.1.0
        com.querydslquerydsl-lucene55.0.0jar5.1.0
        com.querydslquerydsl-mongodb5.0.0jar5.1.0
        com.querydslquerydsl-scala5.0.0jar5.1.0
        com.querydslquerydsl-spatial5.0.0jar5.1.0
        com.querydslquerydsl-sql5.0.0jar5.1.0
        com.querydslquerydsl-sql-codegen5.0.0jar5.1.0
        com.querydslquerydsl-sql-spatial5.0.0jar5.1.0
        com.querydslquerydsl-sql-spring5.0.0jar5.1.0
        com.rabbitmqamqp-client5.14.3jar5.20.0
        com.rabbitmqstream-client0.5.0jar0.15.0
        com.samskivertjmustache1.15jar1.16
        com.sendgridsendgrid-java4.9.3jar4.10.1
        com.squareup.okhttp3logging-interceptor4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3mockwebserver4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okcurl4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-brotli4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-dnsoverhttps4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-sse4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-tls4.9.3jar4.12.05.0.0-alpha.12
        com.squareup.okhttp3okhttp-urlconnection4.9.3jar4.12.05.0.0-alpha.12
        com.sun.activationjakarta.activation1.2.2jar2.0.1
        com.sun.mailjakarta.mail1.6.7jar2.0.1
        com.sun.xml.messaging.saajsaaj-impl1.5.3jar3.0.3
        com.unboundidunboundid-ldapsdk6.0.10jar6.0.11
        com.zaxxerHikariCP4.0.3jar5.1.0
        commons-codeccommons-codec1.15jar1.16.1
        commons-poolcommons-pool1.6jar
        de.flapdoodle.embedde.flapdoodle.embed.mongo3.4.11jar3.5.44.12.2
        io.dropwizard.metricsmetrics-annotation4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-caffeine4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-caffeine34.2.22jar4.2.25
        io.dropwizard.metricsmetrics-collectd4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-core4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-ehcache4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-graphite4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-healthchecks4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-httpasyncclient4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-httpclient4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-httpclient54.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jakarta-servlet4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jakarta-servlet64.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jakarta-servlets4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jcache4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jdbi4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jdbi34.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jersey24.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jersey34.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jersey314.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty104.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty114.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty124.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty12-ee104.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jetty94.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jmx4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-json4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-jvm4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-log4j24.2.22jar4.2.25
        io.dropwizard.metricsmetrics-logback4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-logback134.2.22jar4.2.25
        io.dropwizard.metricsmetrics-logback144.2.22jar4.2.25
        io.dropwizard.metricsmetrics-servlet4.2.22jar4.2.25
        io.dropwizard.metricsmetrics-servlets4.2.22jar4.2.25
        io.lettucelettuce-core6.1.10.RELEASEjar6.3.1.RELEASE
        io.micrometermicrometer-core1.9.17jar1.12.2
        io.micrometermicrometer-registry-appoptics1.9.17jar1.12.2
        io.micrometermicrometer-registry-atlas1.9.17jar1.12.2
        io.micrometermicrometer-registry-azure-monitor1.9.17jar1.12.2
        io.micrometermicrometer-registry-cloudwatch1.9.17jar1.12.2
        io.micrometermicrometer-registry-cloudwatch21.9.17jar1.12.2
        io.micrometermicrometer-registry-datadog1.9.17jar1.12.2
        io.micrometermicrometer-registry-dynatrace1.9.17jar1.12.2
        io.micrometermicrometer-registry-elastic1.9.17jar1.12.2
        io.micrometermicrometer-registry-ganglia1.9.17jar1.12.2
        io.micrometermicrometer-registry-graphite1.9.17jar1.12.2
        io.micrometermicrometer-registry-health1.9.17jar1.12.2
        io.micrometermicrometer-registry-humio1.9.17jar1.12.2
        io.micrometermicrometer-registry-influx1.9.17jar1.12.2
        io.micrometermicrometer-registry-jmx1.9.17jar1.12.2
        io.micrometermicrometer-registry-kairos1.9.17jar1.12.2
        io.micrometermicrometer-registry-new-relic1.9.17jar1.12.2
        io.micrometermicrometer-registry-opentsdb1.9.17jar1.12.2
        io.micrometermicrometer-registry-otlp1.9.17jar1.12.2
        io.micrometermicrometer-registry-prometheus1.9.17jar1.12.2
        io.micrometermicrometer-registry-signalfx1.9.17jar1.12.2
        io.micrometermicrometer-registry-stackdriver1.9.17jar1.12.2
        io.micrometermicrometer-registry-statsd1.9.17jar1.12.2
        io.micrometermicrometer-registry-wavefront1.9.17jar1.12.2
        io.micrometermicrometer-test1.9.17jar1.12.2
        io.nettynetty-all4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-buffer4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-haproxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-http4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-http24.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-memcache4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-mqtt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-redis4.1.101.Finaljar4.1.106.Final
        io.nettynetty-codec-smtp4.1.101.Finaljar4.1.106.Final
        io.nettynetty-codec-socks4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-stomp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-codec-xml4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-common4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-dev-tools4.1.101.Finaljar4.1.106.Final
        io.nettynetty-example4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-handler4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-handler-proxy4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-handler-ssl-ocsp4.1.101.Finaljar4.1.106.Final
        io.nettynetty-resolver4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-resolver-dns4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-resolver-dns-classes-macos4.1.101.Finaljar4.1.106.Final
        io.nettynetty-resolver-dns-native-macos4.1.101.Finaljar4.1.106.Final
        io.nettynetty-tcnative2.0.61.Finallinux-x86_64jar2.0.62.Final
        io.nettynetty-tcnative-boringssl-static2.0.61.Finaljar2.0.62.Final
        io.nettynetty-tcnative-classes2.0.61.Finaljar2.0.62.Final
        io.nettynetty-transport4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-classes-epoll4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-classes-kqueue4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-native-epoll4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-native-kqueue4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-native-unix-common4.1.101.Finaljar4.1.106.Final
        io.nettynetty-transport-rxtx4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-sctp4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.nettynetty-transport-udt4.1.101.Finaljar4.1.106.Final5.0.0.Alpha2
        io.projectreactorreactor-core3.4.34jar3.4.353.6.2
        io.projectreactorreactor-test3.4.34jar3.4.353.6.2
        io.projectreactorreactor-tools3.4.34jar3.4.353.6.2
        io.projectreactor.addonsreactor-adapter3.4.10jar3.5.1
        io.projectreactor.addonsreactor-extra3.4.10jar3.5.1
        io.projectreactor.addonsreactor-pool0.2.12jar1.0.5
        io.projectreactor.kafkareactor-kafka1.3.22jar
        io.projectreactor.kotlinreactor-kotlin-extensions1.1.10jar1.2.2
        io.projectreactor.nettyreactor-netty1.0.39jar1.0.411.1.15
        io.projectreactor.nettyreactor-netty-core1.0.39jar1.0.411.1.15
        io.projectreactor.nettyreactor-netty-http1.0.39jar1.0.411.1.15
        io.projectreactor.nettyreactor-netty-http-brave1.0.39jar1.0.411.1.15
        io.projectreactor.rabbitmqreactor-rabbitmq1.5.6jar
        io.prometheussimpleclient0.15.0jar0.16.0
        io.prometheussimpleclient_caffeine0.15.0jar0.16.0
        io.prometheussimpleclient_common0.15.0jar0.16.0
        io.prometheussimpleclient_dropwizard0.15.0jar0.16.0
        io.prometheussimpleclient_graphite_bridge0.15.0jar0.16.0
        io.prometheussimpleclient_guava0.15.0jar0.16.0
        io.prometheussimpleclient_hibernate0.15.0jar0.16.0
        io.prometheussimpleclient_hotspot0.15.0jar0.16.0
        io.prometheussimpleclient_httpserver0.15.0jar0.16.0
        io.prometheussimpleclient_jetty0.15.0jar0.16.0
        io.prometheussimpleclient_jetty_jdk80.15.0jar0.16.0
        io.prometheussimpleclient_log4j0.15.0jar0.16.0
        io.prometheussimpleclient_log4j20.15.0jar0.16.0
        io.prometheussimpleclient_logback0.15.0jar0.16.0
        io.prometheussimpleclient_pushgateway0.15.0jar0.16.0
        io.prometheussimpleclient_servlet0.15.0jar0.16.0
        io.prometheussimpleclient_servlet_jakarta0.15.0jar0.16.0
        io.prometheussimpleclient_spring_boot0.15.0jar0.16.0
        io.prometheussimpleclient_spring_web0.15.0jar0.16.0
        io.prometheussimpleclient_tracer_otel0.15.0jar0.16.0
        io.prometheussimpleclient_tracer_otel_agent0.15.0jar0.16.0
        io.prometheussimpleclient_vertx0.15.0jar0.16.0
        io.r2dbcr2dbc-h20.9.1.RELEASEjar1.0.0.RELEASE
        io.r2dbcr2dbc-mssql0.9.0.RELEASEjar0.9.0.SONATYPE-M41.0.2.RELEASE
        io.r2dbcr2dbc-pool0.9.2.RELEASEjar1.0.1.RELEASE
        io.r2dbcr2dbc-proxy0.9.1.RELEASEjar1.1.4.RELEASE
        io.r2dbcr2dbc-spi0.9.1.RELEASEjar1.0.0.RELEASE
        io.reactivexrxjava1.3.8jar
        io.reactivexrxjava-reactive-streams1.2.1jar
        io.reactivex.rxjava2rxjava2.2.21jar
        io.rest-assuredjson-path4.5.1jar5.4.0
        io.rest-assuredjson-schema-validator4.5.1jar5.4.0
        io.rest-assuredkotlin-extensions4.5.1jar5.4.0
        io.rest-assuredrest-assured4.5.1jar5.4.0
        io.rest-assuredrest-assured-all4.5.1jar5.4.0
        io.rest-assuredrest-assured-common4.5.1jar5.4.0
        io.rest-assuredscala-support4.5.1jar5.4.0
        io.rest-assuredspring-commons4.5.1jar5.4.0
        io.rest-assuredspring-mock-mvc4.5.1jar5.4.0
        io.rest-assuredspring-mock-mvc-kotlin-extensions4.5.1jar5.4.0
        io.rest-assuredspring-web-test-client4.5.1jar5.4.0
        io.rest-assuredxml-path4.5.1jar5.4.0
        io.rest-assured.exampleskotlin-example4.5.1jar
        io.rest-assured.examplesrest-assured-itest-java4.5.1jar
        io.rest-assured.examplesscala-example4.5.1jar
        io.rest-assured.examplesscala-mock-mvc-example4.5.1jar
        io.rest-assured.examplesscalatra-example4.5.1jar
        io.rest-assured.examplesscalatra-webapp4.5.1war
        io.rest-assured.examplesspring-mvc-webapp4.5.1war
        io.rsocketrsocket-core1.1.3jar1.1.4
        io.rsocketrsocket-load-balancer1.1.3jar1.1.4
        io.rsocketrsocket-micrometer1.1.3jar1.1.4
        io.rsocketrsocket-test1.1.3jar1.1.4
        io.rsocketrsocket-transport-local1.1.3jar1.1.4
        io.rsocketrsocket-transport-netty1.1.3jar1.1.4
        io.spring.gradledependency-management-plugin1.0.15.RELEASEjar1.1.4
        io.undertowundertow-core2.2.28.Finaljar2.3.10.Final
        io.undertowundertow-servlet2.2.28.Finaljar2.3.10.Final
        io.undertowundertow-websockets-jsr2.2.28.Finaljar2.3.10.Final
        jakarta.activationjakarta.activation-api1.2.2jar2.1.2
        jakarta.annotationjakarta.annotation-api1.3.5jar3.0.0-M1
        jakarta.jmsjakarta.jms-api2.0.3jar3.1.0
        jakarta.jsonjakarta.json-api1.1.6jar2.1.3
        jakarta.json.bindjakarta.json.bind-api1.0.2jar3.0.0
        jakarta.mailjakarta.mail-api1.6.7jar2.1.2
        jakarta.management.j2eejakarta.management.j2ee-api1.1.4jar
        jakarta.persistencejakarta.persistence-api2.2.3jar3.2.0-M1
        jakarta.servletjakarta.servlet-api4.0.4jar6.1.0-M1
        jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7jar3.0.0
        jakarta.transactionjakarta.transaction-api1.3.3jar2.0.1
        jakarta.validationjakarta.validation-api2.0.2jar3.1.0-M1
        jakarta.websocketjakarta.websocket-api1.1.2jar2.2.0-M1
        jakarta.ws.rsjakarta.ws.rs-api2.1.6jar3.1.0
        jakarta.xml.bindjakarta.xml.bind-api2.3.3jar4.0.1
        jakarta.xml.soapjakarta.xml.soap-api1.4.2jar3.0.1
        jakarta.xml.wsjakarta.xml.ws-api2.3.3jar4.0.1
        javax.activationjavax.activation-api1.2.0jar
        javax.annotationjavax.annotation-api1.3.2jar
        javax.cachecache-api1.1.1jar
        javax.jmsjavax.jms-api2.0.1jar
        javax.jsonjavax.json-api1.1.4jar
        javax.json.bindjavax.json.bind-api1.0jar
        javax.mailjavax.mail-api1.6.2jar
        javax.moneymoney-api1.1jar
        javax.persistencejavax.persistence-api2.2jar
        javax.servletjavax.servlet-api4.0.1jar
        javax.servletjstl1.2jar
        javax.transactionjavax.transaction-api1.3jar
        javax.validationvalidation-api2.0.1.Finaljar
        javax.websocketjavax.websocket-api1.1jar
        javax.xml.bindjaxb-api2.3.1jar2.4.0-b180830.0359
        javax.xml.wsjaxws-api2.3.1jar
        jaxenjaxen1.2.0jar2.0.0
        junitjunit4.13.2jar
        net.bytebuddybyte-buddy1.12.23jar1.14.11
        net.bytebuddybyte-buddy-agent1.12.23jar1.14.11
        net.minidevjson-smart2.4.11jar2.5.0
        net.sf.ehcacheehcache2.10.9.2jar
        net.sourceforge.htmlunithtmlunit2.60.0jar2.70.0
        net.sourceforge.jtdsjtds1.3.1jar
        net.sourceforge.nekohtmlnekohtml1.9.22jar
        nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0jar3.3.0
        org.apache.activemqactivemq-amqp5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-blueprint5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-broker5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-camel5.16.7jar
        org.apache.activemqactivemq-client5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-console5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-http5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-jaas5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-jdbc-store5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-jms-pool5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-kahadb-store5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-karaf5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-leveldb-store5.16.7jar
        org.apache.activemqactivemq-log4j-appender5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-mqtt5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-openwire-generator5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-openwire-legacy5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-osgi5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-partition5.16.7jar5.18.3
        org.apache.activemqactivemq-pool5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-ra5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-run5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-runtime-config5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-shiro5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-spring5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-stomp5.16.7jar5.18.36.0.1
        org.apache.activemqactivemq-web5.16.7jar5.18.36.0.1
        org.apache.activemqartemis-amqp-protocol2.19.1jar2.32.0
        org.apache.activemqartemis-commons2.19.1jar2.32.0
        org.apache.activemqartemis-core-client2.19.1jar2.32.0
        org.apache.activemqartemis-jdbc-store2.19.1jar2.32.0
        org.apache.activemqartemis-jms-client2.19.1jar2.32.0
        org.apache.activemqartemis-jms-server2.19.1jar2.32.0
        org.apache.activemqartemis-journal2.19.1jar2.32.0
        org.apache.activemqartemis-quorum-api2.19.1jar2.32.0
        org.apache.activemqartemis-selector2.19.1jar2.32.0
        org.apache.activemqartemis-server2.19.1jar2.32.0
        org.apache.activemqartemis-service-extensions2.19.1jar2.32.0
        org.apache.commonscommons-dbcp22.9.0jar2.11.0
        org.apache.commonscommons-lang33.12.0jar3.14.0
        org.apache.commonscommons-pool22.11.1jar2.12.0
        org.apache.derbyderby10.14.2.0jar10.17.1.0
        org.apache.derbyderbyclient10.14.2.0jar10.17.1.0
        org.apache.derbyderbynet10.14.2.0jar10.17.1.0
        org.apache.derbyderbyoptionaltools10.14.2.0jar10.17.1.0
        org.apache.derbyderbytools10.14.2.0jar10.17.1.0
        org.apache.httpcomponentsfluent-hc4.5.14jar
        org.apache.httpcomponentshttpasyncclient4.1.5jar
        org.apache.httpcomponentshttpclient4.5.14jar
        org.apache.httpcomponentshttpclient-cache4.5.14jar
        org.apache.httpcomponentshttpclient-osgi4.5.14jar
        org.apache.httpcomponentshttpclient-win4.5.14jar
        org.apache.httpcomponentshttpcore4.4.16jar
        org.apache.httpcomponentshttpcore-nio4.4.16jar
        org.apache.httpcomponentshttpmime4.5.14jar
        org.apache.httpcomponents.client5httpclient55.1.4jar5.4-alpha1
        org.apache.httpcomponents.client5httpclient5-cache5.1.4jar5.4-alpha1
        org.apache.httpcomponents.client5httpclient5-fluent5.1.4jar5.4-alpha1
        org.apache.httpcomponents.client5httpclient5-win5.1.4jar5.2.3
        org.apache.httpcomponents.core5httpcore55.1.5jar5.3-alpha1
        org.apache.httpcomponents.core5httpcore5-h25.1.5jar5.3-alpha1
        org.apache.httpcomponents.core5httpcore5-reactive5.1.5jar5.3-alpha1
        org.apache.johnzonjohnzon-core1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jaxrs1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jsonb1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jsonb-extras1.2.21jar2.0.0
        org.apache.johnzonjohnzon-jsonschema1.2.21jar2.0.0
        org.apache.johnzonjohnzon-mapper1.2.21jar2.0.0
        org.apache.johnzonjohnzon-websocket1.2.21jar2.0.0
        org.apache.kafkaconnect3.1.2jar3.6.1
        org.apache.kafkaconnect-api3.1.2jar3.6.1
        org.apache.kafkaconnect-basic-auth-extension3.1.2jar3.6.1
        org.apache.kafkaconnect-file3.1.2jar3.6.1
        org.apache.kafkaconnect-json3.1.2jar3.6.1
        org.apache.kafkaconnect-mirror3.1.2jar3.6.1
        org.apache.kafkaconnect-mirror-client3.1.2jar3.6.1
        org.apache.kafkaconnect-runtime3.1.2jar3.6.1
        org.apache.kafkaconnect-transforms3.1.2jar3.6.1
        org.apache.kafkagenerator3.1.2jar3.6.1
        org.apache.kafkakafka-clients3.1.2jar3.6.1
        org.apache.kafkakafka-log4j-appender3.1.2jar3.6.1
        org.apache.kafkakafka-metadata3.1.2jar3.6.1
        org.apache.kafkakafka-raft3.1.2jar3.6.1
        org.apache.kafkakafka-server-common3.1.2jar3.6.1
        org.apache.kafkakafka-shell3.1.2jar3.6.1
        org.apache.kafkakafka-storage3.1.2jar3.6.1
        org.apache.kafkakafka-storage-api3.1.2jar3.6.1
        org.apache.kafkakafka-streams3.1.2jar3.6.1
        org.apache.kafkakafka-streams-scala_2.123.1.2jar3.6.1
        org.apache.kafkakafka-streams-scala_2.133.1.2jar3.6.1
        org.apache.kafkakafka-streams-test-utils3.1.2jar3.6.1
        org.apache.kafkakafka-tools3.1.2jar3.6.1
        org.apache.kafkakafka_2.123.1.2jar3.6.1
        org.apache.kafkakafka_2.133.1.2jar3.6.1
        org.apache.kafkatrogdor3.1.2jar3.6.1
        org.apache.logging.log4jlog4j-1.2-api2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-api2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-appserver2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-cassandra2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-core2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-couchdb2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-docker2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-flume-ng2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-iostreams2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-jcl2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-jmx-gui2.17.2jar2.22.03.0.0-alpha1
        org.apache.logging.log4jlog4j-jpa2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-jpl2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-jul2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-kubernetes2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-layout-template-json2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-liquibase2.17.2jar2.19.03.0.0-alpha1
        org.apache.logging.log4jlog4j-mongodb32.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-mongodb42.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-slf4j-impl2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-slf4j18-impl2.17.2jar2.18.0
        org.apache.logging.log4jlog4j-spring-boot2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-taglib2.17.2jar2.22.13.0.0-alpha1
        org.apache.logging.log4jlog4j-to-slf4j2.17.2jar2.22.13.0.0-beta1
        org.apache.logging.log4jlog4j-web2.17.2jar2.22.13.0.0-alpha1
        org.apache.solrsolr-analysis-extras8.11.2jar8.11.39.4.1
        org.apache.solrsolr-analytics8.11.2jar8.11.39.4.1
        org.apache.solrsolr-cell8.11.2jar8.11.3
        org.apache.solrsolr-core8.11.2jar8.11.39.4.1
        org.apache.solrsolr-dataimporthandler8.11.2jar8.11.3
        org.apache.solrsolr-dataimporthandler-extras8.11.2jar8.11.3
        org.apache.solrsolr-gcs-repository8.11.2jar8.11.39.4.1
        org.apache.solrsolr-jaegertracer-configurator8.11.2jar8.11.39.4.1
        org.apache.solrsolr-langid8.11.2jar8.11.39.4.1
        org.apache.solrsolr-ltr8.11.2jar8.11.39.4.1
        org.apache.solrsolr-prometheus-exporter8.11.2jar8.11.39.4.1
        org.apache.solrsolr-s3-repository8.11.2jar8.11.39.4.1
        org.apache.solrsolr-solrj8.11.2jar8.11.39.4.1
        org.apache.solrsolr-test-framework8.11.2jar8.11.39.4.1
        org.apache.solrsolr-velocity8.11.2jar8.11.3
        org.apache.tomcattomcat-annotations-api9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcattomcat-jdbc9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcattomcat-jsp-api9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-core9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-el9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-jasper9.0.83jar9.0.8511.0.0-M16
        org.apache.tomcat.embedtomcat-embed-websocket9.0.83jar9.0.8511.0.0-M16
        org.aspectjaspectjrt1.9.7jar1.9.21
        org.aspectjaspectjtools1.9.7jar1.9.21
        org.aspectjaspectjweaver1.9.7jar1.9.21
        org.assertjassertj-core3.22.0jar3.25.3
        org.awaitilityawaitility4.2.0jar
        org.awaitilityawaitility-groovy4.2.0jar
        org.awaitilityawaitility-kotlin4.2.0jar
        org.awaitilityawaitility-scala4.2.0jar
        org.cache2kcache2k-api2.6.1.Finaljar
        org.cache2kcache2k-config2.6.1.Finaljar
        org.cache2kcache2k-core2.6.1.Finaljar
        org.cache2kcache2k-jcache2.6.1.Finaljar
        org.cache2kcache2k-micrometer2.6.1.Finaljar
        org.cache2kcache2k-spring2.6.1.Finaljar
        org.codehaus.groovygroovy3.0.19jar3.0.20
        org.codehaus.groovygroovy-ant3.0.19jar3.0.20
        org.codehaus.groovygroovy-astbuilder3.0.19jar3.0.20
        org.codehaus.groovygroovy-bsf3.0.19jar3.0.20
        org.codehaus.groovygroovy-cli-commons3.0.19jar3.0.20
        org.codehaus.groovygroovy-cli-picocli3.0.19jar3.0.20
        org.codehaus.groovygroovy-console3.0.19jar3.0.20
        org.codehaus.groovygroovy-datetime3.0.19jar3.0.20
        org.codehaus.groovygroovy-dateutil3.0.19jar3.0.20
        org.codehaus.groovygroovy-docgenerator3.0.19jar3.0.20
        org.codehaus.groovygroovy-groovydoc3.0.19jar3.0.20
        org.codehaus.groovygroovy-groovysh3.0.19jar3.0.20
        org.codehaus.groovygroovy-jaxb3.0.19jar3.0.20
        org.codehaus.groovygroovy-jmx3.0.19jar3.0.20
        org.codehaus.groovygroovy-json3.0.19jar3.0.20
        org.codehaus.groovygroovy-jsr2233.0.19jar3.0.20
        org.codehaus.groovygroovy-macro3.0.19jar3.0.20
        org.codehaus.groovygroovy-nio3.0.19jar3.0.20
        org.codehaus.groovygroovy-servlet3.0.19jar3.0.20
        org.codehaus.groovygroovy-sql3.0.19jar3.0.20
        org.codehaus.groovygroovy-swing3.0.19jar3.0.20
        org.codehaus.groovygroovy-templates3.0.19jar3.0.20
        org.codehaus.groovygroovy-test3.0.19jar3.0.20
        org.codehaus.groovygroovy-test-junit53.0.19jar3.0.20
        org.codehaus.groovygroovy-testng3.0.19jar3.0.20
        org.codehaus.groovygroovy-xml3.0.19jar3.0.20
        org.codehaus.groovygroovy-yaml3.0.19jar3.0.20
        org.codehaus.janinocommons-compiler3.1.10jar3.1.12
        org.codehaus.janinocommons-compiler-jdk3.1.10jar3.1.12
        org.codehaus.janinojanino3.1.10jar3.1.12
        org.eclipse.jettyapache-jsp9.4.53.v20231009jar11.0.20
        org.eclipse.jettyapache-jstl9.4.53.v20231009jar11.0.0
        org.eclipse.jettyinfinispan-common9.4.53.v20231009jar11.0.20
        org.eclipse.jettyinfinispan-embedded-query9.4.53.v20231009jar11.0.20
        org.eclipse.jettyinfinispan-remote-query9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-alpn-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-conscrypt-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-conscrypt-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-java-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-java-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-alpn-openjdk8-client9.4.53.v20231009jar
        org.eclipse.jettyjetty-alpn-openjdk8-server9.4.53.v20231009jar
        org.eclipse.jettyjetty-alpn-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-annotations9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-ant9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-client9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-continuation9.4.53.v20231009jar
        org.eclipse.jettyjetty-deploy9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-distribution9.4.53.v20231009zip11.0.0.beta1
        org.eclipse.jettyjetty-hazelcast9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-home9.4.53.v20231009zip12.0.6
        org.eclipse.jettyjetty-http9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-http-spi9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-io9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-jaas9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-jaspi9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-jmx9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-jndi9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-nosql9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-openid9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-plus9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-proxy9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-quickstart9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-reactive-httpclient1.1.15jar4.0.3
        org.eclipse.jettyjetty-rewrite9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-security9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-server9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-servlet9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-servlets9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-spring9.4.53.v20231009jar11.0.0.beta3
        org.eclipse.jettyjetty-unixsocket9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-util9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-util-ajax9.4.53.v20231009jar12.0.6
        org.eclipse.jettyjetty-webapp9.4.53.v20231009jar11.0.20
        org.eclipse.jettyjetty-xml9.4.53.v20231009jar12.0.6
        org.eclipse.jetty.fcgifcgi-client9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.fcgifcgi-server9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.53.v20231009jar12.0.6
        org.eclipse.jetty.http2http2-client9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-common9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-hpack9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-http-client-transport9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.http2http2-server9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.53.v20231009jar12.0.6
        org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158jar
        org.eclipse.jetty.osgijetty-httpservice9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.osgijetty-osgi-boot9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.53.v20231009jar11.0.20
        org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.53.v20231009jar
        org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-api9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-client9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-common9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-server9.4.53.v20231009jar
        org.eclipse.jetty.websocketwebsocket-servlet9.4.53.v20231009jar11.0.20
        org.ehcacheehcache3.10.8jar
        org.ehcacheehcache-clustered3.10.8jar
        org.ehcacheehcache-transactions3.10.8jar
        org.elasticsearchelasticsearch7.17.15jar7.17.188.12.1
        org.elasticsearch.clientelasticsearch-rest-client7.17.15jar7.17.188.12.1
        org.elasticsearch.clientelasticsearch-rest-client-sniffer7.17.15jar7.17.188.12.1
        org.elasticsearch.clientelasticsearch-rest-high-level-client7.17.15jar7.17.188.0.0-alpha2
        org.elasticsearch.clienttransport7.17.15jar7.17.18
        org.elasticsearch.distribution.integ-test-zipelasticsearch7.17.15zip7.17.188.12.1
        org.elasticsearch.plugintransport-netty4-client7.17.15jar7.17.18
        org.firebirdsql.jdbcjaybird4.0.9.java8jar4.0.9.java114.0.10.java115.0.3.java11
        org.firebirdsql.jdbcjaybird-jdk184.0.9.java8jar4.0.10.java8
        org.flywaydbflyway-core8.5.13jar10.7.2
        org.flywaydbflyway-firebird8.5.13jar10.7.2
        org.flywaydbflyway-mysql8.5.13jar10.7.2
        org.flywaydbflyway-sqlserver8.5.13jar10.7.2
        org.freemarkerfreemarker2.3.32jar
        org.glassfishjakarta.el3.0.4jar5.0.0-M1
        org.glassfish.jaxbcodemodel2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbcodemodel-annotation-compiler2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbjaxb-jxc2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbjaxb-runtime2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbjaxb-xjc2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbtxw22.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbtxwc22.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jaxbxsom2.3.9jar2.4.0-b180830.04384.0.4
        org.glassfish.jersey.bundlesjaxrs-ri2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-apache-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-grizzly-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-helidon-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-jdk-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-jetty-connector2.35jar2.413.1.5
        org.glassfish.jersey.connectorsjersey-netty-connector2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-grizzly2-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-jdk-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-jetty-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-jetty-servlet2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-netty-http2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-servlet2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-servlet-core2.35jar2.413.1.5
        org.glassfish.jersey.containersjersey-container-simple-http2.35jar2.413.1.5
        org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35jar2.413.1.5
        org.glassfish.jersey.corejersey-client2.35jar2.413.1.5
        org.glassfish.jersey.corejersey-common2.35jar2.413.1.5
        org.glassfish.jersey.corejersey-server2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-bean-validation2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-declarative-linking2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-entity-filtering2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-metainf-services2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-bean-validation2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-freemarker2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-jsp2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-mvc-mustache2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-proxy-client2.35jar2.413.1.5
        org.glassfish.jersey.extjersey-servlet-portability2.35jar2.413.0.0-M6
        org.glassfish.jersey.extjersey-spring42.35jar2.413.0.0-M6
        org.glassfish.jersey.extjersey-spring52.35jar2.413.0.0-M6
        org.glassfish.jersey.extjersey-wadl-doclet2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35jar2.413.1.5
        org.glassfish.jersey.ext.cdijersey-weld2-se2.35jar2.413.1.5
        org.glassfish.jersey.ext.microprofilejersey-mp-config2.35jar2.413.1.5
        org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35jar2.413.1.5
        org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35jar2.413.1.5
        org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35jar2.413.1.5
        org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35jar2.413.1.5
        org.glassfish.jersey.injectjersey-cdi2-se2.35jar2.413.1.5
        org.glassfish.jersey.injectjersey-hk22.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-jaxb2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-binding2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-jackson2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-jettison2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-json-processing2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-kryo2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-moxy2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-multipart2.35jar2.413.1.5
        org.glassfish.jersey.mediajersey-media-sse2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth1-client2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth1-server2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth1-signature2.35jar2.413.1.5
        org.glassfish.jersey.securityoauth2-client2.35jar2.413.1.5
        org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35jar2.413.1.5
        org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35pom2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35jar2.413.1.5
        org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35jar2.413.1.5
        org.glassfish.webjakarta.servlet.jsp.jstl1.2.6jar3.0.1
        org.hamcresthamcrest2.2jar
        org.hamcresthamcrest-core2.2jar
        org.hamcresthamcrest-library2.2jar
        org.hibernatehibernate-c3p05.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-core5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-ehcache5.6.15.Finaljar6.0.0.Alpha7
        org.hibernatehibernate-entitymanager5.6.15.Finaljar6.0.0.Alpha7
        org.hibernatehibernate-envers5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-hikaricp5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-java85.6.15.Finaljar6.0.0.Alpha7
        org.hibernatehibernate-jcache5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-jpamodelgen5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-micrometer5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-proxool5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-spatial5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-testing5.6.15.Finaljar6.4.4.Final
        org.hibernatehibernate-vibur5.6.15.Finaljar6.4.4.Final
        org.hibernate.validatorhibernate-validator6.2.5.Finaljar8.0.1.Final
        org.hibernate.validatorhibernate-validator-annotation-processor6.2.5.Finaljar8.0.1.Final
        org.hsqldbhsqldb2.5.2jar2.7.2
        org.infinispaninfinispan-anchored-keys13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-jdbc13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-jpa13.0.20.Finaljar13.0.21.Final14.0.0.Dev02
        org.infinispaninfinispan-cachestore-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-rocksdb13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cachestore-sql13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cdi-common13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cdi-embedded13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cdi-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-checkstyle13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cli-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-client-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-client-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-cloudevents-integration13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-clustered-counter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-clustered-lock13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-commons-test13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-component-annotations13.0.20.Finalprovidedjar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-component-processor13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-console0.15.5.Finaljar15.0.0.Dev05
        org.infinispaninfinispan-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-extended-statistics13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-hibernate-cache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-hibernate-cache-spi13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-hibernate-cache-v5313.0.20.Finaljar13.0.21.Final14.0.0.Dev02
        org.infinispaninfinispan-jboss-marshalling13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-jcache13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-jcache-commons13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-jcache-remote13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-key-value-store-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-marshaller-kryo13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-marshaller-kryo-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-marshaller-protostuff13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-marshaller-protostuff-bundle13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-multimap13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-objectfilter13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-query13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-query-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-query-dsl13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-remote-query-client13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-remote-query-server13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-scripting13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-hotrod13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-memcached13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-rest13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-router13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-runtime13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-testdriver-core13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-testdriver-junit413.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-server-testdriver-junit513.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-spring-boot-starter-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring-boot-starter-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring5-common13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring5-embedded13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-spring5-remote13.0.20.Finaljar13.0.21.Final14.0.24.Final
        org.infinispaninfinispan-tasks13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-tasks-api13.0.20.Finaljar13.0.21.Final15.0.0.Dev08
        org.infinispaninfinispan-tools13.0.20.Finaljar15.0.0.Dev08
        org.infinispan.protostreamprotostream4.4.4.Finaljar4.6.5.Final14.0.0.CR2
        org.infinispan.protostreamprotostream-processor4.4.4.Finalprovidedjar4.6.5.Final14.0.0.CR2
        org.infinispan.protostreamprotostream-types4.4.4.Finaljar4.6.5.Final14.0.0.CR2
        org.influxdbinfluxdb-java2.22jar2.24
        org.jboss.loggingjboss-logging3.4.3.Finaljar3.5.3.Final
        org.jdomjdom22.0.6.1jar
        org.jetbrains.kotlinkotlin-compiler1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-compiler-embeddable1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-daemon-client1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-main-kts1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-osgi-bundle1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-reflect1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-script-runtime1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-script-util1.6.21jar1.8.22
        org.jetbrains.kotlinkotlin-scripting-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-scripting-ide-services1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-scripting-jvm1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-jdk71.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-jdk81.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-stdlib-js1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-annotations-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-common1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-js1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-junit1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-junit51.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinkotlin-test-testng1.6.21jar1.9.222.0.0-Beta3
        org.jetbrains.kotlinxkotlinx-coroutines-android1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-core1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-debug1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-guava1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-javafx1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-jdk81.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-jdk91.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-play-services1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-reactive1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-reactor1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-rx21.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-rx31.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-swing1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-test1.6.4jar1.8.0-RC2
        org.jetbrains.kotlinxkotlinx-coroutines-test-jvm1.6.4jar1.8.0-RC2
        org.jolokiajolokia-core1.7.2jar
        org.jooqjooq3.14.16jar3.19.3
        org.jooqjooq-codegen3.14.16jar3.19.3
        org.jooqjooq-kotlin3.14.16jar3.19.3
        org.jooqjooq-meta3.14.16jar3.19.3
        org.junit.jupiterjunit-jupiter5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-api5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-engine5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-migrationsupport5.8.2jar5.10.2
        org.junit.jupiterjunit-jupiter-params5.8.2jar5.10.2
        org.junit.platformjunit-platform-commons1.8.2jar1.10.2
        org.junit.platformjunit-platform-console1.8.2jar1.10.2
        org.junit.platformjunit-platform-engine1.8.2jar1.10.2
        org.junit.platformjunit-platform-jfr1.8.2jar1.10.2
        org.junit.platformjunit-platform-launcher1.8.2jar1.10.2
        org.junit.platformjunit-platform-reporting1.8.2jar1.10.2
        org.junit.platformjunit-platform-runner1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite-api1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite-commons1.8.2jar1.10.2
        org.junit.platformjunit-platform-suite-engine1.8.2jar1.10.2
        org.junit.platformjunit-platform-testkit1.8.2jar1.10.2
        org.junit.vintagejunit-vintage-engine5.8.2jar5.10.2
        org.liquibaseliquibase-cdi4.9.1jar4.26.0
        org.liquibaseliquibase-core4.9.1jar4.26.0
        org.mariadbr2dbc-mariadb1.1.2jar1.1.4
        org.mariadb.jdbcmariadb-java-client3.1.4jar3.3.2
        org.messaginghubpooled-jms1.2.6jar3.1.5
        org.mockitomockito-android4.5.1jar4.11.05.10.0
        org.mockitomockito-core4.5.1jar4.11.05.10.0
        org.mockitomockito-errorprone4.5.1jar4.11.05.10.0
        org.mockitomockito-inline4.5.1jar4.11.05.2.0
        org.mockitomockito-junit-jupiter4.5.1jar4.11.05.10.0
        org.mockitomockito-proxy4.5.1jar4.11.05.10.0
        org.mongodbbson4.6.1jar4.11.15.0.0-beta0
        org.mongodbbson-record-codec4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-core4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-legacy4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-reactivestreams4.6.1jar4.11.15.0.0-beta0
        org.mongodbmongodb-driver-sync4.6.1jar4.11.15.0.0-beta0
        org.mortbay.jasperapache-el9.0.52jar9.0.83.110.1.16
        org.mybatismybatis3.5.15jar
        org.mybatismybatis-spring2.1.2jar3.0.3
        org.mybatis.dynamic-sqlmybatis-dynamic-sql1.5.0jar
        org.mybatis.scriptingmybatis-freemarker1.2.4jar
        org.mybatis.scriptingmybatis-thymeleaf1.0.4jar
        org.mybatis.scriptingmybatis-velocity2.1.2jar
        org.mybatis.spring.bootmybatis-spring-boot-autoconfigure2.3.2jar3.0.3
        org.mybatis.spring.bootmybatis-spring-boot-starter2.3.2jar3.0.3
        org.neo4j.driverneo4j-java-driver4.4.12jar4.4.135.17.0
        org.postgresqlpostgresql42.3.8jar42.7.1
        org.postgresqlr2dbc-postgresql0.9.2.RELEASEjar0.9.3.RELEASE1.0.4.RELEASE
        org.projectlomboklombok1.18.30jar
        org.quartz-schedulerquartz2.3.2jar2.5.0-rc1
        org.quartz-schedulerquartz-jobs2.3.2jar2.5.0-rc1
        org.reactivestreamsreactive-streams1.0.4jar
        org.seleniumhq.seleniumhtmlunit-driver3.61.0jar3.64.04.13.0
        org.seleniumhq.seleniumlift4.1.4jar4.14.0
        org.seleniumhq.seleniumselenium-api4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-chrome-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-chromium-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-devtools-v1004.1.4jar4.2.2
        org.seleniumhq.seleniumselenium-devtools-v1014.1.4jar4.3.0
        org.seleniumhq.seleniumselenium-devtools-v854.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-devtools-v994.1.4jar
        org.seleniumhq.seleniumselenium-edge-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-firefox-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-grid4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-http4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-ie-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-java4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-json4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-opera-driver4.1.4jar4.4.0
        org.seleniumhq.seleniumselenium-remote-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-safari-driver4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-session-map-jdbc4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-session-map-redis4.1.4jar4.17.0
        org.seleniumhq.seleniumselenium-support4.1.4jar4.17.0
        org.skyscreamerjsonassert1.5.1jar
        org.slf4jjcl-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jjul-to-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jlog4j-over-slf4j1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-api1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-ext1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-jcl1.7.36jar
        org.slf4jslf4j-jdk141.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-log4j121.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-nop1.7.36jar1.8.0-beta42.1.0-alpha1
        org.slf4jslf4j-simple1.7.36jar1.8.0-beta42.1.0-alpha1
        org.springframeworkspring-aop5.3.31jar6.1.3
        org.springframeworkspring-aspects5.3.31jar6.1.3
        org.springframeworkspring-beans5.3.31jar6.1.3
        org.springframeworkspring-context5.3.31jar6.1.3
        org.springframeworkspring-context-indexer5.3.31jar6.1.3
        org.springframeworkspring-context-support5.3.31jar6.1.3
        org.springframeworkspring-core5.3.31jar6.1.3
        org.springframeworkspring-expression5.3.31jar6.1.3
        org.springframeworkspring-instrument5.3.31jar6.1.3
        org.springframeworkspring-jcl5.3.31jar6.1.3
        org.springframeworkspring-jdbc5.3.31jar6.1.3
        org.springframeworkspring-jms5.3.31jar6.1.3
        org.springframeworkspring-messaging5.3.31jar6.1.3
        org.springframeworkspring-orm5.3.31jar6.1.3
        org.springframeworkspring-oxm5.3.31jar6.1.3
        org.springframeworkspring-r2dbc5.3.31jar6.1.3
        org.springframeworkspring-test5.3.31jar6.1.3
        org.springframeworkspring-tx5.3.31jar6.1.3
        org.springframeworkspring-web5.3.31jar6.1.3
        org.springframeworkspring-webflux5.3.31jar6.1.3
        org.springframeworkspring-webmvc5.3.31jar6.1.3
        org.springframeworkspring-websocket5.3.31jar6.1.3
        org.springframework.amqpspring-amqp2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit-junit2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit-stream2.4.17jar3.1.1
        org.springframework.amqpspring-rabbit-test2.4.17jar3.1.1
        org.springframework.batchspring-batch-core4.3.10jar5.1.0
        org.springframework.batchspring-batch-infrastructure4.3.10jar5.1.0
        org.springframework.batchspring-batch-integration4.3.10jar5.1.0
        org.springframework.batchspring-batch-test4.3.10jar5.1.0
        org.springframework.bootspring-boot2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-actuator2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-actuator-autoconfigure2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-autoconfigure2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-autoconfigure-processor2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-buildpack-platform2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-configuration-metadata2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-configuration-processor2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-devtools2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-jarmode-layertools2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-loader2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-loader-tools2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-properties-migrator2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-activemq2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-actuator2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-amqp2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-aop2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-artemis2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-batch2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-cache2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-cassandra2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-cassandra-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-couchbase2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-couchbase-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-elasticsearch2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-jdbc2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-jpa2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-ldap2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-mongodb2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-mongodb-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-neo4j2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-r2dbc2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-redis2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-redis-reactive2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-data-rest2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-freemarker2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-graphql2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-groovy-templates2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-hateoas2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-integration2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jdbc2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jersey2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jetty2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jooq2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-json2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-jta-atomikos2.7.18jar
        org.springframework.bootspring-boot-starter-log4j22.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-logging2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-mail2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-mustache2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-oauth2-client2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-oauth2-resource-server2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-quartz2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-reactor-netty2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-rsocket2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-security2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-test2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-thymeleaf2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-tomcat2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-undertow2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-validation2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-web2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-web-services2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-webflux2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-starter-websocket2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-test2.7.18jar3.3.0-M1
        org.springframework.bootspring-boot-test-autoconfigure2.7.18jar3.3.0-M1
        org.springframework.dataspring-data-cassandra3.4.18jar4.2.2
        org.springframework.dataspring-data-commons2.7.18jar3.2.2
        org.springframework.dataspring-data-couchbase4.4.18jar5.2.2
        org.springframework.dataspring-data-elasticsearch4.4.18jar5.2.2
        org.springframework.dataspring-data-envers2.7.18jar3.2.2
        org.springframework.dataspring-data-geode2.7.18jar3.0.0-M6
        org.springframework.dataspring-data-jdbc2.4.18jar3.2.2
        org.springframework.dataspring-data-jpa2.7.18jar3.2.2
        org.springframework.dataspring-data-keyvalue2.7.18jar3.2.2
        org.springframework.dataspring-data-ldap2.7.18jar3.2.2
        org.springframework.dataspring-data-mongodb3.4.18jar4.2.2
        org.springframework.dataspring-data-neo4j6.3.18jar7.2.2
        org.springframework.dataspring-data-r2dbc1.5.18jar3.2.2
        org.springframework.dataspring-data-redis2.7.18jar3.2.2
        org.springframework.dataspring-data-relational2.4.18jar3.2.2
        org.springframework.dataspring-data-rest-core3.7.18jar4.2.2
        org.springframework.dataspring-data-rest-hal-explorer3.7.18jar4.2.2
        org.springframework.dataspring-data-rest-webmvc3.7.18jar4.2.2
        org.springframework.experimentalspring-aot0.12.2jar
        org.springframework.experimentalspring-native0.12.2jar
        org.springframework.graphqlspring-graphql1.0.6jar1.2.4
        org.springframework.graphqlspring-graphql-test1.0.6jar1.2.4
        org.springframework.hateoasspring-hateoas1.5.6jar2.2.0
        org.springframework.integrationspring-integration-amqp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-core5.5.20jar6.2.1
        org.springframework.integrationspring-integration-event5.5.20jar6.2.1
        org.springframework.integrationspring-integration-feed5.5.20jar6.2.1
        org.springframework.integrationspring-integration-file5.5.20jar6.2.1
        org.springframework.integrationspring-integration-ftp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-gemfire5.5.20jar6.0.0-M5
        org.springframework.integrationspring-integration-groovy5.5.20jar6.2.1
        org.springframework.integrationspring-integration-http5.5.20jar6.2.1
        org.springframework.integrationspring-integration-ip5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jdbc5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jms5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jmx5.5.20jar6.2.1
        org.springframework.integrationspring-integration-jpa5.5.20jar6.2.1
        org.springframework.integrationspring-integration-kafka5.5.20jar6.2.1
        org.springframework.integrationspring-integration-mail5.5.20jar6.2.1
        org.springframework.integrationspring-integration-mongodb5.5.20jar6.2.1
        org.springframework.integrationspring-integration-mqtt5.5.20jar6.2.1
        org.springframework.integrationspring-integration-r2dbc5.5.20jar6.2.1
        org.springframework.integrationspring-integration-redis5.5.20jar6.2.1
        org.springframework.integrationspring-integration-rmi5.5.20jar
        org.springframework.integrationspring-integration-rsocket5.5.20jar6.2.1
        org.springframework.integrationspring-integration-scripting5.5.20jar6.2.1
        org.springframework.integrationspring-integration-security5.5.20jar6.2.1
        org.springframework.integrationspring-integration-sftp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-stomp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-stream5.5.20jar6.2.1
        org.springframework.integrationspring-integration-syslog5.5.20jar6.2.1
        org.springframework.integrationspring-integration-test5.5.20jar6.2.1
        org.springframework.integrationspring-integration-test-support5.5.20jar6.2.1
        org.springframework.integrationspring-integration-webflux5.5.20jar6.2.1
        org.springframework.integrationspring-integration-websocket5.5.20jar6.2.1
        org.springframework.integrationspring-integration-ws5.5.20jar6.2.1
        org.springframework.integrationspring-integration-xml5.5.20jar6.2.1
        org.springframework.integrationspring-integration-xmpp5.5.20jar6.2.1
        org.springframework.integrationspring-integration-zeromq5.5.20jar6.2.1
        org.springframework.integrationspring-integration-zookeeper5.5.20jar6.2.1
        org.springframework.kafkaspring-kafka2.8.11jar2.9.133.1.1
        org.springframework.kafkaspring-kafka-test2.8.11jar2.9.133.1.1
        org.springframework.ldapspring-ldap-core2.4.1jar3.2.1
        org.springframework.ldapspring-ldap-core-tiger2.4.1jar3.0.0-M1
        org.springframework.ldapspring-ldap-ldif-core2.4.1jar3.2.1
        org.springframework.ldapspring-ldap-odm2.4.1jar3.2.1
        org.springframework.ldapspring-ldap-test2.4.1jar3.2.1
        org.springframework.restdocsspring-restdocs-asciidoctor2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-core2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-mockmvc2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-restassured2.0.8.RELEASEjar3.0.1
        org.springframework.restdocsspring-restdocs-webtestclient2.0.8.RELEASEjar3.0.1
        org.springframework.retryspring-retry1.3.4jar2.0.5
        org.springframework.securityspring-security-acl5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-aspects5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-cas5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-config5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-core5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-crypto5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-data5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-ldap5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-messaging5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-client5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-core5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-jose5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-oauth2-resource-server5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-openid5.7.11jar5.8.96.0.0-M1
        org.springframework.securityspring-security-remoting5.7.11jar5.8.9
        org.springframework.securityspring-security-rsocket5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-saml2-service-provider5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-taglibs5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-test5.7.11jar5.8.96.3.0-M1
        org.springframework.securityspring-security-web5.7.11jar5.8.96.3.0-M1
        org.springframework.sessionspring-session-core2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-data-geode2.7.1jar2.7.23.0.0-M5
        org.springframework.sessionspring-session-data-mongodb2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-data-redis2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-hazelcast2.7.4jar3.3.0-M1
        org.springframework.sessionspring-session-jdbc2.7.4jar3.3.0-M1
        org.springframework.wsspring-ws-core3.1.8jar4.0.10
        org.springframework.wsspring-ws-security3.1.8jar4.0.10
        org.springframework.wsspring-ws-support3.1.8jar4.0.10
        org.springframework.wsspring-ws-test3.1.8jar4.0.10
        org.springframework.wsspring-xml3.1.8jar4.0.10
        org.thymeleafthymeleaf3.0.15.RELEASEjar3.1.2.RELEASE
        org.thymeleafthymeleaf-spring53.0.15.RELEASEjar3.1.2.RELEASE
        org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASEjar
        org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.5.RELEASEjar3.1.2.RELEASE
        org.webjarswebjars-locator-core0.50jar0.55
        org.xerialsqlite-jdbc3.36.0.3jar3.45.1.0
        org.xmlunitxmlunit-assertj2.9.1jar
        org.xmlunitxmlunit-assertj32.9.1jar
        org.xmlunitxmlunit-core2.9.1jar
        org.xmlunitxmlunit-legacy2.9.1jar
        org.xmlunitxmlunit-matchers2.9.1jar
        org.xmlunitxmlunit-placeholders2.9.1jar
        org.yamlsnakeyaml1.30jar1.332.2
        redis.clientsjedis3.8.0jar3.10.05.2.0-alpha2
        wsdl4jwsdl4j1.6.3jar
        StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        +

        Dependencies

        +

        This project does not declare any dependencies.

        +

        Dependency Updates

        +

        +

        antlr:antlr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idantlr
        Artifact Idantlr
        Current Version2.7.7
        Scope
        Classifier
        Typejar
        Newer versions20030911 Latest Major
        +

        ch.qos.logback:logback-access

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idch.qos.logback
        Artifact Idlogback-access
        Current Version1.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.2.13 Latest Incremental
        1.3.0-alpha0
        1.3.0-alpha1
        1.3.0-alpha2
        1.3.0-alpha3
        1.3.0-alpha4
        1.3.0-alpha5
        1.3.0-alpha6
        1.3.0-alpha7
        1.3.0-alpha8
        1.3.0-alpha9
        1.3.0-alpha10
        1.3.0-alpha11
        1.3.0-alpha12
        1.3.0-alpha13
        1.3.0-alpha14
        1.3.0-alpha15
        1.3.0-alpha16
        1.3.0-beta0
        1.3.0
        1.3.1
        1.3.2
        1.3.3
        1.3.4
        1.3.5
        1.3.6
        1.3.7
        1.3.8
        1.3.9
        1.3.10
        1.3.11
        1.3.12
        1.3.13
        1.3.14
        1.4.0
        1.4.1
        1.4.2
        1.4.3
        1.4.4
        1.4.5
        1.4.6
        1.4.7
        1.4.8
        1.4.9
        1.4.10
        1.4.11
        1.4.12
        1.4.13
        1.4.14 Latest Minor
        +

        ch.qos.logback:logback-classic

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idch.qos.logback
        Artifact Idlogback-classic
        Current Version1.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.2.13 Latest Incremental
        1.3.0-alpha0
        1.3.0-alpha1
        1.3.0-alpha2
        1.3.0-alpha3
        1.3.0-alpha4
        1.3.0-alpha5
        1.3.0-alpha6
        1.3.0-alpha7
        1.3.0-alpha8
        1.3.0-alpha9
        1.3.0-alpha10
        1.3.0-alpha11
        1.3.0-alpha12
        1.3.0-alpha13
        1.3.0-alpha14
        1.3.0-alpha15
        1.3.0-alpha16
        1.3.0-beta0
        1.3.0
        1.3.1
        1.3.2
        1.3.3
        1.3.4
        1.3.5
        1.3.6
        1.3.7
        1.3.8
        1.3.9
        1.3.10
        1.3.11
        1.3.12
        1.3.13
        1.3.14
        1.4.0
        1.4.1
        1.4.2
        1.4.3
        1.4.4
        1.4.5
        1.4.6
        1.4.7
        1.4.8
        1.4.9
        1.4.10
        1.4.11
        1.4.12
        1.4.13
        1.4.14 Latest Minor
        +

        ch.qos.logback:logback-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idch.qos.logback
        Artifact Idlogback-core
        Current Version1.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.2.13 Latest Incremental
        1.3.0-alpha0
        1.3.0-alpha1
        1.3.0-alpha2
        1.3.0-alpha3
        1.3.0-alpha4
        1.3.0-alpha5
        1.3.0-alpha6
        1.3.0-alpha7
        1.3.0-alpha8
        1.3.0-alpha9
        1.3.0-alpha10
        1.3.0-alpha11
        1.3.0-alpha12
        1.3.0-alpha13
        1.3.0-alpha14
        1.3.0-alpha15
        1.3.0-alpha16
        1.3.0-beta0
        1.3.0
        1.3.1
        1.3.2
        1.3.3
        1.3.4
        1.3.5
        1.3.6
        1.3.7
        1.3.8
        1.3.9
        1.3.10
        1.3.11
        1.3.12
        1.3.13
        1.3.14
        1.4.0
        1.4.1
        1.4.2
        1.4.3
        1.4.4
        1.4.5
        1.4.6
        1.4.7
        1.4.8
        1.4.9
        1.4.10
        1.4.11
        1.4.12
        1.4.13
        1.4.14 Latest Minor
        +

        com.atomikos:transactions-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.atomikos
        Artifact Idtransactions-jdbc
        Current Version4.0.6
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        6.0.0M1
        6.0.0M2
        6.0.0 Latest Major
        +

        com.atomikos:transactions-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.atomikos
        Artifact Idtransactions-jms
        Current Version4.0.6
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        6.0.0M1
        6.0.0M2
        6.0.0 Latest Major
        +

        com.atomikos:transactions-jta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.atomikos
        Artifact Idtransactions-jta
        Current Version4.0.6
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        6.0.0M1
        6.0.0M2
        6.0.0 Latest Major
        +

        com.couchbase.client:java-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.couchbase.client
        Artifact Idjava-client
        Current Version3.3.4
        Scope
        Classifier
        Typejar
        Newer versions3.4.0
        3.4.1
        3.4.2
        3.4.3
        3.4.4
        3.4.5
        3.4.6
        3.4.7
        3.4.8
        3.4.9
        3.4.10
        3.4.11
        3.5.0
        3.5.1
        3.5.2
        3.5.3 Latest Minor
        +

        com.datastax.oss:java-driver-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-core
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-core-shaded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-core-shaded
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-mapper-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-mapper-processor
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-mapper-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-mapper-runtime
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-metrics-micrometer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-metrics-micrometer
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-metrics-microprofile

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-metrics-microprofile
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-query-builder

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-query-builder
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:java-driver-shaded-guava

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-shaded-guava
        Current Version25.1-jre-graal-sub-1
        Scope
        Classifier
        Typejar
        +

        com.datastax.oss:java-driver-test-infra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.datastax.oss
        Artifact Idjava-driver-test-infra
        Current Version4.14.1
        Scope
        Classifier
        Typejar
        Newer versions4.15.0
        4.16.0
        4.17.0 Latest Minor
        +

        com.datastax.oss:native-protocol

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.datastax.oss
        Artifact Idnative-protocol
        Current Version1.5.1
        Scope
        Classifier
        Typejar
        +

        com.fasterxml:classmate

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml
        Artifact Idclassmate
        Current Version1.5.1
        Scope
        Classifier
        Typejar
        Newer versions1.6.0
        1.7.0 Latest Minor
        +

        com.fasterxml.jackson.core:jackson-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.core
        Artifact Idjackson-annotations
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.core:jackson-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.core
        Artifact Idjackson-core
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.core:jackson-databind

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.core
        Artifact Idjackson-databind
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-avro

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-avro
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-cbor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-cbor
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-csv

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-csv
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-ion

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-ion
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-properties

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-properties
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-protobuf
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-smile

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-smile
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-toml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-toml
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-xml
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.dataformat:jackson-dataformat-yaml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.dataformat
        Artifact Idjackson-dataformat-yaml
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-eclipse-collections

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-eclipse-collections
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-guava
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hibernate4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hibernate4
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hibernate5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hibernate5
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hibernate5-jakarta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hibernate5-jakarta
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-hppc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-hppc
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jakarta-jsonp
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jaxrs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jaxrs
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jdk8
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-joda

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-joda
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-joda-money

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-joda-money
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-json-org

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-json-org
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jsr310

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jsr310
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-jsr353

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-jsr353
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.datatype:jackson-datatype-pcollections

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.datatype
        Artifact Idjackson-datatype-pcollections
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-base
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-cbor-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-cbor-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-json-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-smile-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-smile-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-xml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-xml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-yaml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jakarta.rs
        Artifact Idjackson-jakarta-rs-yaml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-base

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-base
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-cbor-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-json-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-smile-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-xml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jaxrs
        Artifact Idjackson-jaxrs-yaml-provider
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-all

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-all
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-annotation-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-annotation-support
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-objects

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-objects
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-retrofit2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-retrofit2
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.jr:jackson-jr-stree

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.jr
        Artifact Idjackson-jr-stree
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-afterburner

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-afterburner
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-blackbird

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-blackbird
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-guice

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-guice
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-jakarta-xmlbind-annotations
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-jaxb-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-jaxb-annotations
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-jsonSchema

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-jsonSchema
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-kotlin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-kotlin
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-mrbean

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-mrbean
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-no-ctor-deser

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-no-ctor-deser
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-osgi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-osgi
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-parameter-names

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-parameter-names
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-paranamer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-paranamer
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_2.11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_2.11
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_2.12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_2.12
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_2.13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_2.13
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.fasterxml.jackson.module:jackson-module-scala_3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.fasterxml.jackson.module
        Artifact Idjackson-module-scala_3
        Current Version2.13.5
        Scope
        Classifier
        Typejar
        Newer versions2.14.0-rc1
        2.14.0-rc2
        2.14.0-rc3
        2.14.0
        2.14.1
        2.14.2
        2.14.3
        2.15.0-rc1
        2.15.0-rc2
        2.15.0-rc3
        2.15.0
        2.15.1
        2.15.2
        2.15.3
        2.16.0-rc1
        2.16.0
        2.16.1 Latest Minor
        +

        com.github.ben-manes.caffeine:caffeine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idcaffeine
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.ben-manes.caffeine:guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idguava
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.ben-manes.caffeine:jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idjcache
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.ben-manes.caffeine:simulator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.github.ben-manes.caffeine
        Artifact Idsimulator
        Current Version2.9.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8 Latest Major
        +

        com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.mxab.thymeleaf.extras
        Artifact Idthymeleaf-extras-data-attribute
        Current Version2.0.1
        Scope
        Classifier
        Typejar
        +

        com.google.appengine:appengine-api-1.0-sdk

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.google.appengine
        Artifact Idappengine-api-1.0-sdk
        Current Version1.9.98
        Scope
        Classifier
        Typejar
        Newer versions2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.0.13
        2.0.14
        2.0.15
        2.0.16
        2.0.17
        2.0.19
        2.0.20
        2.0.21
        2.0.22
        2.0.23
        2.0.24 Latest Major
        +

        com.google.code.gson:gson

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.google.code.gson
        Artifact Idgson
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        Newer versions2.10
        2.10.1 Latest Minor
        +

        com.graphql-java:graphql-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.graphql-java
        Artifact Idgraphql-java
        Current Version18.5
        Scope
        Classifier
        Typejar
        Newer versions18.6
        18.7 Latest Minor
        19.0
        19.1
        19.2
        19.3
        19.4
        19.5
        19.6
        19.7
        19.8
        19.9
        20.0
        20.1
        20.2
        20.3
        20.4
        20.5
        20.6
        20.7
        21.0
        21.1
        21.2
        21.3
        2018-06-04T04-23-07
        2018-06-04T04-37-12
        2018-06-04T05-35-18-e5b324e
        2018-06-04T06-08-37-e5b324e
        2018-06-04T06-12-10-9e01eaa
        2018-06-04T06-18-26-
        2018-06-04T06-32-44-
        2018-06-04T06-49-40-474b470
        2018-06-04T11-42-58-352f0df
        2018-06-04T21-54-46-f3ede8b
        2018-06-04T22-33-28-a93fe6a
        2018-06-04T22-49-40-ad9c92a
        2018-06-05T00-30-43-5e542a9
        2018-06-05T05-02-26-ca6f7fa
        2018-06-12T07-15-39-50a2a13
        2018-06-13T01-43-44-50a2a13
        2018-06-16T10-13-54-f3af483
        2018-06-19T22-08-22-7270438
        2018-06-20T08-24-34-aa92267
        2018-06-21T06-20-30-6984d3b
        2018-06-24T21-45-32-a683b9e
        2018-06-25T00-43-57-d087b4a
        2018-06-25T02-16-07-639aff3
        2018-06-27T00-18-28-1e12da9
        2018-07-04T08-09-58-795c232
        2018-07-11T08-11-14-394ca2a
        2018-07-12T05-33-47-67d6257
        2018-07-12T11-44-24-8d02fc7
        2018-07-13T04-59-30-f72244a
        2018-07-27T07-38-22-2fe7914
        2018-07-27T07-39-10-901db94
        2018-07-27T10-32-58-4d45311
        2018-07-27T10-57-25-ad87047
        2018-07-27T12-45-31-5b44eff
        2018-07-28T00-19-13-5ea18ff
        2018-07-30T00-23-12-bfee885
        2018-07-30T07-03-52-6e1bc02
        2018-08-01T04-10-44-b8b248a
        2018-08-07T03-17-17-653d67f
        2018-08-07T03-26-20-3b4957b
        2018-08-07T05-26-11-b835941
        2018-08-07T05-28-06-4c0c33a
        2018-08-14T07-47-58-fd2454f
        2018-08-16T09-47-33-00a720f
        2018-08-20T08-16-01-b66eade
        2018-08-20T08-17-20-0deb127
        2018-08-20T08-17-43-df4775c
        2018-08-20T09-22-08-f02ee24
        2018-08-20T10-18-26-0adc5f8
        2018-08-23T21-16-30-141b8e4
        2018-08-28T23-42-26-f2f4b1f
        2018-08-28T23-42-56-5c7b9ef
        2018-08-28T23-43-42-d049882
        2018-08-29T06-42-12-24db46a
        2018-08-29T21-42-21-9ed2843
        2018-08-30T23-23-01-6c72aaf
        2018-08-30T23-23-36-0b5f286
        2018-09-03T01-10-42-4485074
        2018-09-08T05-14-26-03482af
        2018-09-08T07-01-35-b55f8a5
        2018-09-09T01-51-54-4c5aca5
        2018-09-12T11-52-41-a96e963
        2018-09-13T04-39-06-fdefa43
        2018-09-13T04-41-01-179fb2e
        2018-09-13T21-08-39-094ff85
        2018-09-13T21-13-06-e45bea8
        2018-09-16T01-27-46-27a6e44
        2018-09-16T01-27-54-eef571c
        2018-09-17T07-40-50-27a6e44
        2018-09-17T07-41-05-efbcf37
        2018-09-17T23-03-05-4363a82
        2018-09-18T21-31-05-de360a0
        2018-09-18T21-34-59-8a5fa0a
        2018-09-23T22-54-34-e6a97f6
        2018-09-27T10-23-49-6b14546
        2018-09-28T03-46-03-b031cfc
        2018-09-30T06-30-11-d526d04
        2018-10-02T04-01-30-af07d80
        2018-10-03T06-38-59-a46d462
        2018-10-03T07-03-19-80342b2
        2018-10-03T07-16-06-0d80418
        2018-10-08T21-25-58-ac9d5c6
        2018-10-09T07-07-16-78a6e4e
        2018-10-10T05-31-53-0466a3d
        2018-10-10T05-39-21-5cda03c
        2018-10-10T20-51-25-232373f
        2018-10-15T22-47-19-99aac04
        2018-10-16T04-11-52-46045a8
        2018-10-17T06-19-11-93e6150
        2018-10-17T09-47-16-c9ea5fc
        2018-10-17T23-50-56-d72f029
        2018-10-18T07-23-00-873bada
        2018-10-18T11-21-20-610a527
        2018-10-24T21-14-21-5e2c94f
        2018-10-24T21-16-55-25378bd
        2018-10-29T04-08-41-1f24856
        2018-10-31T23-42-59-ec9e3af
        2018-11-02T07-27-33-d0923be
        2018-11-03T12-19-57-9a2d4e9
        2018-11-04T23-23-23-129abec
        2018-11-05T04-59-34-c74b23e
        2018-11-05T23-39-38-cfc12d8
        2018-11-06T00-25-39-b0c4c3a
        2018-11-06T00-28-15-ec46cb6
        2018-11-07T03-10-42-5f13464
        2018-11-10T08-58-30-1e95abd
        2018-11-10T09-39-09-1f6095c
        2018-11-11T09-23-20-3dcabef
        2018-11-12T02-07-25-6ddb87f
        2018-11-15T21-34-13-6aa96be-ignored-chars
        2018-11-15T21-34-14-7110576-ignored-chars
        2018-11-16T06-01-41-51c05da-ignored-chars
        2018-11-16T06-01-54-efdaa48-ignored-chars
        2018-11-23T05-36-03-4ec08db
        2018-11-23T06-25-41-8885cd7
        2018-11-23T06-31-20-93e0f57
        2018-11-25T22-27-06-516a0c0
        2018-11-27T19-56-11-4dc1e0c
        2018-11-28T07-49-46-b808a72
        2018-11-28T08-13-20-3ada93e
        2018-12-01T05-52-33-9ba3c0e
        2018-12-02T00-31-14-9340660
        2018-12-02T00-56-57-305860d
        2018-12-02T00-57-27-28e493d
        2018-12-02T06-51-22-11cfd04
        2018-12-02T22-14-34-9e39066
        2018-12-03T06-08-55-17933ec
        2018-12-03T21-48-15-b292ab6
        2018-12-05T06-30-06-08a8613
        2018-12-07T11-12-28-9a3c8e8
        2018-12-12T01-03-50-8c7555b
        2018-12-15T05-16-49-88447e1
        2018-12-15T05-18-06-44627e4
        2018-12-20T04-16-45-68c7660
        2018-12-20T04-30-44-18a4425
        2018-12-20T04-32-18-c1600b6
        2018-12-20T05-49-26-50fe7e0
        2018-12-20T08-18-59-8e766d1
        2018-12-21T20-58-21-f24510d
        2018-12-21T21-00-05-9a6abf2
        2018-12-27T23-19-05-67fa4d9
        2018-12-28T20-03-39-0d707e9
        2018-12-29T10-59-26-1c3efb3
        2018-12-29T11-23-37-f0927ca
        2018-12-29T11-25-17-1648f54
        2018-12-29T11-37-31-7b494d1
        2018-12-29T18-59-16-f40ec83
        2018-12-29T20-24-09-8cc00d2
        2018-12-29T21-18-13-65a2c1d
        2018-12-29T21-26-21-e889103
        2018-12-29T22-10-43-33fcbc9
        2018-12-29T22-19-16-b85e315
        2018-12-29T22-55-27-8229b75
        2018-12-30T04-49-43-b422b88
        2019-01-01T05-12-10-d7fdfed
        2019-01-01T05-14-41-147d2be
        2019-01-02T07-00-24-b2bcb40
        2019-01-03T03-56-42-93f1c2f
        2019-01-03T22-57-19-e75b425
        2019-01-04T02-53-37-38a8606
        2019-01-04T03-07-40-a61f4ee
        2019-01-08T03-54-43-27471f7
        2019-01-08T05-36-31-8aaada8
        2019-01-08T05-54-26-5ecf32d
        2019-01-09T03-01-00-2790caa
        2019-01-10T02-59-04-828bf5c
        2019-01-10T22-02-11-9d62329
        2019-01-10T23-02-15-e7b431a
        2019-01-13T21-59-35-d037062
        2019-01-14T04-17-45-64a3c82
        2019-01-14T06-41-16-ead6ec2
        2019-01-14T07-14-22-fb0fa63
        2019-01-14T22-57-55-82be22b
        2019-01-15T02-21-27-1dfebed
        2019-01-15T23-05-22-e916b02
        2019-01-17T02-23-57-ecf8a08
        2019-01-18T05-18-40-0f5a890
        2019-01-18T07-01-10-c4bcd3a
        2019-01-22T00-33-57-c967dac
        2019-01-22T01-01-11-41d67d7
        2019-01-29T03-32-34-3d271c3
        2019-01-30T23-39-33-803f5cb
        2019-01-31T22-07-02-5a8b1fd
        2019-01-31T22-16-02-fc21117
        2019-01-31T22-31-13-065791a
        2019-01-31T22-35-43-b807e80
        2019-02-06T00-46-18-1ce5113
        2019-02-06T23-32-55-d73dacf
        2019-02-06T23-38-59-5f8c5bd
        2019-02-07T02-30-53-e310dc3
        2019-02-13T17-42-01-858250e
        2019-02-15T22-43-48-1231dde
        2019-02-18T02-52-52-13eb79a
        2019-02-20T00-59-31-9356c3d
        2019-02-28T01-17-35-b2cc1c2
        2019-03-05T02-16-05-6df6640
        2019-03-05T02-23-47-f40315b
        2019-03-07T03-51-32-45bf5af
        2019-03-07T04-21-43-cf62a7a
        2019-03-07T04-34-55-809a980
        2019-03-10T22-41-06-9808185
        2019-03-11T03-25-33-b3c91e8
        2019-03-11T03-25-55-fc95640
        2019-03-11T03-56-07-7f6f32b
        2019-03-11T03-58-13-4123998
        2019-03-11T04-12-00-65dea85
        2019-03-11T22-39-51-03dc939
        2019-03-11T22-40-03-cf1e838
        2019-03-11T22-42-37-93b7b58
        2019-03-11T22-46-27-52a7b6e
        2019-03-12T01-04-49-36b1c03
        2019-03-13T23-23-44-ef9d07d
        2019-03-14T00-26-07-5568795
        2019-03-14T03-40-10-806cfe7
        2019-03-15T01-33-39-648b896
        2019-03-15T01-33-47-61d57a62
        2019-03-15T05-03-21-75fb184
        2019-03-15T05-03-30-4d2c0d53
        2019-03-15T05-09-19-cbcee57
        2019-03-15T05-09-35-519fb887
        2019-03-15T05-33-44-d008832
        2019-03-19T00-28-22-88ffeb5
        2019-03-19T00-30-59-070c3a0
        2019-03-20T02-17-59-e1e7997
        2019-03-20T05-29-23-55f1989
        2019-03-20T05-29-55-cdd0cbc
        2019-03-22T02-07-23-a35079e
        2019-03-22T05-12-51-10376ba
        2019-03-25T02-33-40-0759b8d
        2019-03-25T23-57-28-8ba2d1d
        2019-04-03T06-16-20-800ea0d
        2019-04-08T02-06-59-636f7b5
        2019-04-08T08-27-21-a8a273f
        2019-04-09T05-25-48-8bae13f
        2019-04-09T05-29-53-bd9240c
        2019-04-30T06-16-13-21dff06
        2019-04-30T09-15-46-9214b60
        2019-05-01T03-50-43-fccc0c7
        2019-05-08T00-35-46-439e342
        2019-05-08T02-44-45-b370703
        2019-05-08T02-56-27-cca4316
        2019-05-14T05-01-24-4fd3721
        2019-05-14T05-11-27-400d008
        2019-05-15T02-49-32-f210154
        2019-05-20T06-48-36-6211b41
        2019-05-27T00-36-13-3a76c4a
        2019-05-27T04-13-44-5373f96
        2019-06-02T22-40-24-fcf767d
        2019-06-02T22-45-30-ca06d0e
        2019-06-02T22-56-37-9a61bfe
        2019-06-02T22-59-08-c73f438
        2019-06-03T06-53-20-dca93a9
        2019-06-07T06-51-35-dbd4e5c
        2019-06-11T03-20-45-0a2bd30
        2019-06-11T23-47-53-e00b023
        2019-06-12T00-11-29-b63be73
        2019-06-12T00-15-04-812b16c
        2019-06-12T00-38-53-8b078c6
        2019-06-12T00-39-55-a79e385
        2019-06-12T01-22-00-6020f87
        2019-06-12T01-25-50-0fec4be
        2019-06-12T01-37-10-19c6d0e
        2019-06-12T01-52-32-821241d
        2019-06-12T02-31-14-25c8232
        2019-06-12T04-51-56-e994f41
        2019-06-30T23-27-16-d762310
        2019-07-01T00-55-49-7d393f2
        2019-07-13T23-07-14-8c71e18
        2019-07-15T04-01-33-505aa81
        2019-07-15T07-36-13-5761d24
        2019-07-16T03-12-18-3cbc1ad
        2019-07-22T04-16-08-a7fbf74
        2019-07-22T04-17-57-f8658f2
        2019-07-22T04-25-03-527c587
        2019-07-24T03-34-24-2e1e989
        2019-07-31T05-09-08-4cadb88
        2019-07-31T05-58-03-755f534
        2019-08-01T04-03-44-e9b53f6
        2019-08-02T04-53-20-6063e7e
        2019-08-05T08-05-20-1a9005b
        2019-08-05T23-30-46-c454ba2
        2019-08-12T01-44-36-bf793cd
        2019-08-19T04-09-16-346d65a
        2019-08-20T01-08-54-018b57c
        2019-08-21T00-49-42-2e990d1
        2019-08-21T21-45-38-376b03f
        2019-08-22T10-09-42-a6c4461
        2019-08-22T10-31-28-7ab93b9
        2019-08-22T10-35-04-37f3ae0
        2019-08-22T10-39-43-a6c4461
        2019-08-27T06-31-52-a897adc
        2019-08-28T11-47-05-b9487a9
        2019-09-03T10-51-46-6c01c80
        2019-09-03T10-52-49-bfb284b
        2019-09-07T05-58-28-e5a610f
        2019-09-07T08-04-35-735ce06
        2019-09-07T08-05-59-ac5bc70
        2019-09-07T08-08-53-173312e
        2019-09-19T04-42-21-1ea2ed2
        2019-09-19T06-25-59-5c242a1
        2019-09-22T22-20-34-9e83320
        2019-10-08T22-47-44-e938ab4
        2019-10-16T01-41-26-24f5233
        2019-10-20T21-46-20-a0a5d63
        2019-10-20T22-57-19-d6296e0
        2019-10-21T00-35-45-a74776c
        2019-10-24T23-50-27-97bffda
        2019-10-25T04-33-32-40db9de
        2019-10-25T08-51-57-a634053
        2019-10-31T04-37-48-0919e71
        2019-11-06T22-52-38-81c2a0f
        2019-11-07T04-06-09-70d9412
        2019-11-19T08-52-32-b46beb9
        2019-12-09T21-46-06-1b79628
        2019-12-09T21-46-27-74aed1a
        2019-12-30T22-55-41-9417e85
        2019-12-30T23-36-38-9e904ca
        2019-12-31T02-25-35-a83995a
        2020-01-03T02-30-05-b8be7d1
        2020-01-03T02-30-51-fb97f3e
        2020-01-05T23-01-12-2ba4a8b
        2020-01-08T08-53-38-a2dcfd6
        2020-01-09T05-33-37-df2835b
        2020-01-13T02-25-12-b623055
        2020-01-13T03-23-46-bcdc138
        2020-01-13T03-38-11-52de81a
        2020-01-13T06-33-52-50c242d
        2020-01-14T00-59-12-593322d
        2020-01-14T02-17-18-b5692e4
        2020-01-14T02-57-52-8fe5e53
        2020-01-14T02-58-58-f430282
        2020-01-14T05-48-31-952f075
        2020-01-14T06-42-43-bef3ac2
        2020-01-14T06-45-04-f40e454
        2020-01-14T23-35-06-d42516c
        2020-01-16T00-18-31-4cf3bdd
        2020-01-16T01-18-01-fd13faf
        2020-01-16T23-47-31-4533d01
        2020-01-16T23-48-44-eb6755b
        2020-01-16T23-58-55-fd9ce3a
        2020-01-17T00-14-43-8a58c25
        2020-01-17T00-41-05-5d4d25f
        2020-01-17T00-44-53-21cdd1d
        2020-01-17T00-46-52-8b78178
        2020-01-17T02-41-10-578985f
        2020-01-24T03-11-44-8a5fe91
        2020-01-29T00-34-54-44d9c56
        2020-01-29T23-51-37-f82b53c
        2020-02-03T01-49-24-d4f9b63
        2020-02-04T03-00-21-0a40ca4
        2020-02-06T00-24-40-5b511b8
        2020-02-09T23-23-33-8f335b3
        2020-02-10T04-57-01-e33c252
        2020-02-10T23-53-32-cfd210b
        2020-02-12T22-54-17-101dc6c
        2020-02-29T00-26-15-cf90d4a
        2020-02-29T01-57-30-987fd78
        2020-04-01T09-48-46-c98ebf7
        2020-04-04T07-05-23-9eae9c1
        2020-04-29T07-25-05-1a7c11c
        2020-05-07T00-47-53-9f8cc8e
        2020-05-08T01-07-05-c8de10e
        2020-05-19T06-33-01-57ce5cf
        2020-05-19T23-15-09-be48433
        2020-05-19T23-56-49-f409b66
        2020-05-20T03-21-18-21d1479
        2020-05-20T06-07-21-2e391c1
        2020-05-20T06-36-40-2a443b4
        2020-05-20T06-55-13-453773f
        2020-05-20T07-22-07-0b49de6
        2020-05-20T23-03-10-d9d29d9
        2020-05-20T23-17-21-bbb92ac
        2020-05-20T23-42-54-8f4cd45
        2020-05-21T05-06-09-4e43ef7
        2020-05-21T05-19-49-bdc958e
        2020-05-21T05-21-25-427f493
        2020-05-21T05-53-50-341e22c
        2020-05-21T07-38-42-2acb557
        2020-05-21T08-33-51-0b611f2
        2020-05-21T10-50-06-0a18992
        2020-05-21T23-09-51-9eb260e
        2020-05-22T05-23-36-4fe702b
        2020-05-22T05-46-34-000eb52
        2020-05-24T06-42-08-c508ac3
        2020-05-25T00-16-35-ebd15e0
        2020-05-25T00-18-12-74b4855
        2020-05-26T01-36-28-7770701
        2020-05-26T04-31-46-81d3ce4
        2020-05-27T11-37-07-bb47f29
        2020-05-28T00-32-38-497d2ac
        2020-05-28T02-17-41-bc29b5f
        2020-05-28T05-56-25-f328040
        2020-05-29T04-10-05-3dfbf01
        2020-06-05T10-44-09-eff6106
        2020-06-07T01-00-15-98bb45a
        2020-06-07T01-08-08-a9f7932
        2020-06-07T01-09-40-d94eacc
        2020-06-16T23-03-22-403a837
        2020-06-19T06-05-35-10eeacc
        2020-06-22T08-53-48-3101f48
        2020-06-22T09-12-11-a0d327d
        2020-06-22T09-38-54-c40fc1d
        2020-06-29T07-38-53-4a0a7af
        2020-06-30T22-36-45-ce7fd42
        2020-07-03T00-47-06-d3032e7
        2020-07-03T01-10-37-bb87d8f
        2020-08-24T06-09-06-d3b6af0
        2020-08-25T03-42-48-443390b
        2020-08-25T04-35-08-bab2a91
        2020-08-25T04-49-03-31f3d3f
        2020-08-25T05-10-41-2ed520e
        2020-08-25T06-42-13-d40046e
        2020-08-25T06-43-04-baeb392
        2020-08-25T06-43-52-1607bdf
        2020-08-25T07-30-29-fd556cc
        2020-08-25T07-31-26-c27a9cd
        2020-08-25T07-36-16-26a012c
        2020-08-25T07-38-57-05deb85
        2020-08-25T08-08-25-8b22a39
        2020-08-25T15-37-52-a7117f8
        2020-08-31T04-32-29-6a56b3a
        2020-09-08T04-55-10-f64f1cd
        2020-09-08T04-55-19-30e680b
        2020-09-08T04-56-12-5c5798e
        2020-09-08T04-56-57-be01c7f
        2020-09-08T04-57-53-264cb12
        2020-09-08T23-57-06-7ee7602
        2020-09-10T23-56-06-6f9b54d
        2020-09-10T23-59-03-dcdea33
        2020-09-13T08-18-38-7fc94c5
        2020-09-13T08-19-45-0d97d9d
        2020-09-13T08-20-40-c3c48a2
        2020-09-13T09-05-14-4b66774
        2020-09-14T23-02-53-a9151d3
        2020-09-14T23-03-24-5ebd3ac
        2020-09-14T23-04-32-61a78fe
        2020-09-17T10-31-42-09111ae
        2020-09-19T01-23-44-97a3073
        2020-09-19T01-24-58-592215d
        2020-09-21T10-25-11-af83f79
        2020-09-21T10-26-13-58daf97
        2020-09-23T01-42-02-53999d6
        2020-10-01T08-02-28-3998b0d
        2020-10-01T08-12-16-06593e2
        2020-10-01T08-12-52-24e4b17
        2020-10-01T08-13-33-6eb4df2
        2020-10-01T08-15-11-6cc1974
        2020-10-01T20-49-20-d2ca93c
        2020-10-01T21-02-05-1852cb7
        2020-10-01T21-06-37-558aeaa
        2020-10-06T07-50-37-7a8e903
        2020-10-09T06-02-11-8e55666
        2020-10-09T06-03-45-4a893b0
        2020-10-15T08-28-25-6af9785
        2020-10-16T05-33-59-df5bbde
        2020-10-20T00-43-22-34f34fe
        2020-10-20T01-20-15-2b4457c
        2020-10-21T10-06-46-49bbbeb
        2020-10-25T05-02-24-a39aec8
        2020-10-27T16-39-54-0de364a
        2020-10-27T17-35-04-0de364a
        2020-11-01T02-27-21-3295066
        2020-11-02T04-11-46-9ba7606
        2020-11-02T04-33-43-dd5d4d8
        2020-11-02T23-55-44-d576991
        2020-11-03T02-03-16-cf89ea3
        2020-11-04T22-40-01-afaa9aa
        2020-11-05T07-48-24-3dd5e02
        2020-11-10T10-26-00-07ca7ee
        2020-11-10T11-49-19-a1c123d
        2020-11-10T22-37-49-c801fd8
        2020-11-11T00-55-26-17f0e27
        2020-11-13T21-13-26-fb86ee6
        2020-11-16T00-00-07-ff3f691
        2020-11-16T00-02-27-3dfeae3
        2020-11-24T02-56-06-432d5f0
        2020-11-24T23-36-57-43668fb
        2020-11-28T08-02-26-b01df74
        2020-11-28T08-17-17-be8025f
        2020-12-09T22-35-43-9803c10
        2020-12-12T02-26-00-5e61bb3
        2020-12-13T07-30-15-d1a4c15
        2020-12-21T21-14-06-a12f84b
        2021-01-27T06-23-16-986ee60
        2021-01-29T11-36-47-b874235
        2021-01-30T04-10-11-59cd870
        2021-01-31T07-23-49-4d37858
        2021-02-02T00-45-04-fcce8632
        2021-02-02T01-21-59-55cccb55
        2021-02-02T01-28-37-13467897
        2021-02-02T01-34-58-8d747c1
        2021-02-02T01-35-37-3bae3c26
        2021-02-02T02-54-22-7c559d8d
        2021-02-02T02-59-50-70c1c921
        2021-02-02T03-06-53-a7c2d205
        2021-02-02T03-08-48-040823c2
        2021-02-02T03-45-35-79a57f67
        2021-02-02T03-49-01-6bf9674d
        2021-02-02T04-19-10-0e6921e1
        2021-02-06T05-29-55-33cd6e60
        2021-02-09T05-22-20-b645925f
        2021-02-10T08-16-57-4dbf45fd
        2021-02-13T02-14-19-a9de9cec
        2021-02-13T23-17-27-86627c27
        2021-02-17T06-17-55-6ffdd2d5
        2021-02-27T05-24-51-419acbb4
        2021-02-28T10-07-29-dbfb40d9
        2021-02-28T11-48-01-dc2cdda7
        2021-03-18T23-19-42-52ebe904
        2021-03-19T00-06-52-e166c255
        2021-03-19T01-12-05-a24cd52a
        2021-03-21T22-31-57-479b7a43
        2021-03-22T20-02-28-3a701a0f
        2021-03-25T09-33-46-e4c16ebb
        2021-03-25T21-09-07-5bc917f7
        2021-03-28T09-04-54-b1b364be
        2021-03-29T04-07-12-b98161f0
        2021-03-29T04-35-54-5e2ceda5
        2021-03-29T04-41-52-39ea068d
        2021-03-29T05-11-02-d63bb6b6
        2021-03-29T05-12-42-e5e8847b
        2021-03-29T05-13-32-fdea5cfc
        2021-03-29T21-50-33-a37cde2a
        2021-03-30T02-09-41-e91c8894
        2021-03-30T02-27-57-dbf4b18b
        2021-03-30T02-57-48-22314931
        2021-04-09T04-37-57-b510f5e6
        2021-04-11T23-40-30-f362d619
        2021-04-11T23-42-01-1d16e703
        2021-04-11T23-42-55-656f4e35
        2021-04-11T23-47-53-93cc5158
        2021-04-19T03-51-46-d783ec7e
        2021-04-27T02-21-11-eb3afc27
        2021-04-28T06-28-49-4d52fd0e
        2021-05-03T08-53-12-8f1ec444
        230521-nf-execution Latest Major
        +

        com.h2database:h2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.h2database
        Artifact Idh2
        Current Version2.1.214
        Scope
        Classifier
        Typejar
        Newer versions2.2.220
        2.2.222
        2.2.224 Latest Minor
        +

        com.hazelcast:hazelcast

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.hazelcast
        Artifact Idhazelcast
        Current Version5.1.7
        Scope
        Classifier
        Typejar
        Newer versions5.2-BETA-1
        5.2.0
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3.0-BETA-1
        5.3.0-BETA-2
        5.3.0
        5.3.1
        5.3.2
        5.3.4
        5.3.5
        5.3.6 Latest Minor
        +

        com.hazelcast:hazelcast-hibernate52

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.hazelcast
        Artifact Idhazelcast-hibernate52
        Current Version2.2.1
        Scope
        Classifier
        Typejar
        +

        com.hazelcast:hazelcast-hibernate53

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.hazelcast
        Artifact Idhazelcast-hibernate53
        Current Version2.2.1
        Scope
        Classifier
        Typejar
        Newer versions2.3.0 Latest Minor
        5.0.0
        5.1.0 Latest Major
        +

        com.hazelcast:hazelcast-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.hazelcast
        Artifact Idhazelcast-spring
        Current Version5.1.7
        Scope
        Classifier
        Typejar
        Newer versions5.2-BETA-1
        5.2.0
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3.0-BETA-1
        5.3.0-BETA-2
        5.3.0
        5.3.1
        5.3.2
        5.3.4
        5.3.5
        5.3.6 Latest Minor
        +

        com.ibm.db2:jcc

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.ibm.db2
        Artifact Idjcc
        Current Version11.5.9.0
        Scope
        Classifier
        Typejar
        +

        com.jayway.jsonpath:json-path

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.jayway.jsonpath
        Artifact Idjson-path
        Current Version2.7.0
        Scope
        Classifier
        Typejar
        Newer versions2.8.0
        2.9.0 Latest Minor
        +

        com.jayway.jsonpath:json-path-assert

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.jayway.jsonpath
        Artifact Idjson-path-assert
        Current Version2.7.0
        Scope
        Classifier
        Typejar
        Newer versions2.8.0
        2.9.0 Latest Minor
        +

        com.microsoft.sqlserver:mssql-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idcom.microsoft.sqlserver
        Artifact Idmssql-jdbc
        Current Version10.2.3.jre8
        Scope
        Classifier
        Typejar
        Newer versions10.2.3.jre11
        10.2.3.jre17 Latest Subincremental
        11.1.0-SNAPSHOT.jre8-preview
        11.1.0-SNAPSHOT.jre11-preview
        11.1.0-SNAPSHOT.jre17-preview
        11.1.0.jre8-preview
        11.1.0.jre11-preview
        11.1.0.jre17-preview
        11.1.1.jre8-preview
        11.1.1.jre11-preview
        11.1.1.jre17-preview
        11.1.1.jre18-preview
        11.1.2.jre8-preview
        11.1.2.jre11-preview
        11.1.2.jre17-preview
        11.1.2.jre18-preview
        11.2.0.jre8
        11.2.0.jre11
        11.2.0.jre17
        11.2.0.jre18
        11.2.1.jre8
        11.2.1.jre11
        11.2.1.jre17
        11.2.1.jre18
        11.2.2.jre8
        11.2.2.jre11
        11.2.2.jre17
        11.2.2.jre18
        11.2.3.jre8
        11.2.3.jre11
        11.2.3.jre17
        11.2.3.jre18
        12.1.0.jre8-preview
        12.1.0.jre11-preview
        12.2.0.jre8
        12.2.0.jre11
        12.3.0.jre8-preview
        12.3.0.jre11-preview
        12.3.0.jre17-preview
        12.3.0.jre20-preview
        12.3.1.jre8-preview
        12.3.1.jre11-preview
        12.4.0.jre8
        12.4.0.jre8-preview
        12.4.0.jre11
        12.4.0.jre11-preview
        12.4.1.jre8
        12.4.1.jre11
        12.4.2.jre8
        12.4.2.jre11
        12.5.0.jre8-preview
        12.5.0.jre11-preview
        12.6.0.jre8
        12.6.0.jre11 Latest Major
        +

        com.mysql:mysql-connector-j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.mysql
        Artifact Idmysql-connector-j
        Current Version8.0.33
        Scope
        Classifier
        Typejar
        Newer versions8.1.0
        8.2.0
        8.3.0 Latest Minor
        +

        com.oracle.database.ha:ons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.ha
        Artifact Idons
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.ha:simplefan

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.ha
        Artifact Idsimplefan
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc11
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc11-production

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc11-production
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc8
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ojdbc8-production

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idojdbc8-production
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:rsi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Idrsi
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ucp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Iducp
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc:ucp11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc
        Artifact Iducp11
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.jdbc.debug:ojdbc11-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc11-observability-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11-observability-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc11_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc11dms_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc11dms_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8-observability-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8-observability-debug
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.jdbc.debug:ojdbc8dms_g

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.jdbc.debug
        Artifact Idojdbc8dms_g
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.nls:orai18n

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.nls
        Artifact Idorai18n
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.observability:dms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Iddms
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.observability:ojdbc11-observability

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc11-observability
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.observability:ojdbc11dms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc11dms
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.observability:ojdbc8-observability

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc8-observability
        Current Version21.5.0.0
        Scope
        Classifier
        Typepom
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.observability:ojdbc8dms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.observability
        Artifact Idojdbc8dms
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.r2dbc:oracle-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.oracle.database.r2dbc
        Artifact Idoracle-r2dbc
        Current Version0.4.0
        Scope
        Classifier
        Typejar
        Newer versions1.0.0
        1.1.0
        1.1.1
        1.2.0 Latest Major
        +

        com.oracle.database.security:oraclepki

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.security
        Artifact Idoraclepki
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.security:osdt_cert

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.security
        Artifact Idosdt_cert
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.security:osdt_core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.security
        Artifact Idosdt_core
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        +

        com.oracle.database.xml:xdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.xml
        Artifact Idxdb
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.oracle.database.xml:xmlparserv2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.oracle.database.xml
        Artifact Idxmlparserv2
        Current Version21.5.0.0
        Scope
        Classifier
        Typejar
        Newer versions21.6.0.0
        21.6.0.0.1
        21.7.0.0
        21.8.0.0
        21.9.0.0
        21.10.0.0
        21.11.0.0 Latest Minor
        23.2.0.0
        23.3.0.23.09 Latest Major
        +

        com.querydsl:querydsl-apt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-apt
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-codegen-utils

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.querydsl
        Artifact Idquerydsl-codegen-utils
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        +

        com.querydsl:querydsl-collections

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-collections
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-core
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-guava
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-hibernate-search

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-hibernate-search
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-jdo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-jdo
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-jpa
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-jpa-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-jpa-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-kotlin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-kotlin
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-kotlin-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-kotlin-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-lucene3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-lucene3
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-lucene4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-lucene4
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-lucene5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-lucene5
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-mongodb
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-scala

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-scala
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-spatial

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-spatial
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql-codegen
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql-spatial

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql-spatial
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.querydsl:querydsl-sql-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.querydsl
        Artifact Idquerydsl-sql-spring
        Current Version5.0.0
        Scope
        Classifier
        Typejar
        Newer versions5.1.0 Latest Minor
        +

        com.rabbitmq:amqp-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.rabbitmq
        Artifact Idamqp-client
        Current Version5.14.3
        Scope
        Classifier
        Typejar
        Newer versions5.15.0
        5.16.0
        5.16.1
        5.17.0
        5.17.1
        5.18.0
        5.19.0
        5.20.0 Latest Minor
        +

        com.rabbitmq:stream-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.rabbitmq
        Artifact Idstream-client
        Current Version0.5.0
        Scope
        Classifier
        Typejar
        Newer versions0.6.0
        0.7.0
        0.8.0
        0.9.0
        0.10.0
        0.11.0
        0.12.0
        0.13.0
        0.14.0
        0.15.0 Latest Minor
        +

        com.samskivert:jmustache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.samskivert
        Artifact Idjmustache
        Current Version1.15
        Scope
        Classifier
        Typejar
        Newer versions1.16 Latest Minor
        +

        com.sendgrid:sendgrid-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.sendgrid
        Artifact Idsendgrid-java
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0
        4.10.1 Latest Minor
        +

        com.squareup.okhttp3:logging-interceptor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idlogging-interceptor
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:mockwebserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idmockwebserver
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okcurl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokcurl
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-brotli

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-brotli
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-dnsoverhttps

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-dnsoverhttps
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-sse

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-sse
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-tls

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-tls
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.squareup.okhttp3:okhttp-urlconnection

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcom.squareup.okhttp3
        Artifact Idokhttp-urlconnection
        Current Version4.9.3
        Scope
        Classifier
        Typejar
        Newer versions4.10.0-RC1
        4.10.0
        4.11.0
        4.12.0 Latest Minor
        5.0.0-alpha.1
        5.0.0-alpha.2
        5.0.0-alpha.3
        5.0.0-alpha.4
        5.0.0-alpha.5
        5.0.0-alpha.6
        5.0.0-alpha.7
        5.0.0-alpha.8
        5.0.0-alpha.9
        5.0.0-alpha.10
        5.0.0-alpha.11
        5.0.0-alpha.12 Latest Major
        +

        com.sun.activation:jakarta.activation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.sun.activation
        Artifact Idjakarta.activation
        Current Version1.2.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-rc1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1 Latest Major
        +

        com.sun.mail:jakarta.mail

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.sun.mail
        Artifact Idjakarta.mail
        Current Version1.6.7
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0-RC4
        2.0.0-RC5
        2.0.0-RC6
        2.0.0
        2.0.1 Latest Major
        +

        com.sun.xml.messaging.saaj:saaj-impl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.sun.xml.messaging.saaj
        Artifact Idsaaj-impl
        Current Version1.5.3
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0
        2.0.1
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        com.unboundid:unboundid-ldapsdk

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idcom.unboundid
        Artifact Idunboundid-ldapsdk
        Current Version6.0.10
        Scope
        Classifier
        Typejar
        Newer versions6.0.11 Latest Incremental
        +

        com.zaxxer:HikariCP

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idcom.zaxxer
        Artifact IdHikariCP
        Current Version4.0.3
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0 Latest Major
        +

        commons-codec:commons-codec

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idcommons-codec
        Artifact Idcommons-codec
        Current Version1.15
        Scope
        Classifier
        Typejar
        Newer versions1.16.0
        1.16.1 Latest Minor
        +

        commons-pool:commons-pool

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcommons-pool
        Artifact Idcommons-pool
        Current Version1.6
        Scope
        Classifier
        Typejar
        +

        de.flapdoodle.embed:de.flapdoodle.embed.mongo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idde.flapdoodle.embed
        Artifact Idde.flapdoodle.embed.mongo
        Current Version3.4.11
        Scope
        Classifier
        Typejar
        Newer versions3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4 Latest Minor
        4.0.0-beta
        4.0.1-beta
        4.0.2-beta
        4.0.3-beta
        4.0.4-beta
        4.0.5-beta
        4.0.6-beta
        4.0.7-beta
        4.0.8-beta
        4.0.9-beta
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.2.0
        4.3.0
        4.3.1
        4.3.2
        4.3.3
        4.4.0
        4.4.1
        4.5.0
        4.5.1
        4.6.0
        4.6.1
        4.6.2
        4.6.3
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.9.0
        4.9.1
        4.9.2
        4.9.3
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1
        4.12.0
        4.12.1
        4.12.2 Latest Major
        +

        io.dropwizard.metrics:metrics-annotation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-annotation
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-caffeine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-caffeine
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-caffeine3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-caffeine3
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-collectd

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-collectd
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-core
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-ehcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-ehcache
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-graphite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-graphite
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-healthchecks

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-healthchecks
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-httpasyncclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-httpasyncclient
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-httpclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-httpclient
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-httpclient5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-httpclient5
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jakarta-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jakarta-servlet
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jakarta-servlet6

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jakarta-servlet6
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jakarta-servlets

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jakarta-servlets
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jcache
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jdbi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jdbi
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jdbi3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jdbi3
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jersey2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jersey2
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jersey3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jersey3
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jersey31

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jersey31
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty10

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty10
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty11

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty11
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty12
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty12-ee10

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty12-ee10
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jetty9

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jetty9
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jmx
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-json
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-jvm
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-log4j2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-log4j2
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-logback

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-logback
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-logback13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-logback13
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-logback14

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-logback14
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-servlet
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.dropwizard.metrics:metrics-servlets

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.dropwizard.metrics
        Artifact Idmetrics-servlets
        Current Version4.2.22
        Scope
        Classifier
        Typejar
        Newer versions4.2.23
        4.2.24
        4.2.25 Latest Incremental
        +

        io.lettuce:lettuce-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.lettuce
        Artifact Idlettuce-core
        Current Version6.1.10.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions6.2.0.RELEASE
        6.2.1.RELEASE
        6.2.2.RELEASE
        6.2.3.RELEASE
        6.2.4.RELEASE
        6.2.5.RELEASE
        6.2.6.RELEASE
        6.2.7.RELEASE
        6.3.0.RELEASE
        6.3.1.RELEASE Latest Minor
        +

        io.micrometer:micrometer-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-core
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-appoptics

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-appoptics
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-atlas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-atlas
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-azure-monitor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-azure-monitor
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-cloudwatch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-cloudwatch
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-cloudwatch2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-cloudwatch2
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-datadog

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-datadog
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-dynatrace

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-dynatrace
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-elastic

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-elastic
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-ganglia

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-ganglia
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-graphite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-graphite
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-health

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-health
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-humio

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-humio
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-influx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-influx
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-jmx
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-kairos

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-kairos
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-new-relic

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-new-relic
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-opentsdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-opentsdb
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-otlp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-otlp
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-prometheus

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-prometheus
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-signalfx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-signalfx
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-stackdriver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-stackdriver
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-statsd

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-statsd
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-registry-wavefront

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-registry-wavefront
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.micrometer:micrometer-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.micrometer
        Artifact Idmicrometer-test
        Current Version1.9.17
        Scope
        Classifier
        Typejar
        Newer versions1.10.0-M1
        1.10.0-M2
        1.10.0-M3
        1.10.0-M4
        1.10.0-M5
        1.10.0-M6
        1.10.0-RC1
        1.10.0
        1.10.1
        1.10.2
        1.10.3
        1.10.4
        1.10.5
        1.10.6
        1.10.7
        1.10.8
        1.10.9
        1.10.10
        1.10.11
        1.10.12
        1.10.13
        1.11.0-M1
        1.11.0-M2
        1.11.0-RC1
        1.11.0
        1.11.1
        1.11.2
        1.11.3
        1.11.4
        1.11.5
        1.11.6
        1.11.7
        1.11.8
        1.12.0-M1
        1.12.0-M2
        1.12.0-M3
        1.12.0-RC1
        1.12.0
        1.12.1
        1.12.2 Latest Minor
        +

        io.netty:netty-all

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-all
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-buffer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-buffer
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-dns

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-dns
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-haproxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-haproxy
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-http
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-http2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-http2
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-memcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-memcache
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-mqtt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-mqtt
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-redis
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-codec-smtp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-smtp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-codec-socks

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-socks
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-stomp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-stomp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-codec-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-codec-xml
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-common
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-dev-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-dev-tools
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-example

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-example
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-handler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-handler
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-handler-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-handler-proxy
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-handler-ssl-ocsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-handler-ssl-ocsp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-resolver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-resolver-dns

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver-dns
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-resolver-dns-classes-macos

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver-dns-classes-macos
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-resolver-dns-native-macos

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-resolver-dns-native-macos
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-tcnative

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-tcnative
        Current Version2.0.61.Final
        Scope
        Classifierlinux-x86_64
        Typejar
        Newer versions2.0.62.Final Latest Incremental
        +

        io.netty:netty-tcnative-boringssl-static

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-tcnative-boringssl-static
        Current Version2.0.61.Final
        Scope
        Classifier
        Typejar
        Newer versions2.0.62.Final Latest Incremental
        +

        io.netty:netty-tcnative-classes

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-tcnative-classes
        Current Version2.0.61.Final
        Scope
        Classifier
        Typejar
        Newer versions2.0.62.Final Latest Incremental
        +

        io.netty:netty-transport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-classes-epoll

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-classes-epoll
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-classes-kqueue

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-classes-kqueue
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-native-epoll

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-native-epoll
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-native-kqueue

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-native-kqueue
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-native-unix-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-native-unix-common
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        +

        io.netty:netty-transport-rxtx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-rxtx
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-sctp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-sctp
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.netty:netty-transport-udt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.netty
        Artifact Idnetty-transport-udt
        Current Version4.1.101.Final
        Scope
        Classifier
        Typejar
        Newer versions4.1.102.Final
        4.1.103.Final
        4.1.104.Final
        4.1.105.Final
        4.1.106.Final Latest Incremental
        5.0.0.Alpha1
        5.0.0.Alpha2 Latest Major
        +

        io.projectreactor:reactor-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor
        Artifact Idreactor-core
        Current Version3.4.34
        Scope
        Classifier
        Typejar
        Newer versions3.4.35 Latest Incremental
        3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4
        3.5.5
        3.5.6
        3.5.7
        3.5.8
        3.5.9
        3.5.10
        3.5.11
        3.5.12
        3.5.13
        3.5.14
        3.6.0-M1
        3.6.0-M2
        3.6.0-M3
        3.6.0-RC1
        3.6.0
        3.6.1
        3.6.2 Latest Minor
        +

        io.projectreactor:reactor-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor
        Artifact Idreactor-test
        Current Version3.4.34
        Scope
        Classifier
        Typejar
        Newer versions3.4.35 Latest Incremental
        3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4
        3.5.5
        3.5.6
        3.5.7
        3.5.8
        3.5.9
        3.5.10
        3.5.11
        3.5.12
        3.5.13
        3.5.14
        3.6.0-M1
        3.6.0-M2
        3.6.0-M3
        3.6.0-RC1
        3.6.0
        3.6.1
        3.6.2 Latest Minor
        +

        io.projectreactor:reactor-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor
        Artifact Idreactor-tools
        Current Version3.4.34
        Scope
        Classifier
        Typejar
        Newer versions3.4.35 Latest Incremental
        3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1
        3.5.2
        3.5.3
        3.5.4
        3.5.5
        3.5.6
        3.5.7
        3.5.8
        3.5.9
        3.5.10
        3.5.11
        3.5.12
        3.5.13
        3.5.14
        3.6.0-M1
        3.6.0-M2
        3.6.0-M3
        3.6.0-RC1
        3.6.0
        3.6.1
        3.6.2 Latest Minor
        +

        io.projectreactor.addons:reactor-adapter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.projectreactor.addons
        Artifact Idreactor-adapter
        Current Version3.4.10
        Scope
        Classifier
        Typejar
        Newer versions3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1 Latest Minor
        +

        io.projectreactor.addons:reactor-extra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.projectreactor.addons
        Artifact Idreactor-extra
        Current Version3.4.10
        Scope
        Classifier
        Typejar
        Newer versions3.5.0-M1
        3.5.0-M2
        3.5.0-M3
        3.5.0-M4
        3.5.0-M5
        3.5.0-M6
        3.5.0-RC1
        3.5.0
        3.5.1 Latest Minor
        +

        io.projectreactor.addons:reactor-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.projectreactor.addons
        Artifact Idreactor-pool
        Current Version0.2.12
        Scope
        Classifier
        Typejar
        Newer versions1.0.0-M1
        1.0.0-M3
        1.0.0-M4
        1.0.0-M5
        1.0.0-M6
        1.0.0-RC1
        1.0.0
        1.0.1
        1.0.2
        1.0.3
        1.0.4
        1.0.5 Latest Major
        +

        io.projectreactor.kafka:reactor-kafka

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.projectreactor.kafka
        Artifact Idreactor-kafka
        Current Version1.3.22
        Scope
        Classifier
        Typejar
        +

        io.projectreactor.kotlin:reactor-kotlin-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.projectreactor.kotlin
        Artifact Idreactor-kotlin-extensions
        Current Version1.1.10
        Scope
        Classifier
        Typejar
        Newer versions1.2.0-M1
        1.2.0-M3
        1.2.0-M4
        1.2.0-M5
        1.2.0-M6
        1.2.0-RC1
        1.2.0
        1.2.1
        1.2.2 Latest Minor
        +

        io.projectreactor.netty:reactor-netty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.netty:reactor-netty-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty-core
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.netty:reactor-netty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty-http
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.netty:reactor-netty-http-brave

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.projectreactor.netty
        Artifact Idreactor-netty-http-brave
        Current Version1.0.39
        Scope
        Classifier
        Typejar
        Newer versions1.0.40
        1.0.41 Latest Incremental
        1.1.0-M1
        1.1.0-M2
        1.1.0-M3
        1.1.0-M4
        1.1.0-M5
        1.1.0-M6
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.1.8
        1.1.9
        1.1.10
        1.1.11
        1.1.12
        1.1.13
        1.1.14
        1.1.15 Latest Minor
        +

        io.projectreactor.rabbitmq:reactor-rabbitmq

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.projectreactor.rabbitmq
        Artifact Idreactor-rabbitmq
        Current Version1.5.6
        Scope
        Classifier
        Typejar
        +

        io.prometheus:simpleclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_caffeine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_caffeine
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_common
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_dropwizard

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_dropwizard
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_graphite_bridge

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_graphite_bridge
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_guava
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_hibernate

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_hibernate
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_hotspot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_hotspot
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_httpserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_httpserver
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_jetty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_jetty
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_jetty_jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_jetty_jdk8
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_log4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_log4j
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_log4j2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_log4j2
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_logback

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_logback
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_pushgateway

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_pushgateway
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_servlet
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_servlet_jakarta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_servlet_jakarta
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_spring_boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_spring_boot
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_spring_web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_spring_web
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_tracer_otel

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_tracer_otel
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_tracer_otel_agent

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_tracer_otel_agent
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.prometheus:simpleclient_vertx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.prometheus
        Artifact Idsimpleclient_vertx
        Current Version0.15.0
        Scope
        Classifier
        Typejar
        Newer versions0.16.0 Latest Minor
        +

        io.r2dbc:r2dbc-h2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-h2
        Current Version0.9.1.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.M6
        1.0.0.M7
        1.0.0.RC1
        1.0.0.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-mssql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idio.r2dbc
        Artifact Idr2dbc-mssql
        Current Version0.9.0.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions0.9.0.SONATYPE-M4 Latest Subincremental
        1.0.0.M6
        1.0.0.M7
        1.0.0.RC1
        1.0.0.RELEASE
        1.0.1.RELEASE
        1.0.2.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-pool
        Current Version0.9.2.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.RC1
        1.0.0.RELEASE
        1.0.1.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-proxy
        Current Version0.9.1.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.M7
        1.0.0.RELEASE
        1.0.1.RELEASE
        1.1.0.RELEASE
        1.1.1.RELEASE
        1.1.2.RELEASE
        1.1.3.RELEASE
        1.1.4.RELEASE Latest Major
        +

        io.r2dbc:r2dbc-spi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.r2dbc
        Artifact Idr2dbc-spi
        Current Version0.9.1.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.0.0.M4
        1.0.0.M5
        1.0.0.M6
        1.0.0.M7
        1.0.0.RELEASE Latest Major
        +

        io.reactivex:rxjava

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.reactivex
        Artifact Idrxjava
        Current Version1.3.8
        Scope
        Classifier
        Typejar
        +

        io.reactivex:rxjava-reactive-streams

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.reactivex
        Artifact Idrxjava-reactive-streams
        Current Version1.2.1
        Scope
        Classifier
        Typejar
        +

        io.reactivex.rxjava2:rxjava

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.reactivex.rxjava2
        Artifact Idrxjava
        Current Version2.2.21
        Scope
        Classifier
        Typejar
        +

        io.rest-assured:json-path

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idjson-path
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:json-schema-validator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idjson-schema-validator
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:kotlin-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idkotlin-extensions
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:rest-assured

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idrest-assured
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:rest-assured-all

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idrest-assured-all
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:rest-assured-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idrest-assured-common
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:scala-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idscala-support
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-commons
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-mock-mvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-mock-mvc
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-mock-mvc-kotlin-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-mock-mvc-kotlin-extensions
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:spring-web-test-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idspring-web-test-client
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured:xml-path

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idio.rest-assured
        Artifact Idxml-path
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions5.0.0
        5.0.1
        5.1.0
        5.1.1
        5.2.0
        5.2.1
        5.3.0
        5.3.1
        5.3.2
        5.4.0 Latest Major
        +

        io.rest-assured.examples:kotlin-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idkotlin-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:rest-assured-itest-java

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idrest-assured-itest-java
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scala-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscala-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scala-mock-mvc-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscala-mock-mvc-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scalatra-example

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscalatra-example
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        +

        io.rest-assured.examples:scalatra-webapp

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idscalatra-webapp
        Current Version4.5.1
        Scope
        Classifier
        Typewar
        +

        io.rest-assured.examples:spring-mvc-webapp

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.rest-assured.examples
        Artifact Idspring-mvc-webapp
        Current Version4.5.1
        Scope
        Classifier
        Typewar
        +

        io.rsocket:rsocket-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-core
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-load-balancer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-load-balancer
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-micrometer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-micrometer
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-test
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-transport-local

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-transport-local
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.rsocket:rsocket-transport-netty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idio.rsocket
        Artifact Idrsocket-transport-netty
        Current Version1.1.3
        Scope
        Classifier
        Typejar
        Newer versions1.1.4 Latest Incremental
        +

        io.spring.gradle:dependency-management-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.spring.gradle
        Artifact Iddependency-management-plugin
        Current Version1.0.15.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4 Latest Minor
        +

        io.undertow:undertow-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.undertow
        Artifact Idundertow-core
        Current Version2.2.28.Final
        Scope
        Classifier
        Typejar
        Newer versions2.3.0.Alpha1
        2.3.0.Alpha2
        2.3.0.Beta1
        2.3.0.Final
        2.3.1.Final
        2.3.2.Final
        2.3.3.Final
        2.3.4.Final
        2.3.5.Final
        2.3.6.Final
        2.3.7.Final
        2.3.8.Final
        2.3.9.Final
        2.3.10.Final Latest Minor
        +

        io.undertow:undertow-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.undertow
        Artifact Idundertow-servlet
        Current Version2.2.28.Final
        Scope
        Classifier
        Typejar
        Newer versions2.3.0.Alpha1
        2.3.0.Alpha2
        2.3.0.Beta1
        2.3.0.Final
        2.3.1.Final
        2.3.2.Final
        2.3.3.Final
        2.3.4.Final
        2.3.5.Final
        2.3.6.Final
        2.3.7.Final
        2.3.8.Final
        2.3.9.Final
        2.3.10.Final Latest Minor
        +

        io.undertow:undertow-websockets-jsr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idio.undertow
        Artifact Idundertow-websockets-jsr
        Current Version2.2.28.Final
        Scope
        Classifier
        Typejar
        Newer versions2.3.0.Alpha1
        2.3.0.Alpha2
        2.3.0.Beta1
        2.3.0.Final
        2.3.1.Final
        2.3.2.Final
        2.3.3.Final
        2.3.4.Final
        2.3.5.Final
        2.3.6.Final
        2.3.7.Final
        2.3.8.Final
        2.3.9.Final
        2.3.10.Final Latest Minor
        +

        jakarta.activation:jakarta.activation-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.activation
        Artifact Idjakarta.activation-api
        Current Version1.2.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-rc1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1
        2.1.0-RC1
        2.1.0-RC2
        2.1.0
        2.1.1
        2.1.2 Latest Major
        +

        jakarta.annotation:jakarta.annotation-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.annotation
        Artifact Idjakarta.annotation-api
        Current Version1.3.5
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0
        2.1.0-B1
        2.1.0
        2.1.1
        3.0.0-M1 Latest Major
        +

        jakarta.jms:jakarta.jms-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.jms
        Artifact Idjakarta.jms-api
        Current Version2.0.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0
        3.1.0 Latest Major
        +

        jakarta.json:jakarta.json-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.json
        Artifact Idjakarta.json-api
        Current Version1.1.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1
        2.0.2
        2.1.0-RC1
        2.1.0
        2.1.1
        2.1.2
        2.1.3 Latest Major
        +

        jakarta.json.bind:jakarta.json.bind-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.json.bind
        Artifact Idjakarta.json.bind-api
        Current Version1.0.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0
        3.0.0-RC1
        3.0.0 Latest Major
        +

        jakarta.mail:jakarta.mail-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.mail
        Artifact Idjakarta.mail-api
        Current Version1.6.7
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0-RC4
        2.0.0-RC5
        2.0.0-RC6
        2.0.0
        2.0.1
        2.1.0-RC1
        2.1.0-RC2
        2.1.0
        2.1.1
        2.1.2 Latest Major
        +

        jakarta.management.j2ee:jakarta.management.j2ee-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjakarta.management.j2ee
        Artifact Idjakarta.management.j2ee-api
        Current Version1.1.4
        Scope
        Classifier
        Typejar
        +

        jakarta.persistence:jakarta.persistence-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.persistence
        Artifact Idjakarta.persistence-api
        Current Version2.2.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.2.0-B01
        3.2.0-B02
        3.2.0-M1 Latest Major
        +

        jakarta.servlet:jakarta.servlet-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.servlet
        Artifact Idjakarta.servlet-api
        Current Version4.0.4
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0
        6.0.0
        6.1.0-M1 Latest Major
        +

        jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.servlet.jsp.jstl
        Artifact Idjakarta.servlet.jsp.jstl-api
        Current Version1.2.7
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0
        3.0.0 Latest Major
        +

        jakarta.transaction:jakarta.transaction-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.transaction
        Artifact Idjakarta.transaction-api
        Current Version1.3.3
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1-RC1
        2.0.1 Latest Major
        +

        jakarta.validation:jakarta.validation-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.validation
        Artifact Idjakarta.validation-api
        Current Version2.0.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0
        3.0.1
        3.0.2
        3.1.0-M1 Latest Major
        +

        jakarta.websocket:jakarta.websocket-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.websocket
        Artifact Idjakarta.websocket-api
        Current Version1.1.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0-RC1
        2.0.0
        2.1.0
        2.1.1
        2.2.0-M1 Latest Major
        +

        jakarta.ws.rs:jakarta.ws.rs-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.ws.rs
        Artifact Idjakarta.ws.rs-api
        Current Version2.1.6
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0
        3.1.0 Latest Major
        +

        jakarta.xml.bind:jakarta.xml.bind-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.xml.bind
        Artifact Idjakarta.xml.bind-api
        Current Version2.3.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0-RC2
        3.0.0-RC3
        3.0.0
        3.0.1
        4.0.0-RC1
        4.0.0-RC2
        4.0.0-RC3
        4.0.0
        4.0.1 Latest Major
        +

        jakarta.xml.soap:jakarta.xml.soap-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.xml.soap
        Artifact Idjakarta.xml.soap-api
        Current Version1.4.2
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-RC1
        2.0.0-RC2
        2.0.0-RC3
        2.0.0
        2.0.1
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1 Latest Major
        +

        jakarta.xml.ws:jakarta.xml.ws-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjakarta.xml.ws
        Artifact Idjakarta.xml.ws-api
        Current Version2.3.3
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-RC1
        3.0.0-RC2
        3.0.0-RC3
        3.0.0
        3.0.1
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1 Latest Major
        +

        javax.activation:javax.activation-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.activation
        Artifact Idjavax.activation-api
        Current Version1.2.0
        Scope
        Classifier
        Typejar
        +

        javax.annotation:javax.annotation-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.annotation
        Artifact Idjavax.annotation-api
        Current Version1.3.2
        Scope
        Classifier
        Typejar
        +

        javax.cache:cache-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.cache
        Artifact Idcache-api
        Current Version1.1.1
        Scope
        Classifier
        Typejar
        +

        javax.jms:javax.jms-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.jms
        Artifact Idjavax.jms-api
        Current Version2.0.1
        Scope
        Classifier
        Typejar
        +

        javax.json:javax.json-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.json
        Artifact Idjavax.json-api
        Current Version1.1.4
        Scope
        Classifier
        Typejar
        +

        javax.json.bind:javax.json.bind-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.json.bind
        Artifact Idjavax.json.bind-api
        Current Version1.0
        Scope
        Classifier
        Typejar
        +

        javax.mail:javax.mail-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.mail
        Artifact Idjavax.mail-api
        Current Version1.6.2
        Scope
        Classifier
        Typejar
        +

        javax.money:money-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.money
        Artifact Idmoney-api
        Current Version1.1
        Scope
        Classifier
        Typejar
        +

        javax.persistence:javax.persistence-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.persistence
        Artifact Idjavax.persistence-api
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        javax.servlet:javax.servlet-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.servlet
        Artifact Idjavax.servlet-api
        Current Version4.0.1
        Scope
        Classifier
        Typejar
        +

        javax.servlet:jstl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.servlet
        Artifact Idjstl
        Current Version1.2
        Scope
        Classifier
        Typejar
        +

        javax.transaction:javax.transaction-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.transaction
        Artifact Idjavax.transaction-api
        Current Version1.3
        Scope
        Classifier
        Typejar
        +

        javax.validation:validation-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.validation
        Artifact Idvalidation-api
        Current Version2.0.1.Final
        Scope
        Classifier
        Typejar
        +

        javax.websocket:javax.websocket-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.websocket
        Artifact Idjavax.websocket-api
        Current Version1.1
        Scope
        Classifier
        Typejar
        +

        javax.xml.bind:jaxb-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idjavax.xml.bind
        Artifact Idjaxb-api
        Current Version2.3.1
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0427
        2.4.0-b180830.0359 Latest Minor
        +

        javax.xml.ws:jaxws-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjavax.xml.ws
        Artifact Idjaxws-api
        Current Version2.3.1
        Scope
        Classifier
        Typejar
        +

        jaxen:jaxen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idjaxen
        Artifact Idjaxen
        Current Version1.2.0
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-beta-1
        2.0.0 Latest Major
        +

        junit:junit

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idjunit
        Artifact Idjunit
        Current Version4.13.2
        Scope
        Classifier
        Typejar
        +

        net.bytebuddy:byte-buddy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.bytebuddy
        Artifact Idbyte-buddy
        Current Version1.12.23
        Scope
        Classifier
        Typejar
        Newer versions1.13.0
        1.14.0
        1.14.1
        1.14.2
        1.14.3
        1.14.4
        1.14.5
        1.14.6
        1.14.7
        1.14.8
        1.14.9
        1.14.10
        1.14.11 Latest Minor
        +

        net.bytebuddy:byte-buddy-agent

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.bytebuddy
        Artifact Idbyte-buddy-agent
        Current Version1.12.23
        Scope
        Classifier
        Typejar
        Newer versions1.13.0
        1.14.0
        1.14.1
        1.14.2
        1.14.3
        1.14.4
        1.14.5
        1.14.6
        1.14.7
        1.14.8
        1.14.9
        1.14.10
        1.14.11 Latest Minor
        +

        net.minidev:json-smart

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.minidev
        Artifact Idjson-smart
        Current Version2.4.11
        Scope
        Classifier
        Typejar
        Newer versions2.5.0 Latest Minor
        +

        net.sf.ehcache:ehcache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.sf.ehcache
        Artifact Idehcache
        Current Version2.10.9.2
        Scope
        Classifier
        Typejar
        +

        net.sourceforge.htmlunit:htmlunit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnet.sourceforge.htmlunit
        Artifact Idhtmlunit
        Current Version2.60.0
        Scope
        Classifier
        Typejar
        Newer versions2.61.0
        2.62.0
        2.63.0
        2.64.0
        2.65.0
        2.65.1
        2.66.0
        2.67.0
        2.68.0
        2.69.0
        2.70.0 Latest Minor
        +

        net.sourceforge.jtds:jtds

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.sourceforge.jtds
        Artifact Idjtds
        Current Version1.3.1
        Scope
        Classifier
        Typejar
        +

        net.sourceforge.nekohtml:nekohtml

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.sourceforge.nekohtml
        Artifact Idnekohtml
        Current Version1.9.22
        Scope
        Classifier
        Typejar
        +

        nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idnz.net.ultraq.thymeleaf
        Artifact Idthymeleaf-layout-dialect
        Current Version3.0.0
        Scope
        Classifier
        Typejar
        Newer versions3.1.0
        3.2.0
        3.2.1
        3.3.0 Latest Minor
        +

        org.apache.activemq:activemq-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-amqp
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-blueprint

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-blueprint
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-broker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-broker
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-camel

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.activemq
        Artifact Idactivemq-camel
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        +

        org.apache.activemq:activemq-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-client
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-console
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-http
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-jaas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-jaas
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-jdbc-store

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-jdbc-store
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-jms-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-jms-pool
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-kahadb-store

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-kahadb-store
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-karaf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-karaf
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-leveldb-store

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.activemq
        Artifact Idactivemq-leveldb-store
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        +

        org.apache.activemq:activemq-log4j-appender

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-log4j-appender
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-mqtt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-mqtt
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-openwire-generator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-openwire-generator
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-openwire-legacy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-openwire-legacy
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-osgi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-osgi
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-partition

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-partition
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        +

        org.apache.activemq:activemq-pool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-pool
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-ra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-ra
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-run

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-run
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-runtime-config

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-runtime-config
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-shiro

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-shiro
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-spring
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-stomp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-stomp
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:activemq-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idactivemq-web
        Current Version5.16.7
        Scope
        Classifier
        Typejar
        Newer versions5.17.0
        5.17.1
        5.17.2
        5.17.3
        5.17.4
        5.17.5
        5.17.6
        5.18.0
        5.18.1
        5.18.2
        5.18.3 Latest Minor
        6.0.0
        6.0.1 Latest Major
        +

        org.apache.activemq:artemis-amqp-protocol

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-amqp-protocol
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-commons
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-core-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-core-client
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-jdbc-store

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-jdbc-store
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-jms-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-jms-client
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-jms-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-jms-server
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-journal

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-journal
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-quorum-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-quorum-api
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-selector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-selector
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-server
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.activemq:artemis-service-extensions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.activemq
        Artifact Idartemis-service-extensions
        Current Version2.19.1
        Scope
        Classifier
        Typejar
        Newer versions2.20.0
        2.21.0
        2.22.0
        2.23.0
        2.23.1
        2.24.0
        2.25.0
        2.26.0
        2.27.0
        2.27.1
        2.28.0
        2.29.0
        2.30.0
        2.31.0
        2.31.1
        2.31.2
        2.32.0 Latest Minor
        +

        org.apache.commons:commons-dbcp2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.commons
        Artifact Idcommons-dbcp2
        Current Version2.9.0
        Scope
        Classifier
        Typejar
        Newer versions2.10.0
        2.11.0 Latest Minor
        +

        org.apache.commons:commons-lang3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.commons
        Artifact Idcommons-lang3
        Current Version3.12.0
        Scope
        Classifier
        Typejar
        Newer versions3.13.0
        3.14.0 Latest Minor
        +

        org.apache.commons:commons-pool2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.commons
        Artifact Idcommons-pool2
        Current Version2.11.1
        Scope
        Classifier
        Typejar
        Newer versions2.12.0 Latest Minor
        +

        org.apache.derby:derby

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderby
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbyclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbyclient
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbynet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbynet
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbyoptionaltools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbyoptionaltools
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.derby:derbytools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.derby
        Artifact Idderbytools
        Current Version10.14.2.0
        Scope
        Classifier
        Typejar
        Newer versions10.15.1.3
        10.15.2.0
        10.16.1.1
        10.17.1.0 Latest Minor
        +

        org.apache.httpcomponents:fluent-hc

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idfluent-hc
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpasyncclient

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpasyncclient
        Current Version4.1.5
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient-cache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient-cache
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient-osgi

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient-osgi
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpclient-win

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpclient-win
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpcore

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpcore
        Current Version4.4.16
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpcore-nio

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpcore-nio
        Current Version4.4.16
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents:httpmime

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.httpcomponents
        Artifact Idhttpmime
        Current Version4.5.14
        Scope
        Classifier
        Typejar
        +

        org.apache.httpcomponents.client5:httpclient5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.3-alpha1
        5.3
        5.3.1
        5.4-alpha1 Latest Minor
        +

        org.apache.httpcomponents.client5:httpclient5-cache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5-cache
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.3-alpha1
        5.3
        5.3.1
        5.4-alpha1 Latest Minor
        +

        org.apache.httpcomponents.client5:httpclient5-fluent

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5-fluent
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.3-alpha1
        5.3
        5.3.1
        5.4-alpha1 Latest Minor
        +

        org.apache.httpcomponents.client5:httpclient5-win

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.client5
        Artifact Idhttpclient5-win
        Current Version5.1.4
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-beta1
        5.2
        5.2.1
        5.2.2
        5.2.3 Latest Minor
        +

        org.apache.httpcomponents.core5:httpcore5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.core5
        Artifact Idhttpcore5
        Current Version5.1.5
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-alpha2
        5.2-beta1
        5.2-beta2
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3-alpha1 Latest Minor
        +

        org.apache.httpcomponents.core5:httpcore5-h2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.core5
        Artifact Idhttpcore5-h2
        Current Version5.1.5
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-alpha2
        5.2-beta1
        5.2-beta2
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3-alpha1 Latest Minor
        +

        org.apache.httpcomponents.core5:httpcore5-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.httpcomponents.core5
        Artifact Idhttpcore5-reactive
        Current Version5.1.5
        Scope
        Classifier
        Typejar
        Newer versions5.2-alpha1
        5.2-alpha2
        5.2-beta1
        5.2-beta2
        5.2
        5.2.1
        5.2.2
        5.2.3
        5.2.4
        5.3-alpha1 Latest Minor
        +

        org.apache.johnzon:johnzon-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-core
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jaxrs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jaxrs
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jsonb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jsonb
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jsonb-extras

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jsonb-extras
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-jsonschema

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-jsonschema
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-mapper

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-mapper
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.johnzon:johnzon-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.apache.johnzon
        Artifact Idjohnzon-websocket
        Current Version1.2.21
        Scope
        Classifier
        Typejar
        Newer versions2.0.0 Latest Major
        +

        org.apache.kafka:connect

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-api
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-basic-auth-extension

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-basic-auth-extension
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-file

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-file
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-json
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-mirror

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-mirror
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-mirror-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-mirror-client
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-runtime
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:connect-transforms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idconnect-transforms
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:generator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idgenerator
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-clients

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-clients
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-log4j-appender

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-log4j-appender
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-metadata

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-metadata
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-raft

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-raft
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-server-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-server-common
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-shell

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-shell
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-storage

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-storage
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-storage-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-storage-api
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams-scala_2.12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams-scala_2.12
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams-scala_2.13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams-scala_2.13
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-streams-test-utils

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-streams-test-utils
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka-tools
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka_2.12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka_2.12
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:kafka_2.13

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idkafka_2.13
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.kafka:trogdor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.kafka
        Artifact Idtrogdor
        Current Version3.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.2.1
        3.2.2
        3.2.3
        3.3.0
        3.3.1
        3.3.2
        3.4.0
        3.4.1
        3.5.0
        3.5.1
        3.5.2
        3.6.0
        3.6.1 Latest Minor
        +

        org.apache.logging.log4j:log4j-1.2-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-1.2-api
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-api
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-appserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-appserver
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-cassandra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-cassandra
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-core
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-couchdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-couchdb
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-docker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-docker
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-flume-ng

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-flume-ng
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-iostreams

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-iostreams
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-jcl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jcl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-jmx-gui

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jmx-gui
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.22.0 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jpa
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-jpl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jpl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-jul

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-jul
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-kubernetes

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-kubernetes
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-layout-template-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-layout-template-json
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-liquibase

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-liquibase
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-mongodb3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-mongodb3
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-mongodb4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-mongodb4
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-slf4j-impl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-slf4j-impl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-slf4j18-impl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-slf4j18-impl
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0 Latest Minor
        +

        org.apache.logging.log4j:log4j-spring-boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-spring-boot
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-spring-cloud-config-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-spring-cloud-config-client
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-taglib

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-taglib
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.logging.log4j:log4j-to-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-to-slf4j
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1
        3.0.0-beta1 Latest Major
        +

        org.apache.logging.log4j:log4j-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.apache.logging.log4j
        Artifact Idlog4j-web
        Current Version2.17.2
        Scope
        Classifier
        Typejar
        Newer versions2.18.0
        2.19.0
        2.20.0
        2.21.0
        2.21.1
        2.22.0
        2.22.1 Latest Minor
        3.0.0-alpha1 Latest Major
        +

        org.apache.solr:solr-analysis-extras

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-analysis-extras
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-analytics

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-analytics
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-cell

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-cell
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.solr:solr-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-core
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-dataimporthandler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-dataimporthandler
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.solr:solr-dataimporthandler-extras

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-dataimporthandler-extras
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.solr:solr-gcs-repository

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-gcs-repository
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-jaegertracer-configurator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-jaegertracer-configurator
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-langid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-langid
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-ltr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-ltr
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-prometheus-exporter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-prometheus-exporter
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-s3-repository

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-s3-repository
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-solrj

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-solrj
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-test-framework

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-test-framework
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        9.0.0
        9.1.0
        9.1.1
        9.2.0
        9.2.1
        9.3.0
        9.4.0
        9.4.1 Latest Major
        +

        org.apache.solr:solr-velocity

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.solr
        Artifact Idsolr-velocity
        Current Version8.11.2
        Scope
        Classifier
        Typejar
        Newer versions8.11.3 Latest Incremental
        +

        org.apache.tomcat:tomcat-annotations-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat
        Artifact Idtomcat-annotations-api
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat:tomcat-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat
        Artifact Idtomcat-jdbc
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat:tomcat-jsp-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat
        Artifact Idtomcat-jsp-api
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-core
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-el

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-el
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-jasper

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-jasper
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.apache.tomcat.embed:tomcat-embed-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.apache.tomcat.embed
        Artifact Idtomcat-embed-websocket
        Current Version9.0.83
        Scope
        Classifier
        Typejar
        Newer versions9.0.84
        9.0.85 Latest Incremental
        10.0.0-M1
        10.0.0-M3
        10.0.0-M4
        10.0.0-M5
        10.0.0-M6
        10.0.0-M7
        10.0.0-M8
        10.0.0-M9
        10.0.0-M10
        10.0.0
        10.0.2
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.16
        10.0.17
        10.0.18
        10.0.20
        10.0.21
        10.0.22
        10.0.23
        10.0.26
        10.0.27
        10.1.0-M1
        10.1.0-M2
        10.1.0-M4
        10.1.0-M5
        10.1.0-M6
        10.1.0-M7
        10.1.0-M8
        10.1.0-M10
        10.1.0-M11
        10.1.0-M12
        10.1.0-M14
        10.1.0-M15
        10.1.0-M16
        10.1.0-M17
        10.1.0
        10.1.1
        10.1.2
        10.1.4
        10.1.5
        10.1.6
        10.1.7
        10.1.8
        10.1.9
        10.1.10
        10.1.11
        10.1.12
        10.1.13
        10.1.14
        10.1.15
        10.1.16
        10.1.17
        10.1.18
        11.0.0-M1
        11.0.0-M3
        11.0.0-M4
        11.0.0-M5
        11.0.0-M6
        11.0.0-M7
        11.0.0-M9
        11.0.0-M10
        11.0.0-M11
        11.0.0-M12
        11.0.0-M13
        11.0.0-M14
        11.0.0-M15
        11.0.0-M16 Latest Major
        +

        org.aspectj:aspectjrt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.aspectj
        Artifact Idaspectjrt
        Current Version1.9.7
        Scope
        Classifier
        Typejar
        Newer versions1.9.8.M1
        1.9.8.RC1
        1.9.8.RC2
        1.9.8.RC3
        1.9.8
        1.9.9
        1.9.9.1
        1.9.19
        1.9.20
        1.9.20.1
        1.9.21.M1
        1.9.21.RC1
        1.9.21 Latest Incremental
        +

        org.aspectj:aspectjtools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.aspectj
        Artifact Idaspectjtools
        Current Version1.9.7
        Scope
        Classifier
        Typejar
        Newer versions1.9.8.M1
        1.9.8.RC1
        1.9.8.RC2
        1.9.8.RC3
        1.9.8
        1.9.9
        1.9.9.1
        1.9.19
        1.9.20
        1.9.20.1
        1.9.21.M1
        1.9.21.RC1
        1.9.21 Latest Incremental
        +

        org.aspectj:aspectjweaver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.aspectj
        Artifact Idaspectjweaver
        Current Version1.9.7
        Scope
        Classifier
        Typejar
        Newer versions1.9.8.M1
        1.9.8.RC1
        1.9.8.RC2
        1.9.8.RC3
        1.9.8
        1.9.9
        1.9.9.1
        1.9.19
        1.9.20
        1.9.20.1
        1.9.21.M1
        1.9.21.RC1
        1.9.21 Latest Incremental
        +

        org.assertj:assertj-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.assertj
        Artifact Idassertj-core
        Current Version3.22.0
        Scope
        Classifier
        Typejar
        Newer versions3.23.0
        3.23.1
        3.24.0
        3.24.1
        3.24.2
        3.25.0
        3.25.1
        3.25.2
        3.25.3 Latest Minor
        +

        org.awaitility:awaitility

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.awaitility:awaitility-groovy

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility-groovy
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.awaitility:awaitility-kotlin

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility-kotlin
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.awaitility:awaitility-scala

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.awaitility
        Artifact Idawaitility-scala
        Current Version4.2.0
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-api
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-config

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-config
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-core
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-jcache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-jcache
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-micrometer

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-micrometer
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.cache2k:cache2k-spring

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.cache2k
        Artifact Idcache2k-spring
        Current Version2.6.1.Final
        Scope
        Classifier
        Typejar
        +

        org.codehaus.groovy:groovy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-ant

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-ant
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-astbuilder

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-astbuilder
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-bsf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-bsf
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-cli-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-cli-commons
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-cli-picocli

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-cli-picocli
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-console
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-datetime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-datetime
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-dateutil

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-dateutil
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-docgenerator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-docgenerator
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-groovydoc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-groovydoc
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-groovysh

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-groovysh
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-jaxb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-jaxb
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-jmx
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-json
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-jsr223

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-jsr223
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-macro

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-macro
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-nio

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-nio
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-servlet
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-sql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-sql
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-swing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-swing
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-templates

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-templates
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-test
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-test-junit5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-test-junit5
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-testng

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-testng
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-xml
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.groovy:groovy-yaml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.groovy
        Artifact Idgroovy-yaml
        Current Version3.0.19
        Scope
        Classifier
        Typejar
        Newer versions3.0.20 Latest Incremental
        +

        org.codehaus.janino:commons-compiler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.janino
        Artifact Idcommons-compiler
        Current Version3.1.10
        Scope
        Classifier
        Typejar
        Newer versions3.1.11
        3.1.12 Latest Incremental
        +

        org.codehaus.janino:commons-compiler-jdk

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.janino
        Artifact Idcommons-compiler-jdk
        Current Version3.1.10
        Scope
        Classifier
        Typejar
        Newer versions3.1.11
        3.1.12 Latest Incremental
        +

        org.codehaus.janino:janino

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.codehaus.janino
        Artifact Idjanino
        Current Version3.1.10
        Scope
        Classifier
        Typejar
        Newer versions3.1.11
        3.1.12 Latest Incremental
        +

        org.eclipse.jetty:apache-jsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idapache-jsp
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:apache-jstl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idapache-jstl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0 Latest Major
        +

        org.eclipse.jetty:infinispan-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idinfinispan-common
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:infinispan-embedded-query

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idinfinispan-embedded-query
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:infinispan-remote-query

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idinfinispan-remote-query
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-conscrypt-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-conscrypt-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-conscrypt-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-conscrypt-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-java-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-java-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-java-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-java-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-alpn-openjdk8-client

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-openjdk8-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty:jetty-alpn-openjdk8-server

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-openjdk8-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty:jetty-alpn-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-alpn-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-annotations
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-ant

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-ant
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-continuation

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-continuation
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty:jetty-deploy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-deploy
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-distribution

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-distribution
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typezip
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        11.0.0-alpha0
        11.0.0.beta1 Latest Major
        +

        org.eclipse.jetty:jetty-hazelcast

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-hazelcast
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-home

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-home
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typezip
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-http
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-http-spi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-http-spi
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-io

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-io
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-jaas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jaas
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-jaspi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jaspi
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jmx
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-jndi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-jndi
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-nosql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-nosql
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-openid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-openid
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-plus

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-plus
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-proxy
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-quickstart

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-quickstart
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-reactive-httpclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-reactive-httpclient
        Current Version1.1.15
        Scope
        Classifier
        Typejar
        Newer versions2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        4.0.0.beta0
        4.0.0.beta1
        4.0.0
        4.0.1
        4.0.2
        4.0.3 Latest Major
        +

        org.eclipse.jetty:jetty-rewrite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-rewrite
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-security
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-servlet
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-servlets

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-servlets
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-spring
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3 Latest Major
        +

        org.eclipse.jetty:jetty-unixsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-unixsocket
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-util

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-util
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-util-ajax

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-util-ajax
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty:jetty-webapp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-webapp
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty:jetty-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty
        Artifact Idjetty-xml
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty.fcgi:fcgi-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.fcgi
        Artifact Idfcgi-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.fcgi:fcgi-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.fcgi
        Artifact Idfcgi-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.gcloud:jetty-gcloud-session-manager

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.gcloud
        Artifact Idjetty-gcloud-session-manager
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty.http2:http2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-common
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-hpack

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-hpack
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-http-client-transport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-http-client-transport
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.http2:http2-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.http2
        Artifact Idhttp2-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.memcached:jetty-memcached-sessions

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.memcached
        Artifact Idjetty-memcached-sessions
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20
        12.0.0.alpha0
        12.0.0.alpha1
        12.0.0.alpha2
        12.0.0.alpha3
        12.0.0.beta0
        12.0.0.beta1
        12.0.0.beta2
        12.0.0.beta3
        12.0.0.beta4
        12.0.0
        12.0.1
        12.0.2
        12.0.3
        12.0.4
        12.0.5
        12.0.6 Latest Major
        +

        org.eclipse.jetty.orbit:javax.servlet.jsp

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.orbit
        Artifact Idjavax.servlet.jsp
        Current Version2.2.0.v201112011158
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.osgi:jetty-httpservice

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-httpservice
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.osgi:jetty-osgi-boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-osgi-boot
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.osgi:jetty-osgi-boot-jsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-osgi-boot-jsp
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.osgi:jetty-osgi-boot-warurl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.osgi
        Artifact Idjetty-osgi-boot-warurl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0.beta0
        10.0.0.beta1
        10.0.0.beta2
        10.0.0.beta3
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0-alpha0
        11.0.0.beta1
        11.0.0.beta2
        11.0.0.beta3
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.eclipse.jetty.websocket:javax-websocket-client-impl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idjavax-websocket-client-impl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:javax-websocket-server-impl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idjavax-websocket-server-impl
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-api

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-api
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-client

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-client
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-common

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-common
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-server

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-server
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        +

        org.eclipse.jetty.websocket:websocket-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.eclipse.jetty.websocket
        Artifact Idwebsocket-servlet
        Current Version9.4.53.v20231009
        Scope
        Classifier
        Typejar
        Newer versions10.0.0-alpha0
        10.0.0.alpha1
        10.0.0.alpha2
        10.0.0
        10.0.1
        10.0.2
        10.0.3
        10.0.4
        10.0.5
        10.0.6
        10.0.7
        10.0.8
        10.0.9
        10.0.10
        10.0.11
        10.0.12
        10.0.13
        10.0.14
        10.0.15
        10.0.16
        10.0.17
        10.0.18
        10.0.19
        10.0.20
        11.0.0
        11.0.1
        11.0.2
        11.0.3
        11.0.4
        11.0.5
        11.0.6
        11.0.7
        11.0.8
        11.0.9
        11.0.10
        11.0.11
        11.0.12
        11.0.13
        11.0.14
        11.0.15
        11.0.16
        11.0.17
        11.0.18
        11.0.19
        11.0.20 Latest Major
        +

        org.ehcache:ehcache

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ehcache
        Artifact Idehcache
        Current Version3.10.8
        Scope
        Classifier
        Typejar
        +

        org.ehcache:ehcache-clustered

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ehcache
        Artifact Idehcache-clustered
        Current Version3.10.8
        Scope
        Classifier
        Typejar
        +

        org.ehcache:ehcache-transactions

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ehcache
        Artifact Idehcache-transactions
        Current Version3.10.8
        Scope
        Classifier
        Typejar
        +

        org.elasticsearch:elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch
        Artifact Idelasticsearch
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.client:elasticsearch-rest-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idelasticsearch-rest-client
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.client:elasticsearch-rest-client-sniffer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idelasticsearch-rest-client-sniffer
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.client:elasticsearch-rest-high-level-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idelasticsearch-rest-high-level-client
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2 Latest Major
        +

        org.elasticsearch.client:transport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.client
        Artifact Idtransport
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        +

        org.elasticsearch.distribution.integ-test-zip:elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.distribution.integ-test-zip
        Artifact Idelasticsearch
        Current Version7.17.15
        Scope
        Classifier
        Typezip
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        8.0.0-alpha1
        8.0.0-alpha2
        8.0.0-beta1
        8.0.0-rc1
        8.0.0-rc2
        8.0.0
        8.0.1
        8.1.0
        8.1.1
        8.1.2
        8.1.3
        8.2.0
        8.2.1
        8.2.2
        8.2.3
        8.3.0
        8.3.1
        8.3.2
        8.3.3
        8.4.0
        8.4.1
        8.4.2
        8.4.3
        8.5.0
        8.5.1
        8.5.2
        8.5.3
        8.6.0
        8.6.1
        8.6.2
        8.7.0
        8.7.1
        8.8.0
        8.8.1
        8.8.2
        8.9.0
        8.9.1
        8.9.2
        8.10.0
        8.10.1
        8.10.2
        8.10.3
        8.10.4
        8.11.0
        8.11.1
        8.11.2
        8.11.3
        8.11.4
        8.12.0
        8.12.1 Latest Major
        +

        org.elasticsearch.plugin:transport-netty4-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.elasticsearch.plugin
        Artifact Idtransport-netty4-client
        Current Version7.17.15
        Scope
        Classifier
        Typejar
        Newer versions7.17.16
        7.17.17
        7.17.18 Latest Incremental
        +

        org.firebirdsql.jdbc:jaybird

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idorg.firebirdsql.jdbc
        Artifact Idjaybird
        Current Version4.0.9.java8
        Scope
        Classifier
        Typejar
        Newer versions4.0.9.java11 Latest Subincremental
        4.0.10.java7
        4.0.10.java8
        4.0.10.java11 Latest Incremental
        5.0.0.java8-beta-1
        5.0.0.java8
        5.0.0.java11-beta-1
        5.0.0.java11
        5.0.1.java8
        5.0.1.java11
        5.0.2.java8
        5.0.2.java11
        5.0.3.java8
        5.0.3.java11 Latest Major
        +

        org.firebirdsql.jdbc:jaybird-jdk18

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.firebirdsql.jdbc
        Artifact Idjaybird-jdk18
        Current Version4.0.9.java8
        Scope
        Classifier
        Typejar
        Newer versions4.0.10.java8 Latest Incremental
        +

        org.flywaydb:flyway-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-core
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.flywaydb:flyway-firebird

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-firebird
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.flywaydb:flyway-mysql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-mysql
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.flywaydb:flyway-sqlserver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.flywaydb
        Artifact Idflyway-sqlserver
        Current Version8.5.13
        Scope
        Classifier
        Typejar
        Newer versions9.0.0
        9.0.1
        9.0.2
        9.0.3
        9.0.4
        9.1.0
        9.1.1
        9.1.2
        9.1.3
        9.1.4
        9.1.5
        9.1.6
        9.2.0
        9.2.1
        9.2.2
        9.2.3
        9.3.0
        9.3.1
        9.4.0
        9.5.0
        9.5.1
        9.6.0
        9.7.0
        9.8.0
        9.8.1
        9.8.2
        9.8.3
        9.9.0
        9.10.0
        9.10.1
        9.10.2
        9.11.0
        9.12.0
        9.13.0
        9.14.0
        9.14.1
        9.15.0
        9.15.1
        9.15.2
        9.16.0
        9.16.1
        9.16.2
        9.16.3
        9.17.0
        9.18.0
        9.19.0
        9.19.1
        9.19.2
        9.19.3
        9.19.4
        9.20.0
        9.20.1
        9.21.0
        9.21.1
        9.21.2
        9.22.0
        9.22.1
        9.22.2
        9.22.3
        10.0.0
        10.0.1
        10.1.0
        10.2.0
        10.3.0
        10.4.0
        10.4.1
        10.5.0
        10.6.0
        10.7.0
        10.7.1
        10.7.2 Latest Major
        +

        org.freemarker:freemarker

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.freemarker
        Artifact Idfreemarker
        Current Version2.3.32
        Scope
        Classifier
        Typejar
        +

        org.glassfish:jakarta.el

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.glassfish
        Artifact Idjakarta.el
        Current Version3.0.4
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        5.0.0-M1 Latest Major
        +

        org.glassfish.jaxb:codemodel

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idcodemodel
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:codemodel-annotation-compiler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idcodemodel-annotation-compiler
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:jaxb-jxc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idjaxb-jxc
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:jaxb-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idjaxb-runtime
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:jaxb-xjc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idjaxb-xjc
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:txw2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idtxw2
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:txwc2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idtxwc2
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jaxb:xsom

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jaxb
        Artifact Idxsom
        Current Version2.3.9
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-b180725.0644
        2.4.0-b180830.0438 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0
        3.0.1-b02
        3.0.1
        3.0.2-b01
        3.0.2
        3.1.0-M1
        4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4 Latest Major
        +

        org.glassfish.jersey.bundles:jaxrs-ri

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.bundles
        Artifact Idjaxrs-ri
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-apache-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-apache-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-grizzly-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-grizzly-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-helidon-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-helidon-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-jdk-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-jdk-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-jetty-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-jetty-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.connectors:jersey-netty-connector

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.connectors
        Artifact Idjersey-netty-connector
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-grizzly2-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-grizzly2-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-grizzly2-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-grizzly2-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-jdk-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-jdk-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-jetty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-jetty-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-jetty-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-jetty-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-netty-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-netty-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-servlet-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-servlet-core
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers:jersey-container-simple-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers
        Artifact Idjersey-container-simple-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.containers.glassfish:jersey-gf-ejb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.containers.glassfish
        Artifact Idjersey-gf-ejb
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.core:jersey-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.core
        Artifact Idjersey-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.core:jersey-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.core
        Artifact Idjersey-common
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.core:jersey-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.core
        Artifact Idjersey-server
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-bean-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-bean-validation
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-declarative-linking

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-declarative-linking
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-entity-filtering

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-entity-filtering
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-metainf-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-metainf-services
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-bean-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-bean-validation
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-freemarker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-freemarker
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-jsp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-jsp
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-mvc-mustache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-mvc-mustache
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-proxy-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-proxy-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext:jersey-servlet-portability

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-servlet-portability
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6 Latest Major
        +

        org.glassfish.jersey.ext:jersey-spring4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-spring4
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6 Latest Major
        +

        org.glassfish.jersey.ext:jersey-spring5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-spring5
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6 Latest Major
        +

        org.glassfish.jersey.ext:jersey-wadl-doclet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext
        Artifact Idjersey-wadl-doclet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi-rs-inject

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi-rs-inject
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-ban-custom-hk2-binding

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-ban-custom-hk2-binding
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-servlet

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-servlet
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-transaction

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-transaction
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-cdi1x-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-cdi1x-validation
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.cdi:jersey-weld2-se

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.cdi
        Artifact Idjersey-weld2-se
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.microprofile:jersey-mp-config

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.microprofile
        Artifact Idjersey-mp-config
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.microprofile:jersey-mp-rest-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.microprofile
        Artifact Idjersey-mp-rest-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.rx:jersey-rx-client-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.rx
        Artifact Idjersey-rx-client-guava
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.rx
        Artifact Idjersey-rx-client-rxjava
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.ext.rx:jersey-rx-client-rxjava2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.ext.rx
        Artifact Idjersey-rx-client-rxjava2
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.inject:jersey-cdi2-se

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.inject
        Artifact Idjersey-cdi2-se
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.inject:jersey-hk2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.inject
        Artifact Idjersey-hk2
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-jaxb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-jaxb
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-binding

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-binding
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-jackson

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-jackson
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-jettison

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-jettison
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-json-processing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-json-processing
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-kryo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-kryo
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-moxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-moxy
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-multipart

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-multipart
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.media:jersey-media-sse

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.media
        Artifact Idjersey-media-sse
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth1-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth1-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth1-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth1-server
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth1-signature

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth1-signature
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.security:oauth2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.security
        Artifact Idoauth2-client
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework:jersey-test-framework-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework
        Artifact Idjersey-test-framework-core
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework:jersey-test-framework-util

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework
        Artifact Idjersey-test-framework-util
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-bundle
        Current Version2.35
        Scope
        Classifier
        Typepom
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-external

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-external
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-grizzly2
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-inmemory

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-inmemory
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-jdk-http
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-jetty
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-simple

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.glassfish.jersey.test-framework.providers
        Artifact Idjersey-test-framework-provider-simple
        Current Version2.35
        Scope
        Classifier
        Typejar
        Newer versions2.36
        2.37
        2.38
        2.39
        2.39.1
        2.40
        2.41 Latest Minor
        3.0.0-M1
        3.0.0-M6
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M1
        3.1.0-M2
        3.1.0-M3
        3.1.0-M7
        3.1.0-M8
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.glassfish.web:jakarta.servlet.jsp.jstl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.glassfish.web
        Artifact Idjakarta.servlet.jsp.jstl
        Current Version1.2.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0
        3.0.0
        3.0.1 Latest Major
        +

        org.hamcrest:hamcrest

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.hamcrest
        Artifact Idhamcrest
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        org.hamcrest:hamcrest-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.hamcrest
        Artifact Idhamcrest-core
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        org.hamcrest:hamcrest-library

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.hamcrest
        Artifact Idhamcrest-library
        Current Version2.2
        Scope
        Classifier
        Typejar
        +

        org.hibernate:hibernate-c3p0

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-c3p0
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-core
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-ehcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-ehcache
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7 Latest Major
        +

        org.hibernate:hibernate-entitymanager

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-entitymanager
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7 Latest Major
        +

        org.hibernate:hibernate-envers

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-envers
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-hikaricp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-hikaricp
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-java8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-java8
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7 Latest Major
        +

        org.hibernate:hibernate-jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-jcache
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-jpamodelgen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-jpamodelgen
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-micrometer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-micrometer
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-proxool

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-proxool
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-spatial

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-spatial
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-testing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-testing
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate:hibernate-vibur

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate
        Artifact Idhibernate-vibur
        Current Version5.6.15.Final
        Scope
        Classifier
        Typejar
        Newer versions6.0.0.Alpha2
        6.0.0.Alpha3
        6.0.0.Alpha4
        6.0.0.Alpha5
        6.0.0.Alpha6
        6.0.0.Alpha7
        6.0.0.Alpha8
        6.0.0.Alpha9
        6.0.0.Beta1
        6.0.0.Beta2
        6.0.0.Beta3
        6.0.0.CR1
        6.0.0.CR2
        6.0.0.Final
        6.0.1.Final
        6.0.2.Final
        6.1.0.Final
        6.1.1.Final
        6.1.2.Final
        6.1.3.Final
        6.1.4.Final
        6.1.5.Final
        6.1.6.Final
        6.1.7.Final
        6.2.0.CR1
        6.2.0.CR2
        6.2.0.CR3
        6.2.0.CR4
        6.2.0.Final
        6.2.1.Final
        6.2.2.Final
        6.2.3.Final
        6.2.4.Final
        6.2.5.Final
        6.2.6.Final
        6.2.7.Final
        6.2.8.Final
        6.2.9.Final
        6.2.10.Final
        6.2.11.Final
        6.2.12.Final
        6.2.13.Final
        6.2.14.Final
        6.2.15.Final
        6.2.16.Final
        6.2.17.Final
        6.2.18.Final
        6.2.19.Final
        6.2.20.Final
        6.2.21.Final
        6.2.22.Final
        6.3.0.CR1
        6.3.0.Final
        6.3.1.Final
        6.3.2.Final
        6.4.0.CR1
        6.4.0.Final
        6.4.1.Final
        6.4.2.Final
        6.4.3.Final
        6.4.4.Final Latest Major
        +

        org.hibernate.validator:hibernate-validator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate.validator
        Artifact Idhibernate-validator
        Current Version6.2.5.Final
        Scope
        Classifier
        Typejar
        Newer versions7.0.0.Alpha1
        7.0.0.Alpha2
        7.0.0.Alpha3
        7.0.0.Alpha4
        7.0.0.Alpha5
        7.0.0.Alpha6
        7.0.0.CR1
        7.0.0.Final
        7.0.1.Final
        7.0.2.Final
        7.0.3.Final
        7.0.4.Final
        7.0.5.Final
        8.0.0.Alpha1
        8.0.0.Alpha2
        8.0.0.Alpha3
        8.0.0.CR1
        8.0.0.CR2
        8.0.0.CR3
        8.0.0.Final
        8.0.1.Final Latest Major
        +

        org.hibernate.validator:hibernate-validator-annotation-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.hibernate.validator
        Artifact Idhibernate-validator-annotation-processor
        Current Version6.2.5.Final
        Scope
        Classifier
        Typejar
        Newer versions7.0.0.Alpha1
        7.0.0.Alpha2
        7.0.0.Alpha3
        7.0.0.Alpha4
        7.0.0.Alpha5
        7.0.0.Alpha6
        7.0.0.CR1
        7.0.0.Final
        7.0.1.Final
        7.0.2.Final
        7.0.3.Final
        7.0.4.Final
        7.0.5.Final
        8.0.0.Alpha1
        8.0.0.Alpha2
        8.0.0.Alpha3
        8.0.0.CR1
        8.0.0.CR2
        8.0.0.CR3
        8.0.0.Final
        8.0.1.Final Latest Major
        +

        org.hsqldb:hsqldb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.hsqldb
        Artifact Idhsqldb
        Current Version2.5.2
        Scope
        Classifier
        Typejar
        Newer versions2.6.0
        2.6.1
        2.7.0
        2.7.1
        2.7.2 Latest Minor
        +

        org.infinispan:infinispan-anchored-keys

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-anchored-keys
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-api
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-jdbc
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-jpa
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.Dev01
        14.0.0.Dev02 Latest Major
        +

        org.infinispan:infinispan-cachestore-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-rocksdb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-rocksdb
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cachestore-sql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cachestore-sql
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cdi-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cdi-common
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cdi-embedded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cdi-embedded
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cdi-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cdi-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-checkstyle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-checkstyle
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cli-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cli-client
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-client-hotrod

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-client-hotrod
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-client-rest

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-client-rest
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-cloudevents-integration

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-cloudevents-integration
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-clustered-counter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-clustered-counter
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-clustered-lock

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-clustered-lock
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-commons
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-commons-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-commons-test
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-component-annotations

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-component-annotations
        Current Version13.0.20.Final
        Scopeprovided
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-component-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-component-processor
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-console
        Current Version0.15.5.Final
        Scope
        Classifier
        Typejar
        Newer versions14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        15.0.0.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05 Latest Major
        +

        org.infinispan:infinispan-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-extended-statistics

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-extended-statistics
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-hibernate-cache-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-hibernate-cache-commons
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-hibernate-cache-spi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-hibernate-cache-spi
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-hibernate-cache-v53

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-hibernate-cache-v53
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.Dev01
        14.0.0.Dev02 Latest Major
        +

        org.infinispan:infinispan-jboss-marshalling

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jboss-marshalling
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-jcache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jcache
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-jcache-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jcache-commons
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-jcache-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-jcache-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-key-value-store-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-key-value-store-client
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-marshaller-kryo

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-kryo
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-marshaller-kryo-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-kryo-bundle
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-marshaller-protostuff

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-protostuff
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-marshaller-protostuff-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-marshaller-protostuff-bundle
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-multimap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-multimap
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-objectfilter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-objectfilter
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-query

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-query
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-query-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-query-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-query-dsl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-query-dsl
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-remote-query-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-remote-query-client
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-remote-query-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-remote-query-server
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-scripting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-scripting
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-hotrod

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-hotrod
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-memcached

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-memcached
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-rest

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-rest
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-router

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-router
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-runtime
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-testdriver-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-testdriver-core
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-testdriver-junit4

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-testdriver-junit4
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-server-testdriver-junit5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-server-testdriver-junit5
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-spring-boot-starter-embedded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring-boot-starter-embedded
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring-boot-starter-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring-boot-starter-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring5-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring5-common
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring5-embedded

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring5-embedded
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-spring5-remote

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-spring5-remote
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final Latest Major
        +

        org.infinispan:infinispan-tasks

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-tasks
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-tasks-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-tasks-api
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions13.0.21.Final Latest Incremental
        14.0.0.CR1
        14.0.0.CR2
        14.0.0.Final
        14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.1.Final
        14.0.2.Final
        14.0.3.Final
        14.0.4.Final
        14.0.5.Final
        14.0.6.Final
        14.0.7.Final
        14.0.8.Final
        14.0.9.Final
        14.0.10.Final
        14.0.11.Final
        14.0.12.Final
        14.0.13.Final
        14.0.14.Final
        14.0.15.Final
        14.0.16.Final
        14.0.17.Final
        14.0.18.Final
        14.0.19.Final
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan:infinispan-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.infinispan
        Artifact Idinfinispan-tools
        Current Version13.0.20.Final
        Scope
        Classifier
        Typejar
        Newer versions14.0.0.Dev01
        14.0.0.Dev02
        14.0.0.Dev03
        14.0.0.Dev04
        14.0.20.Final
        14.0.21.Final
        14.0.22.Final
        14.0.23.Final
        14.0.24.Final
        15.0.0.Dev01
        15.0.0.Dev02
        15.0.0.Dev03
        15.0.0.Dev04
        15.0.0.Dev05
        15.0.0.Dev06
        15.0.0.Dev07
        15.0.0.Dev08 Latest Major
        +

        org.infinispan.protostream:protostream

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.infinispan.protostream
        Artifact Idprotostream
        Current Version4.4.4.Final
        Scope
        Classifier
        Typejar
        Newer versions4.5.0.CR1
        4.5.0.Final
        4.5.0.Dev01
        4.5.0.Dev02
        4.5.0.Dev03
        4.5.0.Dev04
        4.5.0.Dev05
        4.5.1.Final
        4.6.0.Final
        4.6.1.Final
        4.6.2.Final
        4.6.3.Final
        4.6.4.Final
        4.6.5.Final Latest Minor
        5.0.0.Dev01
        14.0.0.CR2 Latest Major
        +

        org.infinispan.protostream:protostream-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.infinispan.protostream
        Artifact Idprotostream-processor
        Current Version4.4.4.Final
        Scopeprovided
        Classifier
        Typejar
        Newer versions4.5.0.CR1
        4.5.0.Final
        4.5.0.Dev01
        4.5.0.Dev02
        4.5.0.Dev03
        4.5.0.Dev04
        4.5.0.Dev05
        4.5.1.Final
        4.6.0.Final
        4.6.1.Final
        4.6.2.Final
        4.6.3.Final
        4.6.4.Final
        4.6.5.Final Latest Minor
        5.0.0.Dev01
        14.0.0.CR2 Latest Major
        +

        org.infinispan.protostream:protostream-types

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.infinispan.protostream
        Artifact Idprotostream-types
        Current Version4.4.4.Final
        Scope
        Classifier
        Typejar
        Newer versions4.5.0.CR1
        4.5.0.Final
        4.5.0.Dev01
        4.5.0.Dev02
        4.5.0.Dev03
        4.5.0.Dev04
        4.5.0.Dev05
        4.5.1.Final
        4.6.0.Final
        4.6.1.Final
        4.6.2.Final
        4.6.3.Final
        4.6.4.Final
        4.6.5.Final Latest Minor
        5.0.0.Dev01
        14.0.0.CR2 Latest Major
        +

        org.influxdb:influxdb-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.influxdb
        Artifact Idinfluxdb-java
        Current Version2.22
        Scope
        Classifier
        Typejar
        Newer versions2.23
        2.24 Latest Minor
        +

        org.jboss.logging:jboss-logging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jboss.logging
        Artifact Idjboss-logging
        Current Version3.4.3.Final
        Scope
        Classifier
        Typejar
        Newer versions3.5.0.Final
        3.5.1.Final
        3.5.2.Final
        3.5.3.Final Latest Minor
        +

        org.jdom:jdom2

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.jdom
        Artifact Idjdom2
        Current Version2.0.6.1
        Scope
        Classifier
        Typejar
        +

        org.jetbrains.kotlin:kotlin-compiler

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-compiler
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-compiler-embeddable

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-compiler-embeddable
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-daemon-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-daemon-client
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-main-kts

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-main-kts
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-osgi-bundle

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-osgi-bundle
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-reflect

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-reflect
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-script-runtime

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-script-runtime
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-script-util

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-script-util
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22 Latest Minor
        +

        org.jetbrains.kotlin:kotlin-scripting-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-scripting-ide-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-ide-services
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-scripting-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-jvm
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-scripting-jvm-host

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-scripting-jvm-host
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-jdk7

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-jdk7
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-jdk8
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-stdlib-js

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-stdlib-js
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-annotations-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-annotations-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-common

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-common
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-js

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-js
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-junit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-junit
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-junit5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-junit5
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlin:kotlin-test-testng

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlin
        Artifact Idkotlin-test-testng
        Current Version1.6.21
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0-RC2
        1.7.0
        1.7.10
        1.7.20-Beta
        1.7.20-RC
        1.7.20
        1.7.21
        1.7.22
        1.8.0-Beta
        1.8.0-RC
        1.8.0-RC2
        1.8.0
        1.8.0-343
        1.8.10
        1.8.20-Beta
        1.8.20-RC
        1.8.20-RC2
        1.8.20
        1.8.21
        1.8.22
        1.9.0-Beta
        1.9.0-RC
        1.9.0
        1.9.10
        1.9.20-Beta
        1.9.20-Beta2
        1.9.20-RC
        1.9.20-RC2
        1.9.20
        1.9.21
        1.9.22 Latest Minor
        2.0.0-Beta1
        2.0.0-Beta2
        2.0.0-Beta3 Latest Major
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-android

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-android
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-core
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-core-jvm
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-debug

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-debug
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-guava

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-guava
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-javafx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-javafx
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-jdk8

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-jdk8
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-jdk9

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-jdk9
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-play-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-play-services
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-reactive
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-reactor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-reactor
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-rx2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-rx2
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-rx3

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-rx3
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-slf4j
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-swing

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-swing
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-test
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jetbrains.kotlinx
        Artifact Idkotlinx-coroutines-test-jvm
        Current Version1.6.4
        Scope
        Classifier
        Typejar
        Newer versions1.7.0-Beta
        1.7.0-RC
        1.7.0
        1.7.1
        1.7.2
        1.7.3
        1.8.0-RC
        1.8.0-RC2 Latest Minor
        +

        org.jolokia:jolokia-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.jolokia
        Artifact Idjolokia-core
        Current Version1.7.2
        Scope
        Classifier
        Typejar
        +

        org.jooq:jooq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.jooq:jooq-codegen

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq-codegen
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.jooq:jooq-kotlin

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq-kotlin
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.jooq:jooq-meta

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.jooq
        Artifact Idjooq-meta
        Current Version3.14.16
        Scope
        Classifier
        Typejar
        Newer versions3.15.0
        3.15.1
        3.15.2
        3.15.3
        3.15.4
        3.15.5
        3.15.6
        3.15.7
        3.15.8
        3.15.9
        3.15.10
        3.15.11
        3.15.12
        3.16.0
        3.16.1
        3.16.2
        3.16.3
        3.16.4
        3.16.5
        3.16.6
        3.16.7
        3.16.8
        3.16.9
        3.16.10
        3.16.11
        3.16.12
        3.16.13
        3.16.14
        3.16.15
        3.16.16
        3.16.17
        3.16.18
        3.16.19
        3.16.20
        3.16.21
        3.16.22
        3.16.23
        3.17.0
        3.17.1
        3.17.2
        3.17.3
        3.17.4
        3.17.5
        3.17.6
        3.17.7
        3.17.8
        3.17.9
        3.17.10
        3.17.11
        3.17.12
        3.17.13
        3.17.14
        3.17.15
        3.17.16
        3.17.17
        3.17.18
        3.17.19
        3.18.0
        3.18.1
        3.18.2
        3.18.3
        3.18.4
        3.18.5
        3.18.6
        3.18.7
        3.18.8
        3.18.9
        3.18.10
        3.19.0
        3.19.1
        3.19.2
        3.19.3 Latest Minor
        +

        org.junit.jupiter:junit-jupiter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-api
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-engine
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-migrationsupport

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-migrationsupport
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.jupiter:junit-jupiter-params

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.jupiter
        Artifact Idjunit-jupiter-params
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-commons
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-console

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-console
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-engine
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-jfr

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-jfr
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-launcher

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-launcher
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-reporting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-reporting
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-runner

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-runner
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite-api
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite-commons
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-suite-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-suite-engine
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.platform:junit-platform-testkit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.platform
        Artifact Idjunit-platform-testkit
        Current Version1.8.2
        Scope
        Classifier
        Typejar
        Newer versions1.9.0-M1
        1.9.0-RC1
        1.9.0
        1.9.1
        1.9.2
        1.9.3
        1.10.0-M1
        1.10.0-RC1
        1.10.0-RC2
        1.10.0
        1.10.1
        1.10.2 Latest Minor
        +

        org.junit.vintage:junit-vintage-engine

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.junit.vintage
        Artifact Idjunit-vintage-engine
        Current Version5.8.2
        Scope
        Classifier
        Typejar
        Newer versions5.9.0-M1
        5.9.0-RC1
        5.9.0
        5.9.1
        5.9.2
        5.9.3
        5.10.0-M1
        5.10.0-RC1
        5.10.0-RC2
        5.10.0
        5.10.1
        5.10.2 Latest Minor
        +

        org.liquibase:liquibase-cdi

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.liquibase
        Artifact Idliquibase-cdi
        Current Version4.9.1
        Scope
        Classifier
        Typejar
        Newer versions4.10.0
        4.11.0
        4.12.0
        4.13.0
        4.14.0
        4.15.0
        4.16.0
        4.16.1
        4.17.0
        4.17.1
        4.17.2
        4.18.0
        4.19.0
        4.19.1
        4.20.0
        4.21.0
        4.21.1
        4.22.0
        4.23.0
        4.23.1
        4.23.2
        4.24.0
        4.25.0
        4.25.1
        4.26.0 Latest Minor
        +

        org.liquibase:liquibase-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.liquibase
        Artifact Idliquibase-core
        Current Version4.9.1
        Scope
        Classifier
        Typejar
        Newer versions4.10.0
        4.11.0
        4.12.0
        4.13.0
        4.14.0
        4.15.0
        4.16.0
        4.16.1
        4.17.0
        4.17.1
        4.17.2
        4.18.0
        4.19.0
        4.19.1
        4.20.0
        4.21.0
        4.21.1
        4.22.0
        4.23.0
        4.23.1
        4.23.2
        4.24.0
        4.25.0
        4.25.1
        4.26.0 Latest Minor
        +

        org.mariadb:r2dbc-mariadb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.mariadb
        Artifact Idr2dbc-mariadb
        Current Version1.1.2
        Scope
        Classifier
        Typejar
        Newer versions1.1.3
        1.1.4 Latest Incremental
        +

        org.mariadb.jdbc:mariadb-java-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mariadb.jdbc
        Artifact Idmariadb-java-client
        Current Version3.1.4
        Scope
        Classifier
        Typejar
        Newer versions3.2.0
        3.3.0
        3.3.1
        3.3.2 Latest Minor
        +

        org.messaginghub:pooled-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.messaginghub
        Artifact Idpooled-jms
        Current Version1.2.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        3.0.0
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5 Latest Major
        +

        org.mockito:mockito-android

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-android
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-core
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-errorprone

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-errorprone
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-inline

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-inline
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0 Latest Major
        +

        org.mockito:mockito-junit-jupiter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-junit-jupiter
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mockito:mockito-proxy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mockito
        Artifact Idmockito-proxy
        Current Version4.5.1
        Scope
        Classifier
        Typejar
        Newer versions4.6.0
        4.6.1
        4.7.0
        4.8.0
        4.8.1
        4.9.0
        4.10.0
        4.11.0 Latest Minor
        5.0.0
        5.1.0
        5.1.1
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0 Latest Major
        +

        org.mongodb:bson

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idbson
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:bson-record-codec

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idbson-record-codec
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-core
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-legacy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-legacy
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-reactivestreams

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-reactivestreams
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mongodb:mongodb-driver-sync

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.mongodb
        Artifact Idmongodb-driver-sync
        Current Version4.6.1
        Scope
        Classifier
        Typejar
        Newer versions4.7.0-beta0
        4.7.0
        4.7.1
        4.7.2
        4.8.0-beta0
        4.8.0-rc0
        4.8.0
        4.8.1
        4.8.2
        4.9.0
        4.9.1
        4.10.0-alpha0
        4.10.0-alpha1
        4.10.0
        4.10.1
        4.10.2
        4.11.0
        4.11.1 Latest Minor
        5.0.0-beta0 Latest Major
        +

        org.mortbay.jasper:apache-el

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.mortbay.jasper
        Artifact Idapache-el
        Current Version9.0.52
        Scope
        Classifier
        Typejar
        Newer versions9.0.83
        9.0.83.1 Latest Incremental
        10.0.0-M5
        10.0.0-M7
        10.0.0-M10
        10.0.0-1-M7
        10.0.2
        10.0.7
        10.0.10
        10.0.14
        10.0.27
        10.1.0-M16
        10.1.1
        10.1.5
        10.1.7
        10.1.16 Latest Major
        +

        org.mybatis:mybatis

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis
        Artifact Idmybatis
        Current Version3.5.15
        Scope
        Classifier
        Typejar
        +

        org.mybatis:mybatis-spring

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.mybatis
        Artifact Idmybatis-spring
        Current Version2.1.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        org.mybatis.dynamic-sql:mybatis-dynamic-sql

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.dynamic-sql
        Artifact Idmybatis-dynamic-sql
        Current Version1.5.0
        Scope
        Classifier
        Typejar
        +

        org.mybatis.scripting:mybatis-freemarker

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.scripting
        Artifact Idmybatis-freemarker
        Current Version1.2.4
        Scope
        Classifier
        Typejar
        +

        org.mybatis.scripting:mybatis-thymeleaf

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.scripting
        Artifact Idmybatis-thymeleaf
        Current Version1.0.4
        Scope
        Classifier
        Typejar
        +

        org.mybatis.scripting:mybatis-velocity

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis.scripting
        Artifact Idmybatis-velocity
        Current Version2.1.2
        Scope
        Classifier
        Typejar
        +

        org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.mybatis.spring.boot
        Artifact Idmybatis-spring-boot-autoconfigure
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        org.mybatis.spring.boot:mybatis-spring-boot-starter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.mybatis.spring.boot
        Artifact Idmybatis-spring-boot-starter
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        +

        org.neo4j.driver:neo4j-java-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.neo4j.driver
        Artifact Idneo4j-java-driver
        Current Version4.4.12
        Scope
        Classifier
        Typejar
        Newer versions4.4.13 Latest Incremental
        5.0.0-alpha01
        5.0.0-alpha02
        5.0.0-alpha03
        5.0.0-beta01
        5.0.0
        5.1.0
        5.2.0
        5.3.0
        5.3.1
        5.4.0
        5.5.0
        5.6.0
        5.7.0
        5.8.0
        5.9.0
        5.10.0
        5.11.0
        5.12.0
        5.13.0
        5.14.0
        5.15.0
        5.16.0
        5.17.0 Latest Major
        +

        org.postgresql:postgresql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.postgresql
        Artifact Idpostgresql
        Current Version42.3.8
        Scope
        Classifier
        Typejar
        Newer versions42.4.0
        42.4.1
        42.4.2
        42.4.3
        42.5.0
        42.5.1
        42.5.2
        42.5.3
        42.5.4
        42.6.0
        42.7.0
        42.7.1 Latest Minor
        +

        org.postgresql:r2dbc-postgresql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.postgresql
        Artifact Idr2dbc-postgresql
        Current Version0.9.2.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions0.9.3.RELEASE Latest Incremental
        1.0.0.RC1
        1.0.0.RELEASE
        1.0.1.RELEASE
        1.0.2.RELEASE
        1.0.3.RELEASE
        1.0.4.RELEASE Latest Major
        +

        org.projectlombok:lombok

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.projectlombok
        Artifact Idlombok
        Current Version1.18.30
        Scope
        Classifier
        Typejar
        +

        org.quartz-scheduler:quartz

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.quartz-scheduler
        Artifact Idquartz
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-rc1
        2.4.0-rc2
        2.5.0-rc1 Latest Minor
        +

        org.quartz-scheduler:quartz-jobs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.quartz-scheduler
        Artifact Idquartz-jobs
        Current Version2.3.2
        Scope
        Classifier
        Typejar
        Newer versions2.4.0-rc1
        2.4.0-rc2
        2.5.0-rc1 Latest Minor
        +

        org.reactivestreams:reactive-streams

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.reactivestreams
        Artifact Idreactive-streams
        Current Version1.0.4
        Scope
        Classifier
        Typejar
        +

        org.seleniumhq.selenium:htmlunit-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idhtmlunit-driver
        Current Version3.61.0
        Scope
        Classifier
        Typejar
        Newer versions3.62.0
        3.63.0
        3.64.0 Latest Minor
        4.5.0
        4.5.2
        4.6.0
        4.7.0
        4.7.2
        4.8.0
        4.8.1
        4.8.1.1
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.13.0 Latest Major
        +

        org.seleniumhq.selenium:lift

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idlift
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-api
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-chrome-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-chrome-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-chromium-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-chromium-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v100

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v100
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v101

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v101
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v85

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v85
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-devtools-v99

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-devtools-v99
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        +

        org.seleniumhq.selenium:selenium-edge-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-edge-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-firefox-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-firefox-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-grid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-grid
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-http
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-ie-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-ie-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-java

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-java
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-json
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-opera-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-opera-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-remote-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-remote-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-safari-driver

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-safari-driver
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-session-map-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-session-map-jdbc
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-session-map-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-session-map-redis
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.seleniumhq.selenium:selenium-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.seleniumhq.selenium
        Artifact Idselenium-support
        Current Version4.1.4
        Scope
        Classifier
        Typejar
        Newer versions4.2.0
        4.2.1
        4.2.2
        4.3.0
        4.4.0
        4.5.0
        4.5.1
        4.5.2
        4.5.3
        4.6.0
        4.7.0
        4.7.1
        4.7.2
        4.8.0
        4.8.1
        4.8.2
        4.8.3
        4.9.0
        4.9.1
        4.10.0
        4.11.0
        4.12.0
        4.12.1
        4.13.0
        4.14.0
        4.14.1
        4.15.0
        4.16.0
        4.16.1
        4.17.0 Latest Minor
        +

        org.skyscreamer:jsonassert

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.skyscreamer
        Artifact Idjsonassert
        Current Version1.5.1
        Scope
        Classifier
        Typejar
        +

        org.slf4j:jcl-over-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idjcl-over-slf4j
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:jul-to-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idjul-to-slf4j
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:log4j-over-slf4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idlog4j-over-slf4j
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-api

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-api
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-ext

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-ext
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-jcl

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.slf4j
        Artifact Idslf4j-jcl
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        +

        org.slf4j:slf4j-jdk14

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-jdk14
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-log4j12

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-log4j12
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-nop

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-nop
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.slf4j:slf4j-simple

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.slf4j
        Artifact Idslf4j-simple
        Current Version1.7.36
        Scope
        Classifier
        Typejar
        Newer versions1.8.0-alpha0
        1.8.0-alpha1
        1.8.0-alpha2
        1.8.0-beta0
        1.8.0-beta1
        1.8.0-beta2
        1.8.0-beta4 Latest Minor
        2.0.0-alpha0
        2.0.0-alpha1
        2.0.0-alpha2
        2.0.0-alpha3
        2.0.0-alpha4
        2.0.0-alpha5
        2.0.0-alpha6
        2.0.0-alpha7
        2.0.0-beta0
        2.0.0-beta1
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.0.8
        2.0.9
        2.0.10
        2.0.11
        2.0.12
        2.1.0-alpha0
        2.1.0-alpha1 Latest Major
        +

        org.springframework:spring-aop

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-aop
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-aspects

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-aspects
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-beans

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-beans
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-context

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-context
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-context-indexer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-context-indexer
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-context-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-context-support
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-core
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-expression

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-expression
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-instrument

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-instrument
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-jcl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-jcl
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-jdbc
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-jms
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-messaging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-messaging
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-orm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-orm
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-oxm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-oxm
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-r2dbc
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-test
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-tx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-tx
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-web
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-webflux

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-webflux
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-webmvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-webmvc
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework:spring-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework
        Artifact Idspring-websocket
        Current Version5.3.31
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-RC1
        6.0.0-RC2
        6.0.0-RC3
        6.0.0-RC4
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.0.10
        6.0.11
        6.0.12
        6.0.13
        6.0.14
        6.0.15
        6.0.16
        6.1.0-M1
        6.1.0-M2
        6.1.0-M3
        6.1.0-M4
        6.1.0-M5
        6.1.0-RC1
        6.1.0-RC2
        6.1.0
        6.1.1
        6.1.2
        6.1.3 Latest Major
        +

        org.springframework.amqp:spring-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-amqp
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit-junit

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit-junit
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit-stream

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit-stream
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.amqp:spring-rabbit-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.amqp
        Artifact Idspring-rabbit-test
        Current Version2.4.17
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.batch:spring-batch-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-core
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.batch:spring-batch-infrastructure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-infrastructure
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.batch:spring-batch-integration

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-integration
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.batch:spring-batch-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.batch
        Artifact Idspring-batch-test
        Current Version4.3.10
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-M7
        5.0.0-M8
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.1.0-M1
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0 Latest Major
        +

        org.springframework.boot:spring-boot

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-actuator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-actuator
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-actuator-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-actuator-autoconfigure
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-autoconfigure
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-autoconfigure-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-autoconfigure-processor
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-buildpack-platform

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-buildpack-platform
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-configuration-metadata

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-configuration-metadata
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-configuration-processor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-configuration-processor
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-devtools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-devtools
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-jarmode-layertools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-jarmode-layertools
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-loader

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-loader
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-loader-tools

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-loader-tools
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-properties-migrator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-properties-migrator
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-activemq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-activemq
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-actuator

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-actuator
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-amqp
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-aop

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-aop
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-artemis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-artemis
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-batch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-batch
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-cache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-cache
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-cassandra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-cassandra
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-cassandra-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-cassandra-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-couchbase

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-couchbase
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-couchbase-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-couchbase-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-elasticsearch
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-jdbc
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-jpa
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-ldap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-ldap
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-mongodb
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-mongodb-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-mongodb-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-neo4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-neo4j
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-r2dbc
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-redis
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-redis-reactive

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-redis-reactive
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-data-rest

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-data-rest
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-freemarker

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-freemarker
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-graphql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-graphql
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-groovy-templates

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-groovy-templates
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-hateoas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-hateoas
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-integration

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-integration
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jdbc
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jersey

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jersey
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jetty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jetty
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jooq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jooq
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-json

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-json
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-jta-atomikos

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-jta-atomikos
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        +

        org.springframework.boot:spring-boot-starter-log4j2

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-log4j2
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-logging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-logging
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-mail

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-mail
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-mustache

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-mustache
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-oauth2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-oauth2-client
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-oauth2-resource-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-oauth2-resource-server
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-quartz

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-quartz
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-reactor-netty

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-reactor-netty
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-rsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-rsocket
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-security
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-test
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-thymeleaf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-thymeleaf
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-tomcat

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-tomcat
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-undertow

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-undertow
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-validation

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-validation
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-web
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-web-services

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-web-services
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-webflux

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-webflux
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-starter-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-starter-websocket
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-test
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.boot:spring-boot-test-autoconfigure

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-test-autoconfigure
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        org.springframework.data:spring-data-cassandra

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-cassandra
        Current Version3.4.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-commons

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-commons
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-couchbase

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-couchbase
        Current Version4.4.18
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        5.0.10
        5.0.11
        5.0.12
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0
        5.1.1
        5.1.2
        5.1.3
        5.1.4
        5.1.5
        5.1.6
        5.1.7
        5.1.8
        5.2.0-M1
        5.2.0-M2
        5.2.0-M3
        5.2.0-RC1
        5.2.0
        5.2.1
        5.2.2 Latest Major
        +

        org.springframework.data:spring-data-elasticsearch

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-elasticsearch
        Current Version4.4.18
        Scope
        Classifier
        Typejar
        Newer versions5.0.0-M1
        5.0.0-M2
        5.0.0-M3
        5.0.0-M4
        5.0.0-M5
        5.0.0-M6
        5.0.0-RC1
        5.0.0-RC2
        5.0.0
        5.0.1
        5.0.2
        5.0.3
        5.0.4
        5.0.5
        5.0.6
        5.0.7
        5.0.8
        5.0.9
        5.0.10
        5.0.11
        5.0.12
        5.1.0-M2
        5.1.0-M3
        5.1.0-RC1
        5.1.0
        5.1.1
        5.1.2
        5.1.3
        5.1.4
        5.1.5
        5.1.6
        5.1.7
        5.1.8
        5.2.0-M1
        5.2.0-M2
        5.2.0-M3
        5.2.0-RC1
        5.2.0
        5.2.1
        5.2.2 Latest Major
        +

        org.springframework.data:spring-data-envers

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-envers
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-geode

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-geode
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6 Latest Major
        +

        org.springframework.data:spring-data-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-jdbc
        Current Version2.4.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-jpa
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-keyvalue

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-keyvalue
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-ldap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-ldap
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-mongodb
        Current Version3.4.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-neo4j

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-neo4j
        Current Version6.3.18
        Scope
        Classifier
        Typejar
        Newer versions7.0.0-M1
        7.0.0-M2
        7.0.0-M3
        7.0.0-M4
        7.0.0-M5
        7.0.0-M6
        7.0.0-RC1
        7.0.0-RC2
        7.0.0
        7.0.1
        7.0.2
        7.0.3
        7.0.4
        7.0.5
        7.0.6
        7.0.7
        7.0.8
        7.0.9
        7.0.10
        7.0.11
        7.0.12
        7.1.0-M1
        7.1.0-M2
        7.1.0-M3
        7.1.0-RC1
        7.1.0
        7.1.1
        7.1.2
        7.1.3
        7.1.4
        7.1.5
        7.1.6
        7.1.7
        7.1.8
        7.2.0-M1
        7.2.0-M2
        7.2.0-M3
        7.2.0-RC1
        7.2.0
        7.2.1
        7.2.2 Latest Major
        +

        org.springframework.data:spring-data-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-r2dbc
        Current Version1.5.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-redis
        Current Version2.7.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-relational

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-relational
        Current Version2.4.18
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.1.0-M2
        3.1.0-M3
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1
        3.2.2 Latest Major
        +

        org.springframework.data:spring-data-rest-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-rest-core
        Current Version3.7.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-rest-hal-explorer

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-rest-hal-explorer
        Current Version3.7.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.data:spring-data-rest-webmvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.data
        Artifact Idspring-data-rest-webmvc
        Current Version3.7.18
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-M4
        4.0.0-M5
        4.0.0-M6
        4.0.0-RC1
        4.0.0-RC2
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10
        4.0.11
        4.0.12
        4.1.0-M2
        4.1.0-M3
        4.1.0-RC1
        4.1.0
        4.1.1
        4.1.2
        4.1.3
        4.1.4
        4.1.5
        4.1.6
        4.1.7
        4.1.8
        4.2.0-M1
        4.2.0-M2
        4.2.0-M3
        4.2.0-RC1
        4.2.0
        4.2.1
        4.2.2 Latest Major
        +

        org.springframework.experimental:spring-aot

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.experimental
        Artifact Idspring-aot
        Current Version0.12.2
        Scope
        Classifier
        Typejar
        +

        org.springframework.experimental:spring-native

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.experimental
        Artifact Idspring-native
        Current Version0.12.2
        Scope
        Classifier
        Typejar
        +

        org.springframework.graphql:spring-graphql

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.graphql
        Artifact Idspring-graphql
        Current Version1.0.6
        Scope
        Classifier
        Typejar
        Newer versions1.1.0-M1
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.2.0-M1
        1.2.0-RC1
        1.2.0
        1.2.1
        1.2.2
        1.2.3
        1.2.4 Latest Minor
        +

        org.springframework.graphql:spring-graphql-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.graphql
        Artifact Idspring-graphql-test
        Current Version1.0.6
        Scope
        Classifier
        Typejar
        Newer versions1.1.0-M1
        1.1.0-RC1
        1.1.0
        1.1.1
        1.1.2
        1.1.3
        1.1.4
        1.1.5
        1.1.6
        1.1.7
        1.2.0-M1
        1.2.0-RC1
        1.2.0
        1.2.1
        1.2.2
        1.2.3
        1.2.4 Latest Minor
        +

        org.springframework.hateoas:spring-hateoas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.hateoas
        Artifact Idspring-hateoas
        Current Version1.5.6
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0-M2
        2.0.0-M3
        2.0.0-M4
        2.0.0-M5
        2.0.0-M6
        2.0.0-RC1
        2.0.0-RC2
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5
        2.0.6
        2.0.7
        2.1.0-M1
        2.1.0-RC1
        2.1.0
        2.1.1
        2.1.2
        2.1.3
        2.2.0-M1
        2.2.0-M2
        2.2.0-RC1
        2.2.0 Latest Major
        +

        org.springframework.integration:spring-integration-amqp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-amqp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-core
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-event

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-event
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-feed

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-feed
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-file

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-file
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-ftp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-ftp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-gemfire

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-gemfire
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5 Latest Major
        +

        org.springframework.integration:spring-integration-groovy

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-groovy
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-http

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-http
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-ip

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-ip
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jdbc
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jms

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jms
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jmx

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jmx
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-jpa

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-jpa
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-kafka

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-kafka
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-mail

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-mail
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-mongodb
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-mqtt

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-mqtt
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-r2dbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-r2dbc
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-redis
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-rmi

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-rmi
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        +

        org.springframework.integration:spring-integration-rsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-rsocket
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-scripting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-scripting
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-security
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-sftp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-sftp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-stomp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-stomp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-stream

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-stream
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-syslog

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-syslog
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-test
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-test-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-test-support
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-webflux

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-webflux
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-websocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-websocket
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-ws

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-ws
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-xml
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-xmpp

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-xmpp
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-zeromq

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-zeromq
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.integration:spring-integration-zookeeper

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.integration
        Artifact Idspring-integration-zookeeper
        Current Version5.5.20
        Scope
        Classifier
        Typejar
        Newer versions6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.0.9
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0
        6.2.1 Latest Major
        +

        org.springframework.kafka:spring-kafka

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.kafka
        Artifact Idspring-kafka
        Current Version2.8.11
        Scope
        Classifier
        Typejar
        Newer versions2.9.0-M1
        2.9.0-RC1
        2.9.0
        2.9.1
        2.9.2
        2.9.3
        2.9.4
        2.9.5
        2.9.6
        2.9.7
        2.9.8
        2.9.9
        2.9.10
        2.9.11
        2.9.12
        2.9.13 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.kafka:spring-kafka-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.kafka
        Artifact Idspring-kafka-test
        Current Version2.8.11
        Scope
        Classifier
        Typejar
        Newer versions2.9.0-M1
        2.9.0-RC1
        2.9.0
        2.9.1
        2.9.2
        2.9.3
        2.9.4
        2.9.5
        2.9.6
        2.9.7
        2.9.8
        2.9.9
        2.9.10
        2.9.11
        2.9.12
        2.9.13 Latest Minor
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-M6
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-core
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-core-tiger

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-core-tiger
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1 Latest Major
        +

        org.springframework.ldap:spring-ldap-ldif-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-ldif-core
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-odm

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-odm
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.ldap:spring-ldap-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ldap
        Artifact Idspring-ldap-test
        Current Version2.4.1
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0
        3.2.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-asciidoctor

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-asciidoctor
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-core
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-mockmvc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-mockmvc
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-restassured

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-restassured
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.restdocs:spring-restdocs-webtestclient

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.restdocs
        Artifact Idspring-restdocs-webtestclient
        Current Version2.0.8.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0
        3.0.1 Latest Major
        +

        org.springframework.retry:spring-retry

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.retry
        Artifact Idspring-retry
        Current Version1.3.4
        Scope
        Classifier
        Typejar
        Newer versions2.0.0-M1
        2.0.0-RC1
        2.0.0-RC2
        2.0.0
        2.0.1
        2.0.2
        2.0.3
        2.0.4
        2.0.5 Latest Major
        +

        org.springframework.security:spring-security-acl

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-acl
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-aspects

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-aspects
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-cas

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-cas
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-config

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-config
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-core
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-crypto

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-crypto
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-data

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-data
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-ldap

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-ldap
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-messaging

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-messaging
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-client

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-client
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-core
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-jose

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-jose
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-oauth2-resource-server

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-oauth2-resource-server
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-openid

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-openid
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1 Latest Major
        +

        org.springframework.security:spring-security-remoting

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-remoting
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        +

        org.springframework.security:spring-security-rsocket

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-rsocket
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-saml2-service-provider

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-saml2-service-provider
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-taglibs

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-taglibs
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-test
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.security:spring-security-web

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.springframework.security
        Artifact Idspring-security-web
        Current Version5.7.11
        Scope
        Classifier
        Typejar
        Newer versions5.8.0-M1
        5.8.0-M2
        5.8.0-M3
        5.8.0-RC1
        5.8.0
        5.8.1
        5.8.2
        5.8.3
        5.8.4
        5.8.5
        5.8.6
        5.8.7
        5.8.8
        5.8.9 Latest Minor
        6.0.0-M1
        6.0.0-M2
        6.0.0-M3
        6.0.0-M4
        6.0.0-M5
        6.0.0-M6
        6.0.0-M7
        6.0.0-RC1
        6.0.0-RC2
        6.0.0
        6.0.1
        6.0.2
        6.0.3
        6.0.4
        6.0.5
        6.0.6
        6.0.7
        6.0.8
        6.1.0-M1
        6.1.0-M2
        6.1.0-RC1
        6.1.0
        6.1.1
        6.1.2
        6.1.3
        6.1.4
        6.1.5
        6.1.6
        6.2.0-M1
        6.2.0-M2
        6.2.0-M3
        6.2.0-RC1
        6.2.0-RC2
        6.2.0
        6.2.1
        6.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-core
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-data-geode

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer incremental version available. Incremental updates are typically passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-data-geode
        Current Version2.7.1
        Scope
        Classifier
        Typejar
        Newer versions2.7.2 Latest Incremental
        3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5 Latest Major
        +

        org.springframework.session:spring-session-data-mongodb

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-data-mongodb
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-data-redis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-data-redis
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-hazelcast

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-hazelcast
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.session:spring-session-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.session
        Artifact Idspring-session-jdbc
        Current Version2.7.4
        Scope
        Classifier
        Typejar
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.1.0-M1
        3.1.0-RC1
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.2.0-M1
        3.2.0-RC1
        3.2.0
        3.2.1
        3.3.0-M1 Latest Major
        +

        org.springframework.ws:spring-ws-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-core
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-ws-security

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-security
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-ws-support

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-support
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-ws-test

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-ws-test
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.springframework.ws:spring-xml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.ws
        Artifact Idspring-xml
        Current Version3.1.8
        Scope
        Classifier
        Typejar
        Newer versions4.0.0-M1
        4.0.0-M2
        4.0.0-M3
        4.0.0-RC1
        4.0.0
        4.0.1
        4.0.2
        4.0.3
        4.0.4
        4.0.5
        4.0.6
        4.0.7
        4.0.8
        4.0.9
        4.0.10 Latest Major
        +

        org.thymeleaf:thymeleaf

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.thymeleaf
        Artifact Idthymeleaf
        Current Version3.0.15.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.1.0.M1
        3.1.0.M2
        3.1.0.M3
        3.1.0.RC1
        3.1.0.RC2
        3.1.0.RELEASE
        3.1.1.RELEASE
        3.1.2.RELEASE Latest Minor
        +

        org.thymeleaf:thymeleaf-spring5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.thymeleaf
        Artifact Idthymeleaf-spring5
        Current Version3.0.15.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.1.0.M1
        3.1.0.M2
        3.1.0.M3
        3.1.0.RC1
        3.1.0.RC2
        3.1.0.RELEASE
        3.1.1.RELEASE
        3.1.2.RELEASE Latest Minor
        +

        org.thymeleaf.extras:thymeleaf-extras-java8time

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.thymeleaf.extras
        Artifact Idthymeleaf-extras-java8time
        Current Version3.0.4.RELEASE
        Scope
        Classifier
        Typejar
        +

        org.thymeleaf.extras:thymeleaf-extras-springsecurity5

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.thymeleaf.extras
        Artifact Idthymeleaf-extras-springsecurity5
        Current Version3.0.5.RELEASE
        Scope
        Classifier
        Typejar
        Newer versions3.1.0.M1
        3.1.0.RC1
        3.1.0.RC2
        3.1.0.RELEASE
        3.1.1.RELEASE
        3.1.2.RELEASE Latest Minor
        +

        org.webjars:webjars-locator-core

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.webjars
        Artifact Idwebjars-locator-core
        Current Version0.50
        Scope
        Classifier
        Typejar
        Newer versions0.51
        0.52
        0.53
        0.54
        0.55 Latest Minor
        +

        org.xerial:sqlite-jdbc

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.xerial
        Artifact Idsqlite-jdbc
        Current Version3.36.0.3
        Scope
        Classifier
        Typejar
        Newer versions3.39.2.0
        3.39.2.1
        3.39.3.0
        3.39.4.0
        3.39.4.1
        3.40.0.0
        3.40.1.0
        3.41.0.0
        3.41.0.1
        3.41.2.0
        3.41.2.1
        3.41.2.2
        3.42.0.0
        3.42.0.1
        3.43.0.0
        3.43.2.0
        3.43.2.1
        3.43.2.2
        3.44.0.0
        3.44.1.0
        3.45.0.0
        3.45.1.0 Latest Minor
        +

        org.xmlunit:xmlunit-assertj

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-assertj
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-assertj3

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-assertj3
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-core

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-core
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-legacy

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-legacy
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-matchers

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-matchers
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.xmlunit:xmlunit-placeholders

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.xmlunit
        Artifact Idxmlunit-placeholders
        Current Version2.9.1
        Scope
        Classifier
        Typejar
        +

        org.yaml:snakeyaml

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.yaml
        Artifact Idsnakeyaml
        Current Version1.30
        Scope
        Classifier
        Typejar
        Newer versions1.31
        1.32
        1.33 Latest Minor
        2.0
        2.1
        2.2 Latest Major
        +

        redis.clients:jedis

        + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idredis.clients
        Artifact Idjedis
        Current Version3.8.0
        Scope
        Classifier
        Typejar
        Newer versions3.9.0
        3.10.0 Latest Minor
        4.0.0-beta1
        4.0.0-beta2
        4.0.0-beta3
        4.0.0-beta4
        4.0.0-RC1
        4.0.0-rc2
        4.0.0
        4.0.1
        4.1.0
        4.1.1
        4.2.0-m1
        4.2.0-rc1
        4.2.0
        4.2.1
        4.2.2
        4.2.3
        4.3.0-m1
        4.3.0-m2
        4.3.0
        4.3.1
        4.3.2
        4.4.0-m1
        4.4.0-m2
        4.4.0-rc1
        4.4.0
        4.4.1
        4.4.2
        4.4.3
        4.4.4
        4.4.5
        4.4.6
        5.0.0-alpha1
        5.0.0-alpha2
        5.0.0-beta1
        5.0.0-beta2
        5.0.0
        5.0.1
        5.0.2
        5.1.0
        5.2.0-alpha2 Latest Major
        +

        wsdl4j:wsdl4j

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idwsdl4j
        Artifact Idwsdl4j
        Current Version1.6.3
        Scope
        Classifier
        Typejar
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/distribution-management.html b/zh_CN/distribution-management.html new file mode 100644 index 0000000..9576d29 --- /dev/null +++ b/zh_CN/distribution-management.html @@ -0,0 +1,79 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目分发管理 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        概览

        +

        下面是本项目的分发管理信息。

        +

        Repository - ossrh

        https://oss.sonatype.org/service/local/staging/deploy/maven2/
        +

        Snapshot Repository - ossrh

        https://oss.sonatype.org/content/repositories/snapshots
        +

        网站 - gh-pages-scm

        +

        scm:git:ssh://git@github.com/mybatis/spring-native.git/mybatis-spring-native-docs

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/fonts/glyphicons-halflings-regular.eot b/zh_CN/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..423bd5d Binary files /dev/null and b/zh_CN/fonts/glyphicons-halflings-regular.eot differ diff --git a/zh_CN/fonts/glyphicons-halflings-regular.svg b/zh_CN/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..c8f06d9 --- /dev/null +++ b/zh_CN/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/zh_CN/fonts/glyphicons-halflings-regular.ttf b/zh_CN/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..a498ef4 Binary files /dev/null and b/zh_CN/fonts/glyphicons-halflings-regular.ttf differ diff --git a/zh_CN/fonts/glyphicons-halflings-regular.woff b/zh_CN/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..d83c539 Binary files /dev/null and b/zh_CN/fonts/glyphicons-halflings-regular.woff differ diff --git a/zh_CN/images/accessories-text-editor.png b/zh_CN/images/accessories-text-editor.png new file mode 100644 index 0000000..abc3366 Binary files /dev/null and b/zh_CN/images/accessories-text-editor.png differ diff --git a/zh_CN/images/add.gif b/zh_CN/images/add.gif new file mode 100644 index 0000000..1cb3dbf Binary files /dev/null and b/zh_CN/images/add.gif differ diff --git a/zh_CN/images/apache-maven-project-2.png b/zh_CN/images/apache-maven-project-2.png new file mode 100644 index 0000000..a44db6e Binary files /dev/null and b/zh_CN/images/apache-maven-project-2.png differ diff --git a/zh_CN/images/application-certificate.png b/zh_CN/images/application-certificate.png new file mode 100644 index 0000000..cc6aff6 Binary files /dev/null and b/zh_CN/images/application-certificate.png differ diff --git a/zh_CN/images/close.gif b/zh_CN/images/close.gif new file mode 100644 index 0000000..1c26bbc Binary files /dev/null and b/zh_CN/images/close.gif differ diff --git a/zh_CN/images/contact-new.png b/zh_CN/images/contact-new.png new file mode 100644 index 0000000..ebc4316 Binary files /dev/null and b/zh_CN/images/contact-new.png differ diff --git a/zh_CN/images/document-properties.png b/zh_CN/images/document-properties.png new file mode 100644 index 0000000..34c2409 Binary files /dev/null and b/zh_CN/images/document-properties.png differ diff --git a/zh_CN/images/drive-harddisk.png b/zh_CN/images/drive-harddisk.png new file mode 100644 index 0000000..d7ce475 Binary files /dev/null and b/zh_CN/images/drive-harddisk.png differ diff --git a/zh_CN/images/fix.gif b/zh_CN/images/fix.gif new file mode 100644 index 0000000..b7eb3dc Binary files /dev/null and b/zh_CN/images/fix.gif differ diff --git a/zh_CN/images/icon_error_sml.gif b/zh_CN/images/icon_error_sml.gif new file mode 100644 index 0000000..12e9a01 Binary files /dev/null and b/zh_CN/images/icon_error_sml.gif differ diff --git a/zh_CN/images/icon_help_sml.gif b/zh_CN/images/icon_help_sml.gif new file mode 100644 index 0000000..aaf20e6 Binary files /dev/null and b/zh_CN/images/icon_help_sml.gif differ diff --git a/zh_CN/images/icon_info_sml.gif b/zh_CN/images/icon_info_sml.gif new file mode 100644 index 0000000..b776326 Binary files /dev/null and b/zh_CN/images/icon_info_sml.gif differ diff --git a/zh_CN/images/icon_success_sml.gif b/zh_CN/images/icon_success_sml.gif new file mode 100644 index 0000000..0a19527 Binary files /dev/null and b/zh_CN/images/icon_success_sml.gif differ diff --git a/zh_CN/images/icon_warning_sml.gif b/zh_CN/images/icon_warning_sml.gif new file mode 100644 index 0000000..ac6ad6a Binary files /dev/null and b/zh_CN/images/icon_warning_sml.gif differ diff --git a/zh_CN/images/image-x-generic.png b/zh_CN/images/image-x-generic.png new file mode 100644 index 0000000..ab49efb Binary files /dev/null and b/zh_CN/images/image-x-generic.png differ diff --git a/zh_CN/images/internet-web-browser.png b/zh_CN/images/internet-web-browser.png new file mode 100644 index 0000000..307d6ac Binary files /dev/null and b/zh_CN/images/internet-web-browser.png differ diff --git a/zh_CN/images/logos/build-by-maven-black.png b/zh_CN/images/logos/build-by-maven-black.png new file mode 100644 index 0000000..919fd0f Binary files /dev/null and b/zh_CN/images/logos/build-by-maven-black.png differ diff --git a/zh_CN/images/logos/build-by-maven-white.png b/zh_CN/images/logos/build-by-maven-white.png new file mode 100644 index 0000000..7d44c9c Binary files /dev/null and b/zh_CN/images/logos/build-by-maven-white.png differ diff --git a/zh_CN/images/logos/maven-feather.png b/zh_CN/images/logos/maven-feather.png new file mode 100644 index 0000000..b5ada83 Binary files /dev/null and b/zh_CN/images/logos/maven-feather.png differ diff --git a/zh_CN/images/network-server.png b/zh_CN/images/network-server.png new file mode 100644 index 0000000..1d12e19 Binary files /dev/null and b/zh_CN/images/network-server.png differ diff --git a/zh_CN/images/package-x-generic.png b/zh_CN/images/package-x-generic.png new file mode 100644 index 0000000..8b7e9e6 Binary files /dev/null and b/zh_CN/images/package-x-generic.png differ diff --git a/zh_CN/images/profiles/pre-release.png b/zh_CN/images/profiles/pre-release.png new file mode 100644 index 0000000..d448e85 Binary files /dev/null and b/zh_CN/images/profiles/pre-release.png differ diff --git a/zh_CN/images/profiles/retired.png b/zh_CN/images/profiles/retired.png new file mode 100644 index 0000000..f89f6a2 Binary files /dev/null and b/zh_CN/images/profiles/retired.png differ diff --git a/zh_CN/images/profiles/sandbox.png b/zh_CN/images/profiles/sandbox.png new file mode 100644 index 0000000..f88b362 Binary files /dev/null and b/zh_CN/images/profiles/sandbox.png differ diff --git a/zh_CN/images/remove.gif b/zh_CN/images/remove.gif new file mode 100644 index 0000000..fc65631 Binary files /dev/null and b/zh_CN/images/remove.gif differ diff --git a/zh_CN/images/rss.png b/zh_CN/images/rss.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/zh_CN/images/rss.png differ diff --git a/zh_CN/images/update.gif b/zh_CN/images/update.gif new file mode 100644 index 0000000..b2a6d0b Binary files /dev/null and b/zh_CN/images/update.gif differ diff --git a/zh_CN/images/window-new.png b/zh_CN/images/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/zh_CN/images/window-new.png differ diff --git a/zh_CN/img/glyphicons-halflings-white.png b/zh_CN/img/glyphicons-halflings-white.png new file mode 100644 index 0000000..3bf6484 Binary files /dev/null and b/zh_CN/img/glyphicons-halflings-white.png differ diff --git a/zh_CN/img/glyphicons-halflings.png b/zh_CN/img/glyphicons-halflings.png new file mode 100644 index 0000000..a996999 Binary files /dev/null and b/zh_CN/img/glyphicons-halflings.png differ diff --git a/zh_CN/index.html b/zh_CN/index.html new file mode 100644 index 0000000..ec39011 --- /dev/null +++ b/zh_CN/index.html @@ -0,0 +1,75 @@ + + + + + + + + + + mybatis-spring-native-docs – 欢迎来到 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        欢迎来到 mybatis-spring-native-docs

        +

        Documents for MyBatis integration with Spring Native feature

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/issue-management.html b/zh_CN/issue-management.html new file mode 100644 index 0000000..0eb49fd --- /dev/null +++ b/zh_CN/issue-management.html @@ -0,0 +1,79 @@ + + + + + + + + + + mybatis-spring-native-docs – 问题跟踪 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        概述

        +

        本项目使用GitHub Issue Management管理问题。

        +

        问题跟踪

        +

        问题、故障和新特性请求请通过下述的本项目的问题跟踪系统提交。

        +
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/js/apache-maven-fluido-2.0.0-M8.min.js b/zh_CN/js/apache-maven-fluido-2.0.0-M8.min.js new file mode 100644 index 0000000..819716a --- /dev/null +++ b/zh_CN/js/apache-maven-fluido-2.0.0-M8.min.js @@ -0,0 +1,287 @@ +(function(g,p){"object"===typeof module&&"object"===typeof module.exports?module.exports=g.document?p(g,!0):function(g){if(!g.document)throw Error("jQuery requires a window with a document");return p(g)}:p(g)})("undefined"!==typeof window?window:this,function(g,p){function x(a){var b=a.length,e=d.type(a);return"function"===e||d.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===e||0===b||"number"===typeof b&&0b;b+=2)"margin"=== +e&&(u+=d.css(a,e+oa[b],!0,l)),k?("content"===e&&(u-=d.css(a,"padding"+oa[b],!0,l)),"margin"!==e&&(u-=d.css(a,"border"+oa[b]+"Width",!0,l))):(u+=d.css(a,"padding"+oa[b],!0,l),"padding"!==e&&(u+=d.css(a,"border"+oa[b]+"Width",!0,l)));return u}function U(a,b,e){var k=!0,l="width"===b?a.offsetWidth:a.offsetHeight,u=ga(a),c=w.boxSizing&&"border-box"===d.css(a,"boxSizing",!1,u);if(0>=l||null==l){l=pa(a,b,u);if(0>l||null==l)l=a.style[b];if(Ja.test(l))return l;k=c&&(w.boxSizingReliable()||l===a.style[b]); +l=parseFloat(l)||0}return l+S(a,b,e||(c?"border":"content"),k,u)+"px"}function H(a,b,e,d,l){return new H.prototype.init(a,b,e,d,l)}function J(){setTimeout(function(){wa=void 0});return wa=d.now()}function v(a,b){var e,d={height:a},l=0;for(b=b?1:0;4>l;l+=2-b)e=oa[l],d["margin"+e]=d["padding"+e]=a;b&&(d.opacity=d.width=a);return d}function da(a,b,e){for(var d,l=(xa[b]||[]).concat(xa["*"]),c=0,f=l.length;ce&&l)return b;f.resolveWith(a,[h]);return!1}, +h=f.promise({elem:a,props:d.extend({},b),opts:d.extend(!0,{specialEasing:{}},e),originalProperties:b,originalOptions:e,startTime:wa||J(),duration:e.duration,tweens:[],createTween:function(b,e){b=d.Tween(a,h.opts,b,e,h.opts.specialEasing[b]||h.opts.easing);h.tweens.push(b);return b},stop:function(b){var e=0,d=b?h.tweens.length:0;if(k)return this;for(k=!0;ea?this[a+this.length]:this[a]:ba.call(this)},pushStack:function(a){a=d.merge(this.constructor(),a);a.prevObject=this;a.context=this.context;return a},each:function(a,b){return d.each(this,a,b)},map:function(a){return this.pushStack(d.map(this,function(b,e){return a.call(b,e,b)}))},slice:function(){return this.pushStack(ba.apply(this,arguments))},first:function(){return this.eq(0)}, +last:function(){return this.eq(-1)},eq:function(a){var b=this.length;a=+a+(0>a?b:0);return this.pushStack(0<=a&&ae?Math.max(0,d+e):e:0;eF.cacheLength&&delete a[b.shift()];return a[d+" "]=e}var b=[];return a}function k(a){a[Q]=!0;return a}function l(a){var b=I.createElement("div");try{return!!a(b)}catch(ma){return!1}finally{b.parentNode&&b.parentNode.removeChild(b)}}function c(a,b){var d=a.split("|");for(a=a.length;a--;)F.attrHandle[d[a]]=b}function f(a,b){var d=b&&a,e=d&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex|| +-2147483648)-(~a.sourceIndex||-2147483648);if(e)return e;if(d)for(;d=d.nextSibling;)if(d===b)return-1;return a?1:-1}function g(a){return function(b){return"input"===b.nodeName.toLowerCase()&&b.type===a}}function h(a){return function(b){var d=b.nodeName.toLowerCase();return("input"===d||"button"===d)&&b.type===a}}function m(a){return k(function(b){b=+b;return k(function(d,e){for(var k,l=a([],d.length,b),c=l.length;c--;)d[k=l[c]]&&(d[k]=!(e[k]=d[k]))})})}function t(a){return a&&"undefined"!==typeof a.getElementsByTagName&& +a}function n(){}function v(a){for(var b=0,d=a.length,e="";b+~]|[\x20\t\r\n\f])[\x20\t\r\n\f]*/,ta=/=[\x20\t\r\n\f]*([^\]'"]*?)[\x20\t\r\n\f]*\]/g,ua=new RegExp(ia),wa=new RegExp("^"+ka+"$"),ja={ID:/^#((?:\\.|[\w-]|[^\x00-\xa0])+)/,CLASS:/^\.((?:\\.|[\w-]|[^\x00-\xa0])+)/,TAG:new RegExp("^("+"(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+".replace("w","w*")+")"),ATTR:new RegExp("^"+la),PSEUDO:new RegExp("^"+ia), +CHILD:/^:(only|first|last|nth|nth-last)-(child|of-type)(?:\([\x20\t\r\n\f]*(even|odd|(([+-]|)(\d*)n|)[\x20\t\r\n\f]*(?:([+-]|)[\x20\t\r\n\f]*(\d+)|))[\x20\t\r\n\f]*\)|)/i,bool:/^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,needsContext:/^[\x20\t\r\n\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\([\x20\t\r\n\f]*((?:-\d)?\d*)[\x20\t\r\n\f]*\)|)(?=[^-]|$)/i},ya=/^(?:input|select|textarea|button)$/i,za=/^h\d$/i,ha= +/^[^{]+\{\s*\[native \w/,Aa=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,na=/[+~]/,Ca=/'|\\/g,qa=/\\([\da-f]{1,6}[\x20\t\r\n\f]?|([\x20\t\r\n\f])|.)/ig,ra=function(a,b,d){a="0x"+b-65536;return a!==a||d?b:0>a?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,a&1023|56320)},xa=function(){R()};try{Y.apply(V=Ga.call(E.childNodes),E.childNodes),V[E.childNodes.length].nodeType}catch(T){Y={apply:V.length?function(a,b){La.apply(a,Ga.call(b))}:function(a,b){for(var d=a.length,e=0;a[d++]=b[e++];);a.length= +d-1}}}B=b.support={};G=b.isXML=function(a){return(a=a&&(a.ownerDocument||a).documentElement)?"HTML"!==a.nodeName:!1};R=b.setDocument=function(a){var b=a?a.ownerDocument||a:E;if(b===I||9!==b.nodeType||!b.documentElement)return I;I=b;O=b.documentElement;(a=b.defaultView)&&a!==a.top&&(a.addEventListener?a.addEventListener("unload",xa,!1):a.attachEvent&&a.attachEvent("onunload",xa));H=!G(b);B.attributes=l(function(a){a.className="i";return!a.getAttribute("className")});B.getElementsByTagName=l(function(a){a.appendChild(b.createComment("")); +return!a.getElementsByTagName("*").length});B.getElementsByClassName=ha.test(b.getElementsByClassName);B.getById=l(function(a){O.appendChild(a).id=Q;return!b.getElementsByName||!b.getElementsByName(Q).length});B.getById?(F.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&H)return(a=b.getElementById(a))&&a.parentNode?[a]:[]},F.filter.ID=function(a){var b=a.replace(qa,ra);return function(a){return a.getAttribute("id")===b}}):(delete F.find.ID,F.filter.ID=function(a){var b=a.replace(qa, +ra);return function(a){return(a="undefined"!==typeof a.getAttributeNode&&a.getAttributeNode("id"))&&a.value===b}});F.find.TAG=B.getElementsByTagName?function(a,b){if("undefined"!==typeof b.getElementsByTagName)return b.getElementsByTagName(a);if(B.qsa)return b.querySelectorAll(a)}:function(a,b){var d=[],e=0;b=b.getElementsByTagName(a);if("*"===a){for(;a=b[e++];)1===a.nodeType&&d.push(a);return d}return b};F.find.CLASS=B.getElementsByClassName&&function(a,b){if(H)return b.getElementsByClassName(a)}; +J=[];r=[];if(B.qsa=ha.test(b.querySelectorAll))l(function(a){O.appendChild(a).innerHTML="\x3ca id\x3d'"+Q+"'\x3e\x3c/a\x3e\x3cselect id\x3d'"+Q+"-\f]' msallowcapture\x3d''\x3e\x3coption selected\x3d''\x3e\x3c/option\x3e\x3c/select\x3e";a.querySelectorAll("[msallowcapture^\x3d'']").length&&r.push("[*^$]\x3d[\\x20\\t\\r\\n\\f]*(?:''|\"\")");a.querySelectorAll("[selected]").length||r.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)"); +a.querySelectorAll("[id~\x3d"+Q+"-]").length||r.push("~\x3d");a.querySelectorAll(":checked").length||r.push(":checked");a.querySelectorAll("a#"+Q+"+*").length||r.push(".#.+[+~]")}),l(function(a){var d=b.createElement("input");d.setAttribute("type","hidden");a.appendChild(d).setAttribute("name","D");a.querySelectorAll("[name\x3dd]").length&&r.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?\x3d");a.querySelectorAll(":enabled").length||r.push(":enabled",":disabled");a.querySelectorAll("*,:x");r.push(",.*:")}); +(B.matchesSelector=ha.test(Ba=O.matches||O.webkitMatchesSelector||O.mozMatchesSelector||O.oMatchesSelector||O.msMatchesSelector))&&l(function(a){B.disconnectedMatch=Ba.call(a,"div");Ba.call(a,"[s!\x3d'']:x");J.push("!\x3d",ia)});r=r.length&&new RegExp(r.join("|"));J=J.length&&new RegExp(J.join("|"));va=(a=ha.test(O.compareDocumentPosition))||ha.test(O.contains)?function(a,b){var d=9===a.nodeType?a.documentElement:a;b=b&&b.parentNode;return a===b||!!(b&&1===b.nodeType&&(d.contains?d.contains(b):a.compareDocumentPosition&& +a.compareDocumentPosition(b)&16))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1};ca=a?function(a,d){if(a===d)return x=!0,0;var e=!a.compareDocumentPosition-!d.compareDocumentPosition;if(e)return e;e=(a.ownerDocument||a)===(d.ownerDocument||d)?a.compareDocumentPosition(d):1;return e&1||!B.sortDetached&&d.compareDocumentPosition(a)===e?a===b||a.ownerDocument===E&&va(E,a)?-1:d===b||d.ownerDocument===E&&va(E,d)?1:P?ba(P,a)-ba(P,d):0:e&4?-1:1}:function(a,d){if(a===d)return x=!0,0; +var e=0,k=a.parentNode,l=d.parentNode,c=[a],u=[d];if(!k||!l)return a===b?-1:d===b?1:k?-1:l?1:P?ba(P,a)-ba(P,d):0;if(k===l)return f(a,d);for(;a=a.parentNode;)c.unshift(a);for(a=d;a=a.parentNode;)u.unshift(a);for(;c[e]===u[e];)e++;return e?f(c[e],u[e]):c[e]===E?-1:u[e]===E?1:0};return b};b.matches=function(a,d){return b(a,null,null,d)};b.matchesSelector=function(a,d){(a.ownerDocument||a)!==I&&R(a);d=d.replace(ta,"\x3d'$1']");if(!(!B.matchesSelector||!H||J&&J.test(d)||r&&r.test(d)))try{var e=Ba.call(a, +d);if(e||B.disconnectedMatch||a.document&&11!==a.document.nodeType)return e}catch(Da){}return 0a.nodeType)return!1;return!0},parent:function(a){return!F.pseudos.empty(a)},header:function(a){return za.test(a.nodeName)},input:function(a){return ya.test(a.nodeName)}, +button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:m(function(){return[0]}),last:m(function(a,b){return[b-1]}),eq:m(function(a,b,d){return[0>d?d+b:d]}),even:m(function(a,b){for(var d=0;dd?d+b:d;0<=--b;)a.push(b);return a}),gt:m(function(a,b,d){for(d=0>d?d+b:d;++d(?:<\/\1>|)$/,Gb=/^.[^:#\[\.,]*$/;d.filter=function(a,b,e){var k=b[0];e&&(a=":not("+a+")");return 1===b.length&&1===k.nodeType?d.find.matchesSelector(k,a)?[k]:[]:d.find.matches(a,d.grep(b,function(a){return 1===a.nodeType}))};d.fn.extend({find:function(a){var b,e=[],k=this,l=k.length;if("string"!==typeof a)return this.pushStack(d(a).filter(function(){for(b= +0;b)[^>]*|#([\w-]*))$/;(d.fn.init=function(a,b){var e;if(!a)return this;if("string"=== +typeof a){e="\x3c"===a.charAt(0)&&"\x3e"===a.charAt(a.length-1)&&3<=a.length?[null,a,null]:Vb.exec(a);if(!e||!e[1]&&b)return!b||b.jquery?(b||Ha).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof d?b[0]:b,d.merge(this,d.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),mb.test(e[1])&&d.isPlainObject(b))for(e in b)if(d.isFunction(this[e]))this[e](b[e]);else this.attr(e,b[e])}else{if((b=z.getElementById(e[2]))&&b.parentNode){if(b.id!==e[2])return Ha.find(a);this.length=1;this[0]=b}this.context= +z;this.selector=a}return this}if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(d.isFunction(a))return"undefined"!==typeof Ha.ready?Ha.ready(a):a(d);void 0!==a.selector&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)}).prototype=d.fn;Ha=d(z);var Wb=/^(?:parents|prev(?:Until|All))/,Xb={children:!0,contents:!0,next:!0,prev:!0};d.extend({dir:function(a,b,e){var k=[];for(a=a[b];a&&9!==a.nodeType&&(void 0===e||1!==a.nodeType||!d(a).is(e));)1===a.nodeType&& +k.push(a),a=a[b];return k},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&d.push(a);return d}});d.fn.extend({has:function(a){var b,e=d(a,this),k=e.length;return this.filter(function(){for(b=0;be.nodeType&&(f?-1p.indexOf(":")&&"on"+p,a=a[d.expando]?a: +new d.Event(p,"object"===typeof a&&a),a.isTrigger=k?2:3,a.namespace=n.join("."),a.namespace_re=a.namespace?new RegExp("(^|\\.)"+n.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,a.result=void 0,a.target||(a.target=e),b=null==b?[a]:d.makeArray(b,[a]),n=d.event.special[p]||{},k||!n.trigger||!1!==n.trigger.apply(e,b))){if(!k&&!n.noBubble&&!d.isWindow(e)){m=n.delegateType||p;nb.test(m+p)||(h=h.parentNode);for(;h;h=h.parentNode)t.push(h),c=h;c===(e.ownerDocument||z)&&t.push(c.defaultView||c.parentWindow||g)}for(v= +0;(h=t[v++])&&!a.isPropagationStopped();)a.type=1]*)\/>/gi,rb=/<([\w:]+)/,sb=/\s*$/g,ca={option:[1,"\x3cselect multiple\x3d'multiple'\x3e","\x3c/select\x3e"],legend:[1,"\x3cfieldset\x3e","\x3c/fieldset\x3e"],area:[1, +"\x3cmap\x3e","\x3c/map\x3e"],param:[1,"\x3cobject\x3e","\x3c/object\x3e"],thead:[1,"\x3ctable\x3e","\x3c/table\x3e"],tr:[2,"\x3ctable\x3e\x3ctbody\x3e","\x3c/tbody\x3e\x3c/table\x3e"],col:[2,"\x3ctable\x3e\x3ctbody\x3e\x3c/tbody\x3e\x3ccolgroup\x3e","\x3c/colgroup\x3e\x3c/table\x3e"],td:[3,"\x3ctable\x3e\x3ctbody\x3e\x3ctr\x3e","\x3c/tr\x3e\x3c/tbody\x3e\x3c/table\x3e"],_default:w.htmlSerialize?[0,"",""]:[1,"X\x3cdiv\x3e","\x3c/div\x3e"]},Za=Aa(z).appendChild(z.createElement("div"));ca.optgroup= +ca.option;ca.tbody=ca.tfoot=ca.colgroup=ca.caption=ca.thead;ca.th=ca.td;d.extend({clone:function(a,b,e){var c,l,f,g,h,m=d.contains(a.ownerDocument,a);w.html5Clone||d.isXMLDoc(a)||!pb.test("\x3c"+a.nodeName+"\x3e")?f=a.cloneNode(!0):(Za.innerHTML=a.outerHTML,Za.removeChild(f=Za.firstChild));if(!(w.noCloneEvent&&w.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||d.isXMLDoc(a)))for(c=N(f),h=N(a),g=0;null!=(l=h[g]);++g)if(c[g]){var n=c[g],t,p=void 0,v;if(1===n.nodeType){t=n.nodeName.toLowerCase();if(!w.noCloneEvent&& +n[d.expando]){v=d._data(n);for(p in v.events)d.removeEvent(n,p,v.handle);n.removeAttribute(d.expando)}if("script"===t&&n.text!==l.text)ia(n).text=l.text,A(n);else if("object"===t)n.parentNode&&(n.outerHTML=l.outerHTML),w.html5Clone&&l.innerHTML&&!d.trim(n.innerHTML)&&(n.innerHTML=l.innerHTML);else if("input"===t&&Ua.test(l.type))n.defaultChecked=n.checked=l.checked,n.value!==l.value&&(n.value=l.value);else if("option"===t)n.defaultSelected=n.selected=l.defaultSelected;else if("input"===t||"textarea"=== +t)n.defaultValue=l.defaultValue}}if(b)if(e)for(h=h||N(a),c=c||N(f),g=0;null!=(l=h[g]);g++)P(l,c[g]);else P(a,f);c=N(f,"script");0e;e++)c[a+oa[e]+b]=d[e]||d[e-2]||d[0];return c}};ub.test(a)||(d.cssHooks[a+b].set=va)});d.fn.extend({css:function(a,b){return sa(this,function(a,b,c){var e,f={},k=0;if(d.isArray(b)){c=ga(a);for(e=b.length;kc)?null:[],g=a?c+1:e.length,h=0>c?g:a?c:0;hc.indexOf(" "+f+" ")&&(c+=f+" ");c=d.trim(c);e.className!==c&&(e.className=c)}return this},removeClass:function(a){var b, +e,c,f,g,h=0,m=this.length;b=0===arguments.length||"string"===typeof a&&a;if(d.isFunction(a))return this.each(function(b){d(this).removeClass(a.call(this,b,this.className))});if(b)for(b=(a||"").match(Y)||[];ha||304===a;if(c){l=t;for(var p=B,I,z,r,D,G=l.contents,K=l.dataTypes;"*"===K[0];)K.shift(),void 0===z&&(z=l.mimeType||p.getResponseHeader("Content-Type"));if(z)for(D in G)if(G[D]&&G[D].test(z)){K.unshift(D);break}if(K[0]in c)r=K[0];else{for(D in c){if(!K[0]||l.converters[D+" "+K[0]]){r=D;break}I||(I=D)}r=r||I}r?(r!==K[0]&&K.unshift(r),l=c[r]):l=void 0}a:{c=t;I=l;z=B;r=e;var P, +O,F,p={},G=c.dataTypes.slice();if(G[1])for(O in c.converters)p[O.toLowerCase()]=c.converters[O];for(D=G.shift();D;)if(c.responseFields[D]&&(z[c.responseFields[D]]=I),!F&&r&&c.dataFilter&&(I=c.dataFilter(I,c.dataType)),F=D,D=G.shift())if("*"===D)D=F;else if("*"!==F&&F!==D){O=p[F+" "+D]||p["* "+D];if(!O)for(P in p)if(l=P.split(" "),l[1]===D&&(O=p[F+" "+l[0]]||p["* "+l[0]])){!0===O?O=p[P]:!0!==p[P]&&(D=l[0],G.unshift(l[1]));break}if(!0!==O)if(O&&c["throws"])I=O(I);else try{I=O(I)}catch(Tb){l={state:"parsererror", +error:O?Tb:"No conversion from "+F+" to "+D};break a}}l={state:"success",data:I}}if(e)t.ifModified&&((u=B.getResponseHeader("Last-Modified"))&&(d.lastModified[g]=u),(u=B.getResponseHeader("etag"))&&(d.etag[g]=u)),204===a||"HEAD"===t.type?u="nocontent":304===a?u="notmodified":(u=l.state,f=l.data,k=l.error,e=!k);else if(k=u,a||!u)u="error",0>a&&(a=0);B.status=a;B.statusText=(b||u)+"";e?w.resolveWith(y,[f,u,B]):w.rejectWith(y,[B,u,k]);B.statusCode(da);da=void 0;n&&C.trigger(e?"ajaxSuccess":"ajaxError", +[B,t,e?f:k]);A.fireWith(y,[B,u]);n&&(C.trigger("ajaxComplete",[B,t]),--d.active||d.event.trigger("ajaxStop"))}}"object"===typeof a&&(b=a,a=void 0);b=b||{};var f,g,h,m,n,v,p,t=d.ajaxSetup({},b),y=t.context||t,C=t.context&&(y.nodeType||y.jquery)?d(y):d.event,w=d.Deferred(),A=d.Callbacks("once memory"),da=t.statusCode||{},I={},z={},L=0,r="canceled",B={readyState:0,getResponseHeader:function(a){var b;if(2===L){if(!p)for(p={};b=rc.exec(h);)p[b[1].toLowerCase()]=b[2];b=p[a.toLowerCase()]}return null==b? +null:b},getAllResponseHeaders:function(){return 2===L?h:null},setRequestHeader:function(a,b){var d=a.toLowerCase();L||(a=z[d]=z[d]||a,I[a]=b);return this},overrideMimeType:function(a){L||(t.mimeType=a);return this},statusCode:function(a){var b;if(a)if(2>L)for(b in a)da[b]=[da[b],a[b]];else B.always(a[B.status]);return this},abort:function(a){a=a||r;v&&v.abort(a);c(0,a);return this}};w.promise(B).complete=A.add;B.success=B.done;B.error=B.fail;t.url=((a||t.url||la)+"").replace(qc,"").replace(tc,ua[1]+ +"//");t.type=b.method||b.type||t.method||t.type;t.dataTypes=d.trim(t.dataType||"*").toLowerCase().match(Y)||[""];null==t.crossDomain&&(a=zb.exec(t.url.toLowerCase()),t.crossDomain=!(!a||a[1]===ua[1]&&a[2]===ua[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(ua[3]||("http:"===ua[1]?"80":"443"))));t.data&&t.processData&&"string"!==typeof t.data&&(t.data=d.param(t.data,t.traditional));D(Ab,t,b,B);if(2===L)return B;(n=d.event&&t.global)&&0===d.active++&&d.event.trigger("ajaxStart");t.type=t.type.toUpperCase(); +t.hasContent=!sc.test(t.type);g=t.url;t.hasContent||(t.data&&(g=t.url+=(db.test(g)?"\x26":"?")+t.data,delete t.data),!1===t.cache&&(t.url=yb.test(g)?g.replace(yb,"$1_\x3d"+cb++):g+(db.test(g)?"\x26":"?")+"_\x3d"+cb++));t.ifModified&&(d.lastModified[g]&&B.setRequestHeader("If-Modified-Since",d.lastModified[g]),d.etag[g]&&B.setRequestHeader("If-None-Match",d.etag[g]));(t.data&&t.hasContent&&!1!==t.contentType||b.contentType)&&B.setRequestHeader("Content-Type",t.contentType);B.setRequestHeader("Accept", +t.dataTypes[0]&&t.accepts[t.dataTypes[0]]?t.accepts[t.dataTypes[0]]+("*"!==t.dataTypes[0]?", "+Bb+"; q\x3d0.01":""):t.accepts["*"]);for(f in t.headers)B.setRequestHeader(f,t.headers[f]);if(t.beforeSend&&(!1===t.beforeSend.call(y,B,t)||2===L))return B.abort();r="abort";for(f in{success:1,error:1,complete:1})B[f](t[f]);if(v=D(Va,t,b,B)){B.readyState=1;n&&C.trigger("ajaxSend",[B,t]);t.async&&0L)c(-1, +F);else throw F;}}else c(-1,"No Transport");return B},getJSON:function(a,b,c){return d.get(a,b,c,"json")},getScript:function(a,b){return d.get(a,void 0,b,"script")}});d.each(["get","post"],function(a,b){d[b]=function(a,c,f,g){d.isFunction(c)&&(g=g||f,f=c,c=void 0);return d.ajax({url:a,type:b,dataType:g,data:c,success:f})}});d._evalUrl=function(a){return d.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})};d.fn.extend({wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this, +b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var a=this;a.firstChild&&1===a.firstChild.nodeType;)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return d.isFunction(a)?this.each(function(b){d(this).wrapInner(a.call(this,b))}):this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=d.isFunction(a);return this.each(function(c){d(this).wrapAll(b? +a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()}});d.expr.filters.hidden=function(a){return 0>=a.offsetWidth&&0>=a.offsetHeight||!w.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||d.css(a,"display"))};d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)};var uc=/%20/g,Nb=/\[\]$/,Cb=/\r?\n/g,vc=/^(?:submit|button|image|reset|file)$/i,wc=/^(?:input|select|textarea|keygen)/i;d.param= +function(a,b){var c,f=[],g=function(a,b){b=d.isFunction(b)?b():null==b?"":b;f[f.length]=encodeURIComponent(a)+"\x3d"+encodeURIComponent(b)};void 0===b&&(b=d.ajaxSettings&&d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){g(this.name,this.value)});else for(c in a)ea(c,a[c],b,g);return f.join("\x26").replace(uc,"+")};d.fn.extend({serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=d.prop(this, +"elements");return a?d.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!d(this).is(":disabled")&&wc.test(this.nodeName)&&!vc.test(a)&&(this.checked||!Ua.test(a))}).map(function(a,b){a=d(this).val();return null==a?null:d.isArray(a)?d.map(a,function(a){return{name:b.name,value:a.replace(Cb,"\r\n")}}):{name:b.name,value:a.replace(Cb,"\r\n")}}).get()}});d.ajaxSettings.xhr=void 0!==g.ActiveXObject?function(){var a;if(!(a=!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&& +La()))a:{try{a=new g.ActiveXObject("Microsoft.XMLHTTP");break a}catch(b){}a=void 0}return a}:La;var xc=0,Ra={},Sa=d.ajaxSettings.xhr();g.attachEvent&&g.attachEvent("onunload",function(){for(var a in Ra)Ra[a](void 0,!0)});w.cors=!!Sa&&"withCredentials"in Sa;(Sa=w.ajax=!!Sa)&&d.ajaxTransport(function(a){if(!a.crossDomain||w.cors){var b;return{send:function(c,f){var e,g=a.xhr(),k=++xc;g.open(a.type,a.url,a.async,a.username,a.password);if(a.xhrFields)for(e in a.xhrFields)g[e]=a.xhrFields[e];a.mimeType&& +g.overrideMimeType&&g.overrideMimeType(a.mimeType);a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&g.setRequestHeader(e,c[e]+"");g.send(a.hasContent&&a.data||null);b=function(c,e){var h,l,m;if(b&&(e||4===g.readyState))if(delete Ra[k],b=void 0,g.onreadystatechange=d.noop,e)4!==g.readyState&&g.abort();else{m={};h=g.status;"string"===typeof g.responseText&&(m.text=g.responseText);try{l=g.statusText}catch(Mb){l=""}h||!a.isLocal||a.crossDomain?1223=== +h&&(h=204):h=m.text?200:404}m&&f(h,l,m,g.getAllResponseHeaders())};a.async?4===g.readyState?setTimeout(b):g.onreadystatechange=Ra[k]=b:b()},abort:function(){b&&b(void 0,!0)}}}});d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){d.globalEval(a);return a}}});d.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1);a.crossDomain&&(a.type="GET", +a.global=!1)});d.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=z.head||d("head")[0]||z.documentElement;return{send:function(d,e){b=z.createElement("script");b.async=!0;a.scriptCharset&&(b.charset=a.scriptCharset);b.src=a.url;b.onload=b.onreadystatechange=function(a,d){if(d||!b.readyState||/loaded|complete/.test(b.readyState))b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,d||e(200,"success")};c.insertBefore(b,c.firstChild)},abort:function(){if(b)b.onload(void 0, +!0)}}}});var Db=[],eb=/(=)\?(?=&|$)|\?\?/;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Db.pop()||d.expando+"_"+cb++;this[a]=!0;return a}});d.ajaxPrefilter("json jsonp",function(a,b,c){var e,f,h,m=!1!==a.jsonp&&(eb.test(a.url)?"url":"string"===typeof a.data&&!(a.contentType||"").indexOf("application/x-www-form-urlencoded")&&eb.test(a.data)&&"data");if(m||"jsonp"===a.dataTypes[0])return e=a.jsonpCallback=d.isFunction(a.jsonpCallback)?a.jsonpCallback():a.jsonpCallback,m?a[m]=a[m].replace(eb, +"$1"+e):!1!==a.jsonp&&(a.url+=(db.test(a.url)?"\x26":"?")+a.jsonp+"\x3d"+e),a.converters["script json"]=function(){h||d.error(e+" was not called");return h[0]},a.dataTypes[0]="json",f=g[e],g[e]=function(){h=arguments},c.always(function(){g[e]=f;a[e]&&(a.jsonpCallback=b.jsonpCallback,Db.push(e));h&&d.isFunction(f)&&f(h[0]);h=f=void 0}),"script"});d.parseHTML=function(a,b,c){if(!a||"string"!==typeof a)return null;"boolean"===typeof b&&(c=b,b=!1);b=b||z;var e=mb.exec(a);c=!c&&[];if(e)return[b.createElement(e[1])]; +e=d.buildFragment([a],b,c);c&&c.length&&d(c).remove();return d.merge([],e.childNodes)};var Eb=d.fn.load;d.fn.load=function(a,b,c){if("string"!==typeof a&&Eb)return Eb.apply(this,arguments);var e,f,g,h=this,m=a.indexOf(" ");0<=m&&(e=d.trim(a.slice(m,a.length)),a=a.slice(0,m));d.isFunction(b)?(c=b,b=void 0):b&&"object"===typeof b&&(g="POST");0this.$items.length-1||0>c))return this.sliding?this.$element.one("slid",function(){h.to(c)}):f==c?this.pause().cycle():this.slide(c>f?"next":"prev",g(this.$items[c]))},pause:function(c){c||(this.paused=!0);this.$element.find(".next, .prev").length&&g.support.transition.end&&(this.$element.trigger(g.support.transition.end), +this.cycle(!0));clearInterval(this.interval);this.interval=null;return this},next:function(){if(!this.sliding)return this.slide("next")},prev:function(){if(!this.sliding)return this.slide("prev")},slide:function(c,f){var h=this.$element.find(".item.active"),m=f||h[c]();f=this.interval;var n="next"==c?"left":"right",p="next"==c?"first":"last",r=this;this.sliding=!0;f&&this.pause();m=m.length?m:this.$element.find(".item")[p]();p=g.Event("slide",{relatedTarget:m[0],direction:n});if(!m.hasClass("active")){this.$indicators.length&& +(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var c=g(r.$indicators.children()[r.getActiveIndex()]);c&&c.addClass("active")}));if(g.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(p);if(p.isDefaultPrevented())return;m.addClass(c);m[0].offsetWidth;h.addClass(n);m.addClass(n);this.$element.one(g.support.transition.end,function(){m.removeClass([c,n].join(" ")).addClass("active");h.removeClass(["active",n].join(" "));r.sliding=!1; +setTimeout(function(){r.$element.trigger("slid")},0)})}else{this.$element.trigger(p);if(p.isDefaultPrevented())return;h.removeClass("active");m.addClass("active");this.sliding=!1;this.$element.trigger("slid")}f&&this.cycle();return this}}};var x=g.fn.carousel;g.fn.carousel=function(c){return this.each(function(){var f=g(this),h=f.data("carousel"),m=g.extend({},g.fn.carousel.defaults,"object"==typeof c&&c),n="string"==typeof c?c:m.slide;h||f.data("carousel",h=new p(this,m));if("number"==typeof c)h.to(c); +else if(n)h[n]();else m.interval&&h.pause().cycle()})};g.fn.carousel.defaults={interval:5E3,pause:"hover"};g.fn.carousel.Constructor=p;g.fn.carousel.noConflict=function(){g.fn.carousel=x;return this};g(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(c){var f=g(this),h,m=g(f.attr("data-target")||(h=f.attr("href"))&&h.replace(/.*(?=#[^\s]+$)/,""));h=g.extend({},m.data(),f.data());var n;m.carousel(h);(n=f.attr("data-slide-to"))&&m.data("carousel").pause().to(n).cycle(); +c.preventDefault()})}(window.jQuery); +!function(g){var p=function(c,f){this.$element=g(c);this.options=g.extend({},g.fn.collapse.defaults,f);this.options.parent&&(this.$parent=g(this.options.parent));this.options.toggle&&this.toggle()};p.prototype={constructor:p,dimension:function(){return this.$element.hasClass("width")?"width":"height"},show:function(){var c,f,h,m;if(!this.transitioning&&!this.$element.hasClass("in")){c=this.dimension();f=g.camelCase(["scroll",c].join("-"));if((h=this.$parent&&this.$parent.find("\x3e .accordion-group \x3e .in"))&&h.length){if((m= +h.data("collapse"))&&m.transitioning)return;h.collapse("hide");m||h.data("collapse",null)}this.$element[c](0);this.transition("addClass",g.Event("show"),"shown");g.support.transition&&this.$element[c](this.$element[0][f])}},hide:function(){var c;!this.transitioning&&this.$element.hasClass("in")&&(c=this.dimension(),this.reset(this.$element[c]()),this.transition("removeClass",g.Event("hide"),"hidden"),this.$element[c](0))},reset:function(c){var f=this.dimension();this.$element.removeClass("collapse")[f](c|| +"auto")[0].offsetWidth;this.$element[null!==c?"addClass":"removeClass"]("collapse");return this},transition:function(c,f,h){var m=this,n=function(){"show"==f.type&&m.reset();m.transitioning=0;m.$element.trigger(h)};this.$element.trigger(f);f.isDefaultPrevented()||(this.transitioning=1,this.$element[c]("in"),g.support.transition&&this.$element.hasClass("collapse")?this.$element.one(g.support.transition.end,n):n())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var x=g.fn.collapse; +g.fn.collapse=function(c){return this.each(function(){var f=g(this),h=f.data("collapse"),m=g.extend({},g.fn.collapse.defaults,f.data(),"object"==typeof c&&c);h||f.data("collapse",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.collapse.defaults={toggle:!0};g.fn.collapse.Constructor=p;g.fn.collapse.noConflict=function(){g.fn.collapse=x;return this};g(document).on("click.collapse.data-api","[data-toggle\x3dcollapse]",function(c){var f=g(this),h;c=f.attr("data-target")||c.preventDefault()||(h= +f.attr("href"))&&h.replace(/.*(?=#[^\s]+$)/,"");h=g(c).data("collapse")?"toggle":f.data();f[g(c).hasClass("in")?"addClass":"removeClass"]("collapsed");g(c).collapse(h)})}(window.jQuery); +!function(g){function p(){g(".dropdown-backdrop").remove();g("[data-toggle\x3ddropdown]").each(function(){x(g(this)).removeClass("open")})}function x(c){var f=c.attr("data-target");f||(f=(f=c.attr("href"))&&/#/.test(f)&&f.replace(/.*(?=#[^\s]*$)/,""));(f=f&&g(f))&&f.length||(f=c.parent());return f}var c=function(c){var f=g(c).on("click.dropdown.data-api",this.toggle);g("html").on("click.dropdown.data-api",function(){f.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(c){c= +g(this);var f,h;if(!c.is(".disabled, :disabled")){f=x(c);h=f.hasClass("open");p();if(!h){if("ontouchstart"in document.documentElement)g('\x3cdiv class\x3d"dropdown-backdrop"/\x3e').insertBefore(g(this)).on("click",p);f.toggleClass("open")}c.focus();return!1}},keydown:function(c){var f,h,p;if(/(38|40|27)/.test(c.keyCode)&&(f=g(this),c.preventDefault(),c.stopPropagation(),!f.is(".disabled, :disabled"))){h=x(f);p=h.hasClass("open");if(!p||p&&27==c.keyCode)return 27==c.which&&h.find("[data-toggle\x3ddropdown]").focus(), +f.click();f=g("[role\x3dmenu] li:not(.divider):visible a",h);f.length&&(h=f.index(f.filter(":focus")),38==c.keyCode&&0c.left&&(f=-2*c.left,c.left=0,g.offset(c),p=g[0].offsetWidth),this.replaceArrow(f-m+p,p,"left")):this.replaceArrow(r-n,r,"top");x&&g.offset(c)},replaceArrow:function(c,f,g){this.arrow().css(g,c?50*(1-c/f)+"%":"")},setContent:function(){var c=this.tip(),f=this.getTitle();c.find(".tooltip-inner")[this.options.html?"html":"text"](f);c.removeClass("fade in top bottom left right")},hide:function(){function c(){var c= +setTimeout(function(){f.off(g.support.transition.end).detach()},500);f.one(g.support.transition.end,function(){clearTimeout(c);f.detach()})}var f=this.tip(),h=g.Event("hide");this.$element.trigger(h);if(!h.isDefaultPrevented())return f.removeClass("in"),g.support.transition&&this.$tip.hasClass("fade")?c():f.detach(),this.$element.trigger("hidden"),this},fixTitle:function(){var c=this.$element;(c.attr("title")||"string"!=typeof c.attr("data-original-title"))&&c.attr("data-original-title",c.attr("title")|| +"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var c=this.$element[0];return g.extend({},"function"==typeof c.getBoundingClientRect?c.getBoundingClientRect():{width:c.offsetWidth,height:c.offsetHeight},this.$element.offset())},getTitle:function(){var c=this.$element,f=this.options;return c.attr("data-original-title")||("function"==typeof f.title?f.title.call(c[0]):f.title)},tip:function(){return this.$tip=this.$tip||g(this.options.template)},arrow:function(){return this.$arrow= +this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.options=this.$element=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(c){c=c?g(c.currentTarget)[this.type](this._options).data(this.type):this;c.tip().hasClass("in")?c.hide():c.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var x=g.fn.tooltip; +g.fn.tooltip=function(c){return this.each(function(){var f=g(this),h=f.data("tooltip"),m="object"==typeof c&&c;h||f.data("tooltip",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.tooltip.Constructor=p;g.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'\x3cdiv class\x3d"tooltip"\x3e\x3cdiv class\x3d"tooltip-arrow"\x3e\x3c/div\x3e\x3cdiv class\x3d"tooltip-inner"\x3e\x3c/div\x3e\x3c/div\x3e',trigger:"hover focus",title:"",delay:0,html:!1,container:!1};g.fn.tooltip.noConflict= +function(){g.fn.tooltip=x;return this}}(window.jQuery); +!function(g){var p=function(c,f){this.init("popover",c,f)};p.prototype=g.extend({},g.fn.tooltip.Constructor.prototype,{constructor:p,setContent:function(){var c=this.tip(),f=this.getTitle(),g=this.getContent();c.find(".popover-title")[this.options.html?"html":"text"](f);c.find(".popover-content")[this.options.html?"html":"text"](g);c.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var c=this.$element,f=this.options; +return("function"==typeof f.content?f.content.call(c[0]):f.content)||c.attr("data-content")},tip:function(){this.$tip||(this.$tip=g(this.options.template));return this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var x=g.fn.popover;g.fn.popover=function(c){return this.each(function(){var f=g(this),h=f.data("popover"),m="object"==typeof c&&c;h||f.data("popover",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.popover.Constructor=p;g.fn.popover.defaults= +g.extend({},g.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'\x3cdiv class\x3d"popover"\x3e\x3cdiv class\x3d"arrow"\x3e\x3c/div\x3e\x3ch3 class\x3d"popover-title"\x3e\x3c/h3\x3e\x3cdiv class\x3d"popover-content"\x3e\x3c/div\x3e\x3c/div\x3e'});g.fn.popover.noConflict=function(){g.fn.popover=x;return this}}(window.jQuery); +!function(g){function p(c,f){var h=g.proxy(this.process,this),m=g(c).is("body")?g(window):g(c),n;this.options=g.extend({},g.fn.scrollspy.defaults,f);this.$scrollElement=m.on("scroll.scroll-spy.data-api",h);this.selector=(this.options.target||(n=g(c).attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li \x3e a";this.$body=g("body");this.refresh();this.process()}p.prototype={constructor:p,refresh:function(){var c=this;this.offsets=g([]);this.targets=g([]);this.$body.find(this.selector).map(function(){var f= +g(this),f=f.data("target")||f.attr("href"),h=/^#\w/.test(f)&&g(f);return h&&h.length&&[[h.position().top+(!g.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),f]]||null}).sort(function(c,g){return c[0]-g[0]}).each(function(){c.offsets.push(this[0]);c.targets.push(this[1])})},process:function(){var c=this.$scrollElement.scrollTop()+this.options.offset,f=(this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight)-this.$scrollElement.height(),g=this.offsets,m=this.targets,n=this.activeTarget, +p;if(c>=f)return n!=(p=m.last()[0])&&this.activate(p);for(p=g.length;p--;)n!=m[p]&&c>=g[p]&&(!g[p+1]||c<=g[p+1])&&this.activate(m[p])},activate:function(c){this.activeTarget=c;g(this.selector).parent(".active").removeClass("active");c=g(this.selector+'[data-target\x3d"'+c+'"],'+this.selector+'[href\x3d"'+c+'"]').parent("li").addClass("active");c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active"));c.trigger("activate")}};var x=g.fn.scrollspy;g.fn.scrollspy=function(c){return this.each(function(){var f= +g(this),h=f.data("scrollspy"),m="object"==typeof c&&c;h||f.data("scrollspy",h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.scrollspy.Constructor=p;g.fn.scrollspy.defaults={offset:10};g.fn.scrollspy.noConflict=function(){g.fn.scrollspy=x;return this};g(window).on("load",function(){g('[data-spy\x3d"scroll"]').each(function(){var c=g(this);c.scrollspy(c.data())})})}(window.jQuery); +!function(g){var p=function(c){this.element=g(c)};p.prototype={constructor:p,show:function(){var c=this.element,f=c.closest("ul:not(.dropdown-menu)"),h=c.attr("data-target"),m,n;h||(h=(h=c.attr("href"))&&h.replace(/.*(?=#[^\s]*$)/,""));c.parent("li").hasClass("active")||(m=f.find(".active:last a")[0],n=g.Event("show",{relatedTarget:m}),c.trigger(n),n.isDefaultPrevented()||(h=g(h),this.activate(c.parent("li"),f),this.activate(h,h.parent(),function(){c.trigger({type:"shown",relatedTarget:m})})))},activate:function(c, +f,h){function m(){n.removeClass("active").find("\x3e .dropdown-menu \x3e .active").removeClass("active");c.addClass("active");p?(c[0].offsetWidth,c.addClass("in")):c.removeClass("fade");c.parent(".dropdown-menu")&&c.closest("li.dropdown").addClass("active");h&&h()}var n=f.find("\x3e .active"),p=h&&g.support.transition&&n.hasClass("fade");p?n.one(g.support.transition.end,m):m();n.removeClass("in")}};var x=g.fn.tab;g.fn.tab=function(c){return this.each(function(){var f=g(this),h=f.data("tab");h||f.data("tab", +h=new p(this));if("string"==typeof c)h[c]()})};g.fn.tab.Constructor=p;g.fn.tab.noConflict=function(){g.fn.tab=x;return this};g(document).on("click.tab.data-api",'[data-toggle\x3d"tab"], [data-toggle\x3d"pill"]',function(c){c.preventDefault();g(this).tab("show")})}(window.jQuery); +!function(g){var p=function(c,f){this.$element=g(c);this.options=g.extend({},g.fn.typeahead.defaults,f);this.matcher=this.options.matcher||this.matcher;this.sorter=this.options.sorter||this.sorter;this.highlighter=this.options.highlighter||this.highlighter;this.updater=this.options.updater||this.updater;this.source=this.options.source;this.$menu=g(this.options.menu);this.shown=!1;this.listen()};p.prototype={constructor:p,select:function(){var c=this.$menu.find(".active").attr("data-value");this.$element.val(this.updater(c)).change(); +return this.hide()},updater:function(c){return c},show:function(){var c=g.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});this.$menu.insertAfter(this.$element).css({top:c.top+c.height,left:c.left}).show();this.shown=!0;return this},hide:function(){this.$menu.hide();this.shown=!1;return this},lookup:function(c){this.query=this.$element.val();return!this.query||this.query.length=c-n?"bottom":null!=p&&f<=p?"top":!1;this.affixed!==c&&(this.affixed=c,this.unpin="bottom"==c?h.top-f:null,this.$element.removeClass("affix affix-top affix-bottom").addClass("affix"+(c?"-"+c:"")))}};var x=g.fn.affix;g.fn.affix=function(c){return this.each(function(){var f=g(this),h=f.data("affix"),m="object"==typeof c&&c;h||f.data("affix", +h=new p(this,m));if("string"==typeof c)h[c]()})};g.fn.affix.Constructor=p;g.fn.affix.defaults={offset:0};g.fn.affix.noConflict=function(){g.fn.affix=x;return this};g(window).on("load",function(){g('[data-spy\x3d"affix"]').each(function(){var c=g(this),f=c.data();f.offset=f.offset||{};f.offsetBottom&&(f.offset.bottom=f.offsetBottom);f.offsetTop&&(f.offset.top=f.offsetTop);c.affix(f)})})}(window.jQuery);var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; +(function(){function g(c){function f(c){var f=c.charCodeAt(0);if(92!==f)return f;var g=c.charAt(1);return(f=H[g])?f:"0"<=g&&"7">=g?parseInt(c.substring(1),8):"u"===g||"x"===g?parseInt(c.substring(2),16):c.charCodeAt(1)}function g(c){if(32>c)return(16>c?"\\x0":"\\x")+c.toString(16);c=String.fromCharCode(c);if("\\"===c||"-"===c||"["===c||"]"===c)c="\\"+c;return c}function h(c){var h=c.substring(1,c.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g);c= +[];for(var m=[],n="^"===h[0],p=n?1:0,v=h.length;pr||122r||90r||122v[0]&&(v[1]+1>v[0]&&m.push("-"),m.push(g(v[1])));m.push("]");return m.join("")}function m(c){for(var f=c.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),g=f.length,m=[],v=0,A=0;v/, +q])):g.push(["com",/^#[^\n\r]*/,q,"#"]));f.cStyleComments&&(h.push(["com",/^\/\/[^\n\r]*/,q]),h.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));f.regexLiterals&&h.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(m=f.types)&& +h.push(["typ",m]);f=(""+f.keywords).replace(/^ | $/g,"");f.length&&h.push(["kwd",RegExp("^(?:"+f.replace(/[\s,]+/g,"|")+")\\b"),q]);g.push(["pln",/^\s+/,q," \r\n\t "]);h.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return c(g,h)}function h(c,f){function g(c){switch(c.nodeType){case 1:if(m.test(c.className))break; +if("BR"===c.nodeName)h(c),c.parentNode&&c.parentNode.removeChild(c);else for(c=c.firstChild;c;c=c.nextSibling)g(c);break;case 3:case 4:if(A){var f=c.nodeValue,r=f.match(p);if(r){var v=f.substring(0,r.index);c.nodeValue=v;(f=f.substring(r.index+r[0].length))&&c.parentNode.insertBefore(n.createTextNode(f),c.nextSibling);h(c);v||c.parentNode.removeChild(c)}}}}function h(c){function f(c,g){g=g?c.cloneNode(!1):c;var h=c.parentNode;if(h){h=f(h,1);c=c.nextSibling;h.appendChild(g);for(var m=c;m;m=c)c=m.nextSibling, +h.appendChild(m)}return g}for(;!c.nextSibling;)if(c=c.parentNode,!c)return;c=f(c.nextSibling,0);for(var g;(g=c.parentNode)&&1===g.nodeType;)c=g;x.push(c)}var m=/(?:^|\s)nocode(?:\s|$)/,p=/\r\n?|\n/,n=c.ownerDocument,r;c.currentStyle?r=c.currentStyle.whiteSpace:window.getComputedStyle&&(r=n.defaultView.getComputedStyle(c,q).getPropertyValue("white-space"));var A=r&&"pre"===r.substring(0,3);for(r=n.createElement("LI");c.firstChild;)r.appendChild(c.firstChild);for(var x=[r],E=0;E=G&&(h+=2);g>=C&&(c+=2)}}catch(Z){"console"in window&&console.log(Z&&Z.stack?Z.stack:Z)}}var r=["break,continue,do,else,for,if,return,while"],E=[[r,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], +"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],fa=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],aa=[E,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], +V=[aa,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],ha=[r,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], +Aa=[r,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],r=[r,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],N=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,Ta=/\S/,Ia=f({keywords:[fa,V,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ +ha,Aa,r],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),ia={};m(Ia,["default-code"]);m(c([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), +"default-markup htm html mxml xhtml xml xsl".split(" "));m(c([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", +/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);m(c([],[["atv",/^[\S\s]+/]]),["uq.val"]);m(f({keywords:fa,hashComments:!0,cStyleComments:!0,types:N}),"c cc cpp cxx cyc m".split(" "));m(f({keywords:"null,true,false"}),["json"]);m(f({keywords:V,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:N}),["cs"]);m(f({keywords:aa,cStyleComments:!0}),["java"]);m(f({keywords:r,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);m(f({keywords:ha,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), +["cv","py"]);m(f({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);m(f({keywords:Aa,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);m(f({keywords:E,cStyleComments:!0,regexLiterals:!0}),["js"]);m(f({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", +hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);m(c([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(c,f,g){var m=document.createElement("PRE");m.innerHTML=c;g&&h(m,g);W({g:f,i:g,h:m});return m.innerHTML};window.prettyPrint=function(c){function f(){for(var g=window.PR_SHOULD_USE_CONTINUATION?x.now()+250:Infinity;A\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()};this.hasAnchorJSLink=function(c){var f=c.firstChild&&-1<(" "+c.firstChild.className+" ").indexOf(" anchorjs-link ");c=c.lastChild&&-1<(" "+c.lastChild.className+" ").indexOf(" anchorjs-link ");return f||c||!1}}}); \ No newline at end of file diff --git a/zh_CN/licenses.html b/zh_CN/licenses.html new file mode 100644 index 0000000..ab6258c --- /dev/null +++ b/zh_CN/licenses.html @@ -0,0 +1,281 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目许可证 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        概述

        +

        一般来说,项目中所列的许可证仅对项目自身而言,不包括项目的依赖。

        +

        项目许可证

        +

        The Apache Software License, Version 2.0

        +
        +
        +                                 Apache License
        +                           Version 2.0, January 2004
        +                        http://www.apache.org/licenses/
        +
        +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
        +
        +   1. Definitions.
        +
        +      "License" shall mean the terms and conditions for use, reproduction,
        +      and distribution as defined by Sections 1 through 9 of this document.
        +
        +      "Licensor" shall mean the copyright owner or entity authorized by
        +      the copyright owner that is granting the License.
        +
        +      "Legal Entity" shall mean the union of the acting entity and all
        +      other entities that control, are controlled by, or are under common
        +      control with that entity. For the purposes of this definition,
        +      "control" means (i) the power, direct or indirect, to cause the
        +      direction or management of such entity, whether by contract or
        +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
        +      outstanding shares, or (iii) beneficial ownership of such entity.
        +
        +      "You" (or "Your") shall mean an individual or Legal Entity
        +      exercising permissions granted by this License.
        +
        +      "Source" form shall mean the preferred form for making modifications,
        +      including but not limited to software source code, documentation
        +      source, and configuration files.
        +
        +      "Object" form shall mean any form resulting from mechanical
        +      transformation or translation of a Source form, including but
        +      not limited to compiled object code, generated documentation,
        +      and conversions to other media types.
        +
        +      "Work" shall mean the work of authorship, whether in Source or
        +      Object form, made available under the License, as indicated by a
        +      copyright notice that is included in or attached to the work
        +      (an example is provided in the Appendix below).
        +
        +      "Derivative Works" shall mean any work, whether in Source or Object
        +      form, that is based on (or derived from) the Work and for which the
        +      editorial revisions, annotations, elaborations, or other modifications
        +      represent, as a whole, an original work of authorship. For the purposes
        +      of this License, Derivative Works shall not include works that remain
        +      separable from, or merely link (or bind by name) to the interfaces of,
        +      the Work and Derivative Works thereof.
        +
        +      "Contribution" shall mean any work of authorship, including
        +      the original version of the Work and any modifications or additions
        +      to that Work or Derivative Works thereof, that is intentionally
        +      submitted to Licensor for inclusion in the Work by the copyright owner
        +      or by an individual or Legal Entity authorized to submit on behalf of
        +      the copyright owner. For the purposes of this definition, "submitted"
        +      means any form of electronic, verbal, or written communication sent
        +      to the Licensor or its representatives, including but not limited to
        +      communication on electronic mailing lists, source code control systems,
        +      and issue tracking systems that are managed by, or on behalf of, the
        +      Licensor for the purpose of discussing and improving the Work, but
        +      excluding communication that is conspicuously marked or otherwise
        +      designated in writing by the copyright owner as "Not a Contribution."
        +
        +      "Contributor" shall mean Licensor and any individual or Legal Entity
        +      on behalf of whom a Contribution has been received by Licensor and
        +      subsequently incorporated within the Work.
        +
        +   2. Grant of Copyright License. Subject to the terms and conditions of
        +      this License, each Contributor hereby grants to You a perpetual,
        +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
        +      copyright license to reproduce, prepare Derivative Works of,
        +      publicly display, publicly perform, sublicense, and distribute the
        +      Work and such Derivative Works in Source or Object form.
        +
        +   3. Grant of Patent License. Subject to the terms and conditions of
        +      this License, each Contributor hereby grants to You a perpetual,
        +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
        +      (except as stated in this section) patent license to make, have made,
        +      use, offer to sell, sell, import, and otherwise transfer the Work,
        +      where such license applies only to those patent claims licensable
        +      by such Contributor that are necessarily infringed by their
        +      Contribution(s) alone or by combination of their Contribution(s)
        +      with the Work to which such Contribution(s) was submitted. If You
        +      institute patent litigation against any entity (including a
        +      cross-claim or counterclaim in a lawsuit) alleging that the Work
        +      or a Contribution incorporated within the Work constitutes direct
        +      or contributory patent infringement, then any patent licenses
        +      granted to You under this License for that Work shall terminate
        +      as of the date such litigation is filed.
        +
        +   4. Redistribution. You may reproduce and distribute copies of the
        +      Work or Derivative Works thereof in any medium, with or without
        +      modifications, and in Source or Object form, provided that You
        +      meet the following conditions:
        +
        +      (a) You must give any other recipients of the Work or
        +          Derivative Works a copy of this License; and
        +
        +      (b) You must cause any modified files to carry prominent notices
        +          stating that You changed the files; and
        +
        +      (c) You must retain, in the Source form of any Derivative Works
        +          that You distribute, all copyright, patent, trademark, and
        +          attribution notices from the Source form of the Work,
        +          excluding those notices that do not pertain to any part of
        +          the Derivative Works; and
        +
        +      (d) If the Work includes a "NOTICE" text file as part of its
        +          distribution, then any Derivative Works that You distribute must
        +          include a readable copy of the attribution notices contained
        +          within such NOTICE file, excluding those notices that do not
        +          pertain to any part of the Derivative Works, in at least one
        +          of the following places: within a NOTICE text file distributed
        +          as part of the Derivative Works; within the Source form or
        +          documentation, if provided along with the Derivative Works; or,
        +          within a display generated by the Derivative Works, if and
        +          wherever such third-party notices normally appear. The contents
        +          of the NOTICE file are for informational purposes only and
        +          do not modify the License. You may add Your own attribution
        +          notices within Derivative Works that You distribute, alongside
        +          or as an addendum to the NOTICE text from the Work, provided
        +          that such additional attribution notices cannot be construed
        +          as modifying the License.
        +
        +      You may add Your own copyright statement to Your modifications and
        +      may provide additional or different license terms and conditions
        +      for use, reproduction, or distribution of Your modifications, or
        +      for any such Derivative Works as a whole, provided Your use,
        +      reproduction, and distribution of the Work otherwise complies with
        +      the conditions stated in this License.
        +
        +   5. Submission of Contributions. Unless You explicitly state otherwise,
        +      any Contribution intentionally submitted for inclusion in the Work
        +      by You to the Licensor shall be under the terms and conditions of
        +      this License, without any additional terms or conditions.
        +      Notwithstanding the above, nothing herein shall supersede or modify
        +      the terms of any separate license agreement you may have executed
        +      with Licensor regarding such Contributions.
        +
        +   6. Trademarks. This License does not grant permission to use the trade
        +      names, trademarks, service marks, or product names of the Licensor,
        +      except as required for reasonable and customary use in describing the
        +      origin of the Work and reproducing the content of the NOTICE file.
        +
        +   7. Disclaimer of Warranty. Unless required by applicable law or
        +      agreed to in writing, Licensor provides the Work (and each
        +      Contributor provides its Contributions) on an "AS IS" BASIS,
        +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
        +      implied, including, without limitation, any warranties or conditions
        +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
        +      PARTICULAR PURPOSE. You are solely responsible for determining the
        +      appropriateness of using or redistributing the Work and assume any
        +      risks associated with Your exercise of permissions under this License.
        +
        +   8. Limitation of Liability. In no event and under no legal theory,
        +      whether in tort (including negligence), contract, or otherwise,
        +      unless required by applicable law (such as deliberate and grossly
        +      negligent acts) or agreed to in writing, shall any Contributor be
        +      liable to You for damages, including any direct, indirect, special,
        +      incidental, or consequential damages of any character arising as a
        +      result of this License or out of the use or inability to use the
        +      Work (including but not limited to damages for loss of goodwill,
        +      work stoppage, computer failure or malfunction, or any and all
        +      other commercial damages or losses), even if such Contributor
        +      has been advised of the possibility of such damages.
        +
        +   9. Accepting Warranty or Additional Liability. While redistributing
        +      the Work or Derivative Works thereof, You may choose to offer,
        +      and charge a fee for, acceptance of support, warranty, indemnity,
        +      or other liability obligations and/or rights consistent with this
        +      License. However, in accepting such obligations, You may act only
        +      on Your own behalf and on Your sole responsibility, not on behalf
        +      of any other Contributor, and only if You agree to indemnify,
        +      defend, and hold each Contributor harmless for any liability
        +      incurred by, or claims asserted against, such Contributor by reason
        +      of your accepting any such warranty or additional liability.
        +
        +   END OF TERMS AND CONDITIONS
        +
        +   APPENDIX: How to apply the Apache License to your work.
        +
        +      To apply the Apache License to your work, attach the following
        +      boilerplate notice, with the fields enclosed by brackets "[]"
        +      replaced with your own identifying information. (Don't include
        +      the brackets!)  The text should be enclosed in the appropriate
        +      comment syntax for the file format. We also recommend that a
        +      file or class name and description of purpose be included on the
        +      same "printed page" as the copyright notice for easier
        +      identification within third-party archives.
        +
        +   Copyright [yyyy] [name of copyright owner]
        +
        +   Licensed under the Apache License, Version 2.0 (the "License");
        +   you may not use this file except in compliance with the License.
        +   You may obtain a copy of the License at
        +
        +       http://www.apache.org/licenses/LICENSE-2.0
        +
        +   Unless required by applicable law or agreed to in writing, software
        +   distributed under the License is distributed on an "AS IS" BASIS,
        +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +   See the License for the specific language governing permissions and
        +   limitations under the License.
        +
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/mailing-lists.html b/zh_CN/mailing-lists.html new file mode 100644 index 0000000..73846c3 --- /dev/null +++ b/zh_CN/mailing-lists.html @@ -0,0 +1,100 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目邮件列表 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目邮件列表

        +

        这些是本项目建立的邮件列表。每个列表都有一个订阅、退订和归档的链接。

        + + + + + + + + + + + + + + + + + + + + + + + + +
        名称订阅取消订阅发送邮件归档
        mybatis-dev订阅取消订阅发送邮件groups.google.com
        mybatis-user订阅取消订阅发送邮件groups.google.com
        mybatis-commits订阅取消订阅发送邮件groups.google.com
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/modules.html b/zh_CN/modules.html new file mode 100644 index 0000000..25a6add --- /dev/null +++ b/zh_CN/modules.html @@ -0,0 +1,90 @@ + + + + + + + + + + mybatis-spring-native – 项目模块 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目模块

        +

        本项目有以下的子模块:

        + + + + + + + + + + + + + + + +
        名称描述
        mybatis-spring-native-coreMyBatis integration with Spring Native feature for core modules
        mybatis-spring-native-extensionsMyBatis integration with Spring Native feature for extension modules(scripting, cache, and more)
        mybatis-spring-native-samplesMyBatis integration with Spring Native feature
        mybatis-spring-native-docsDocuments for MyBatis integration with Spring Native feature
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/parent-updates-report.html b/zh_CN/parent-updates-report.html new file mode 100644 index 0000000..3313576 --- /dev/null +++ b/zh_CN/parent-updates-report.html @@ -0,0 +1,137 @@ + + + + + + + + + + mybatis-spring-native – Parent Updates Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's parent artifacts

        +

        Parent artifact

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        org.mybatismybatis-parent42pom
        StatusGroup IdArtifact IdCurrent VersionScopeClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        +

        Parent Update

        +

        +

        org.mybatis:mybatis-parent

        + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis
        Artifact Idmybatis-parent
        Current Version42
        Scope
        Classifier
        Typepom
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/plugin-management.html b/zh_CN/plugin-management.html new file mode 100644 index 0000000..fb87a64 --- /dev/null +++ b/zh_CN/plugin-management.html @@ -0,0 +1,235 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目插件管理 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目插件管理

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本
        biz.aQute.bndbnd-maven-plugin7.0.0
        com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
        com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
        com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
        com.github.spotbugsspotbugs-maven-plugin4.8.3.0
        com.mycilalicense-maven-plugin4.3
        io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
        net.revelc.codeimpsort-maven-plugin1.9.0
        net.revelc.code.formatterformatter-maven-plugin2.23.0
        org.apache.maven.pluginsmaven-antrun-plugin3.1.0
        org.apache.maven.pluginsmaven-assembly-plugin3.6.0
        org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
        org.apache.maven.pluginsmaven-clean-plugin3.3.2
        org.apache.maven.pluginsmaven-compiler-plugin3.12.1
        org.apache.maven.pluginsmaven-dependency-plugin3.6.1
        org.apache.maven.pluginsmaven-deploy-plugin3.1.1
        org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
        org.apache.maven.pluginsmaven-gpg-plugin3.1.0
        org.apache.maven.pluginsmaven-install-plugin3.1.1
        org.apache.maven.pluginsmaven-jar-plugin3.3.0
        org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
        org.apache.maven.pluginsmaven-jxr-plugin3.3.2
        org.apache.maven.pluginsmaven-pdf-plugin1.6.1
        org.apache.maven.pluginsmaven-pmd-plugin3.21.2
        org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
        org.apache.maven.pluginsmaven-release-plugin3.0.1
        org.apache.maven.pluginsmaven-resources-plugin3.3.1
        org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
        org.apache.maven.pluginsmaven-shade-plugin3.5.1
        org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
        org.apache.maven.pluginsmaven-source-plugin3.3.0
        org.apache.maven.pluginsmaven-surefire-plugin3.2.5
        org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
        org.codehaus.mojoclirr-maven-plugin2.8
        org.codehaus.mojotaglist-maven-plugin3.0.0
        org.codehaus.mojoversions-maven-plugin2.16.2
        org.gaulmodernizer-maven-plugin2.7.0
        org.jacocojacoco-maven-plugin0.8.11
        org.openrewrite.mavenrewrite-maven-plugin5.21.0
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/plugin-updates-aggregate-report.html b/zh_CN/plugin-updates-aggregate-report.html new file mode 100644 index 0000000..5ae2619 --- /dev/null +++ b/zh_CN/plugin-updates-aggregate-report.html @@ -0,0 +1,1619 @@ + + + + + + + + + + mybatis-spring-native – Plugin Updates Aggregate Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's various plugins.

        + + + + + + + + + + + + + + + + + + + + + + + + + +
        # of plugins using the latest version available39
        # of plugins where the next version available is smaller than an incremental version update1
        # of plugins where the next version available is an incremental version update0
        # of plugins where the next version available is a minor version update1
        # of plugins where the next version available is a major version update1
        # of plugins where a dependencies section containes a dependency with an updated version0
        +

        Plugin Management

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        biz.aQute.bndbnd-maven-plugin7.0.0
        com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
        com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
        com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
        com.github.spotbugsspotbugs-maven-plugin4.8.3.04.8.3.1
        com.mycilalicense-maven-plugin4.3
        io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
        net.revelc.codeimpsort-maven-plugin1.9.0
        net.revelc.code.formatterformatter-maven-plugin2.23.0
        org.apache.maven.pluginsmaven-antrun-plugin3.1.0
        org.apache.maven.pluginsmaven-assembly-plugin3.6.0
        org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
        org.apache.maven.pluginsmaven-clean-plugin3.3.2
        org.apache.maven.pluginsmaven-compiler-plugin3.12.1
        org.apache.maven.pluginsmaven-dependency-plugin3.6.1
        org.apache.maven.pluginsmaven-deploy-plugin3.1.1
        org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
        org.apache.maven.pluginsmaven-gpg-plugin3.1.0
        org.apache.maven.pluginsmaven-install-plugin3.1.1
        org.apache.maven.pluginsmaven-jar-plugin3.3.0
        org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
        org.apache.maven.pluginsmaven-jxr-plugin3.3.2
        org.apache.maven.pluginsmaven-pdf-plugin1.6.1
        org.apache.maven.pluginsmaven-pmd-plugin3.21.2
        org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
        org.apache.maven.pluginsmaven-release-plugin3.0.1
        org.apache.maven.pluginsmaven-resources-plugin3.3.1
        org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
        org.apache.maven.pluginsmaven-shade-plugin3.5.1
        org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
        org.apache.maven.pluginsmaven-source-plugin3.3.0
        org.apache.maven.pluginsmaven-surefire-plugin3.2.5
        org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
        org.codehaus.mojoclirr-maven-plugin2.8
        org.codehaus.mojotaglist-maven-plugin3.0.0
        org.codehaus.mojoversions-maven-plugin2.16.2
        org.gaulmodernizer-maven-plugin2.7.0
        org.graalvm.buildtoolsnative-maven-plugin0.10.0
        org.jacocojacoco-maven-plugin0.8.11
        org.openrewrite.mavenrewrite-maven-plugin5.21.05.22.0
        StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Plugins

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.springframework.bootspring-boot-maven-plugin2.7.183.3.0-M1
        org.springframework.experimentalspring-aot-maven-plugin0.12.2
        StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Plugin Updates

        +

        +

        Plugin biz.aQute.bnd:bnd-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idbiz.aQute.bnd
        Artifact Idbnd-maven-plugin
        Current Version7.0.0
        +

        Dependencies of biz.aQute.bnd:bnd-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        biz.aQute.bndbiz.aQute.bndlib7.0.0jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency biz.aQute.bnd:biz.aQute.bndlib

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idbiz.aQute.bnd
        Artifact Idbiz.aQute.bndlib
        Current Version7.0.0
        Classifier
        Typejar
        +

        Plugin com.github.ekryd.sortpom:sortpom-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.ekryd.sortpom
        Artifact Idsortpom-maven-plugin
        Current Version3.3.0
        +

        Plugin com.github.hazendaz.maven:coveralls-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.hazendaz.maven
        Artifact Idcoveralls-maven-plugin
        Current Version4.5.0-M3
        +

        Plugin com.github.hazendaz.maven:whitespace-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.hazendaz.maven
        Artifact Idwhitespace-maven-plugin
        Current Version1.3.1
        +

        Plugin com.github.spotbugs:spotbugs-maven-plugin

        + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idcom.github.spotbugs
        Artifact Idspotbugs-maven-plugin
        Current Version4.8.3.0
        Newer versions4.8.3.1 Latest Subincremental
        +

        Plugin com.mycila:license-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.mycila
        Artifact Idlicense-maven-plugin
        Current Version4.3
        +

        Dependencies of com.mycila:license-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        com.mycilalicense-maven-plugin-git4.3jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency com.mycila:license-maven-plugin-git

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.mycila
        Artifact Idlicense-maven-plugin-git
        Current Version4.3
        Classifier
        Typejar
        +

        Plugin io.github.git-commit-id:git-commit-id-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.github.git-commit-id
        Artifact Idgit-commit-id-maven-plugin
        Current Version7.0.0
        +

        Plugin net.revelc.code:impsort-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.revelc.code
        Artifact Idimpsort-maven-plugin
        Current Version1.9.0
        +

        Plugin net.revelc.code.formatter:formatter-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.revelc.code.formatter
        Artifact Idformatter-maven-plugin
        Current Version2.23.0
        +

        Dependencies of net.revelc.code.formatter:formatter-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        com.github.hazendazbuild-tools1.3.1jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency com.github.hazendaz:build-tools

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.hazendaz
        Artifact Idbuild-tools
        Current Version1.3.1
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-antrun-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-antrun-plugin
        Current Version3.1.0
        +

        Plugin org.apache.maven.plugins:maven-assembly-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-assembly-plugin
        Current Version3.6.0
        +

        Dependencies of org.apache.maven.plugins:maven-assembly-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.mybatisbase-bundle-descriptor11jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.mybatis:base-bundle-descriptor

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis
        Artifact Idbase-bundle-descriptor
        Current Version11
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-checkstyle-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-checkstyle-plugin
        Current Version3.3.1
        +

        Plugin org.apache.maven.plugins:maven-clean-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-clean-plugin
        Current Version3.3.2
        +

        Plugin org.apache.maven.plugins:maven-compiler-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-compiler-plugin
        Current Version3.12.1
        +

        Plugin org.apache.maven.plugins:maven-dependency-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-dependency-plugin
        Current Version3.6.1
        +

        Plugin org.apache.maven.plugins:maven-deploy-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-deploy-plugin
        Current Version3.1.1
        +

        Plugin org.apache.maven.plugins:maven-enforcer-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-enforcer-plugin
        Current Version3.4.1
        +

        Dependencies of org.apache.maven.plugins:maven-enforcer-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.codehaus.mojoextra-enforcer-rules1.7.0jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.codehaus.mojo:extra-enforcer-rules

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idextra-enforcer-rules
        Current Version1.7.0
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-gpg-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-gpg-plugin
        Current Version3.1.0
        +

        Plugin org.apache.maven.plugins:maven-install-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-install-plugin
        Current Version3.1.1
        +

        Plugin org.apache.maven.plugins:maven-jar-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-jar-plugin
        Current Version3.3.0
        +

        Plugin org.apache.maven.plugins:maven-javadoc-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-javadoc-plugin
        Current Version3.6.3
        +

        Plugin org.apache.maven.plugins:maven-jxr-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-jxr-plugin
        Current Version3.3.2
        +

        Plugin org.apache.maven.plugins:maven-pdf-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-pdf-plugin
        Current Version1.6.1
        +

        Plugin org.apache.maven.plugins:maven-pmd-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-pmd-plugin
        Current Version3.21.2
        +

        Plugin org.apache.maven.plugins:maven-project-info-reports-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-project-info-reports-plugin
        Current Version3.5.0
        +

        Plugin org.apache.maven.plugins:maven-release-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-release-plugin
        Current Version3.0.1
        +

        Plugin org.apache.maven.plugins:maven-resources-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-resources-plugin
        Current Version3.3.1
        +

        Plugin org.apache.maven.plugins:maven-scm-publish-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-scm-publish-plugin
        Current Version3.2.1
        +

        Plugin org.apache.maven.plugins:maven-shade-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-shade-plugin
        Current Version3.5.1
        +

        Plugin org.apache.maven.plugins:maven-site-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-site-plugin
        Current Version4.0.0-M13
        +

        Dependencies of org.apache.maven.plugins:maven-site-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.apache.maven.skinsmaven-fluido-skin2.0.0-M8jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.apache.maven.skins:maven-fluido-skin

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.skins
        Artifact Idmaven-fluido-skin
        Current Version2.0.0-M8
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-source-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-source-plugin
        Current Version3.3.0
        +

        Plugin org.apache.maven.plugins:maven-surefire-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-surefire-plugin
        Current Version3.2.5
        +

        Plugin org.apache.maven.plugins:maven-surefire-report-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-surefire-report-plugin
        Current Version3.2.5
        +

        Plugin org.codehaus.mojo:clirr-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idclirr-maven-plugin
        Current Version2.8
        +

        Dependencies of org.codehaus.mojo:clirr-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.apache.bcelbcel6.8.1jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.apache.bcel:bcel

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.bcel
        Artifact Idbcel
        Current Version6.8.1
        Classifier
        Typejar
        +

        Plugin org.codehaus.mojo:taglist-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idtaglist-maven-plugin
        Current Version3.0.0
        +

        Plugin org.codehaus.mojo:versions-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idversions-maven-plugin
        Current Version2.16.2
        +

        Plugin org.gaul:modernizer-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.gaul
        Artifact Idmodernizer-maven-plugin
        Current Version2.7.0
        +

        Dependencies of org.gaul:modernizer-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.ow2.asmasm9.6jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.ow2.asm:asm

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ow2.asm
        Artifact Idasm
        Current Version9.6
        Classifier
        Typejar
        +

        Plugin org.graalvm.buildtools:native-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.graalvm.buildtools
        Artifact Idnative-maven-plugin
        Current Version0.10.0
        +

        Plugin org.jacoco:jacoco-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.jacoco
        Artifact Idjacoco-maven-plugin
        Current Version0.8.11
        +

        Plugin org.openrewrite.maven:rewrite-maven-plugin

        + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.openrewrite.maven
        Artifact Idrewrite-maven-plugin
        Current Version5.21.0
        Newer versions5.22.0 Latest Minor
        +

        Plugin org.springframework.boot:spring-boot-maven-plugin

        + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Group Idorg.springframework.boot
        Artifact Idspring-boot-maven-plugin
        Current Version2.7.18
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        +

        Plugin org.springframework.experimental:spring-aot-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.springframework.experimental
        Artifact Idspring-aot-maven-plugin
        Current Version0.12.2
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/plugin-updates-report.html b/zh_CN/plugin-updates-report.html new file mode 100644 index 0000000..07f4865 --- /dev/null +++ b/zh_CN/plugin-updates-report.html @@ -0,0 +1,1525 @@ + + + + + + + + + + mybatis-spring-native-docs – Plugin Updates Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's various plugins.

        + + + + + + + + + + + + + + + + + + + + + + + + + +
        # of plugins using the latest version available37
        # of plugins where the next version available is smaller than an incremental version update1
        # of plugins where the next version available is an incremental version update0
        # of plugins where the next version available is a minor version update1
        # of plugins where the next version available is a major version update0
        # of plugins where a dependencies section containes a dependency with an updated version0
        +

        Plugin Management

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        biz.aQute.bndbnd-maven-plugin7.0.0
        com.github.ekryd.sortpomsortpom-maven-plugin3.3.0
        com.github.hazendaz.mavencoveralls-maven-plugin4.5.0-M3
        com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
        com.github.spotbugsspotbugs-maven-plugin4.8.3.04.8.3.1
        com.mycilalicense-maven-plugin4.3
        io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
        net.revelc.codeimpsort-maven-plugin1.9.0
        net.revelc.code.formatterformatter-maven-plugin2.23.0
        org.apache.maven.pluginsmaven-antrun-plugin3.1.0
        org.apache.maven.pluginsmaven-assembly-plugin3.6.0
        org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
        org.apache.maven.pluginsmaven-clean-plugin3.3.2
        org.apache.maven.pluginsmaven-compiler-plugin3.12.1
        org.apache.maven.pluginsmaven-dependency-plugin3.6.1
        org.apache.maven.pluginsmaven-deploy-plugin3.1.1
        org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
        org.apache.maven.pluginsmaven-gpg-plugin3.1.0
        org.apache.maven.pluginsmaven-install-plugin3.1.1
        org.apache.maven.pluginsmaven-jar-plugin3.3.0
        org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
        org.apache.maven.pluginsmaven-jxr-plugin3.3.2
        org.apache.maven.pluginsmaven-pdf-plugin1.6.1
        org.apache.maven.pluginsmaven-pmd-plugin3.21.2
        org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
        org.apache.maven.pluginsmaven-release-plugin3.0.1
        org.apache.maven.pluginsmaven-resources-plugin3.3.1
        org.apache.maven.pluginsmaven-scm-publish-plugin3.2.1
        org.apache.maven.pluginsmaven-shade-plugin3.5.1
        org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
        org.apache.maven.pluginsmaven-source-plugin3.3.0
        org.apache.maven.pluginsmaven-surefire-plugin3.2.5
        org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
        org.codehaus.mojoclirr-maven-plugin2.8
        org.codehaus.mojotaglist-maven-plugin3.0.0
        org.codehaus.mojoversions-maven-plugin2.16.2
        org.gaulmodernizer-maven-plugin2.7.0
        org.jacocojacoco-maven-plugin0.8.11
        org.openrewrite.mavenrewrite-maven-plugin5.21.05.22.0
        StatusGroup IdArtifact IdCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Plugins

        +

        This project does not declare any plugins in a build/plugins section.

        +

        Plugin Updates

        +

        +

        Plugin biz.aQute.bnd:bnd-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idbiz.aQute.bnd
        Artifact Idbnd-maven-plugin
        Current Version7.0.0
        +

        Dependencies of biz.aQute.bnd:bnd-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        biz.aQute.bndbiz.aQute.bndlib7.0.0jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency biz.aQute.bnd:biz.aQute.bndlib

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idbiz.aQute.bnd
        Artifact Idbiz.aQute.bndlib
        Current Version7.0.0
        Classifier
        Typejar
        +

        Plugin com.github.ekryd.sortpom:sortpom-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.ekryd.sortpom
        Artifact Idsortpom-maven-plugin
        Current Version3.3.0
        +

        Plugin com.github.hazendaz.maven:coveralls-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.hazendaz.maven
        Artifact Idcoveralls-maven-plugin
        Current Version4.5.0-M3
        +

        Plugin com.github.hazendaz.maven:whitespace-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.hazendaz.maven
        Artifact Idwhitespace-maven-plugin
        Current Version1.3.1
        +

        Plugin com.github.spotbugs:spotbugs-maven-plugin

        + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Group Idcom.github.spotbugs
        Artifact Idspotbugs-maven-plugin
        Current Version4.8.3.0
        Newer versions4.8.3.1 Latest Subincremental
        +

        Plugin com.mycila:license-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.mycila
        Artifact Idlicense-maven-plugin
        Current Version4.3
        +

        Dependencies of com.mycila:license-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        com.mycilalicense-maven-plugin-git4.3jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency com.mycila:license-maven-plugin-git

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.mycila
        Artifact Idlicense-maven-plugin-git
        Current Version4.3
        Classifier
        Typejar
        +

        Plugin io.github.git-commit-id:git-commit-id-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idio.github.git-commit-id
        Artifact Idgit-commit-id-maven-plugin
        Current Version7.0.0
        +

        Plugin net.revelc.code:impsort-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.revelc.code
        Artifact Idimpsort-maven-plugin
        Current Version1.9.0
        +

        Plugin net.revelc.code.formatter:formatter-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idnet.revelc.code.formatter
        Artifact Idformatter-maven-plugin
        Current Version2.23.0
        +

        Dependencies of net.revelc.code.formatter:formatter-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        com.github.hazendazbuild-tools1.3.1jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency com.github.hazendaz:build-tools

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idcom.github.hazendaz
        Artifact Idbuild-tools
        Current Version1.3.1
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-antrun-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-antrun-plugin
        Current Version3.1.0
        +

        Plugin org.apache.maven.plugins:maven-assembly-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-assembly-plugin
        Current Version3.6.0
        +

        Dependencies of org.apache.maven.plugins:maven-assembly-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.mybatisbase-bundle-descriptor11jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.mybatis:base-bundle-descriptor

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.mybatis
        Artifact Idbase-bundle-descriptor
        Current Version11
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-checkstyle-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-checkstyle-plugin
        Current Version3.3.1
        +

        Plugin org.apache.maven.plugins:maven-clean-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-clean-plugin
        Current Version3.3.2
        +

        Plugin org.apache.maven.plugins:maven-compiler-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-compiler-plugin
        Current Version3.12.1
        +

        Plugin org.apache.maven.plugins:maven-dependency-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-dependency-plugin
        Current Version3.6.1
        +

        Plugin org.apache.maven.plugins:maven-deploy-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-deploy-plugin
        Current Version3.1.1
        +

        Plugin org.apache.maven.plugins:maven-enforcer-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-enforcer-plugin
        Current Version3.4.1
        +

        Dependencies of org.apache.maven.plugins:maven-enforcer-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.codehaus.mojoextra-enforcer-rules1.7.0jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.codehaus.mojo:extra-enforcer-rules

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idextra-enforcer-rules
        Current Version1.7.0
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-gpg-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-gpg-plugin
        Current Version3.1.0
        +

        Plugin org.apache.maven.plugins:maven-install-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-install-plugin
        Current Version3.1.1
        +

        Plugin org.apache.maven.plugins:maven-jar-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-jar-plugin
        Current Version3.3.0
        +

        Plugin org.apache.maven.plugins:maven-javadoc-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-javadoc-plugin
        Current Version3.6.3
        +

        Plugin org.apache.maven.plugins:maven-jxr-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-jxr-plugin
        Current Version3.3.2
        +

        Plugin org.apache.maven.plugins:maven-pdf-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-pdf-plugin
        Current Version1.6.1
        +

        Plugin org.apache.maven.plugins:maven-pmd-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-pmd-plugin
        Current Version3.21.2
        +

        Plugin org.apache.maven.plugins:maven-project-info-reports-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-project-info-reports-plugin
        Current Version3.5.0
        +

        Plugin org.apache.maven.plugins:maven-release-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-release-plugin
        Current Version3.0.1
        +

        Plugin org.apache.maven.plugins:maven-resources-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-resources-plugin
        Current Version3.3.1
        +

        Plugin org.apache.maven.plugins:maven-scm-publish-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-scm-publish-plugin
        Current Version3.2.1
        +

        Plugin org.apache.maven.plugins:maven-shade-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-shade-plugin
        Current Version3.5.1
        +

        Plugin org.apache.maven.plugins:maven-site-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-site-plugin
        Current Version4.0.0-M13
        +

        Dependencies of org.apache.maven.plugins:maven-site-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.apache.maven.skinsmaven-fluido-skin2.0.0-M8jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.apache.maven.skins:maven-fluido-skin

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.skins
        Artifact Idmaven-fluido-skin
        Current Version2.0.0-M8
        Classifier
        Typejar
        +

        Plugin org.apache.maven.plugins:maven-source-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-source-plugin
        Current Version3.3.0
        +

        Plugin org.apache.maven.plugins:maven-surefire-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-surefire-plugin
        Current Version3.2.5
        +

        Plugin org.apache.maven.plugins:maven-surefire-report-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.maven.plugins
        Artifact Idmaven-surefire-report-plugin
        Current Version3.2.5
        +

        Plugin org.codehaus.mojo:clirr-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idclirr-maven-plugin
        Current Version2.8
        +

        Dependencies of org.codehaus.mojo:clirr-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.apache.bcelbcel6.8.1jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.apache.bcel:bcel

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.apache.bcel
        Artifact Idbcel
        Current Version6.8.1
        Classifier
        Typejar
        +

        Plugin org.codehaus.mojo:taglist-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idtaglist-maven-plugin
        Current Version3.0.0
        +

        Plugin org.codehaus.mojo:versions-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.codehaus.mojo
        Artifact Idversions-maven-plugin
        Current Version2.16.2
        +

        Plugin org.gaul:modernizer-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.gaul
        Artifact Idmodernizer-maven-plugin
        Current Version2.7.0
        +

        Dependencies of org.gaul:modernizer-maven-plugin

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        org.ow2.asmasm9.6jar
        StatusGroup IdArtifact IdCurrent VersionClassifierTypeLatest SubincrementalLatest IncrementalLatest MinorLatest MajorDependency status
        +

        Dependency org.ow2.asm:asm

        + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.ow2.asm
        Artifact Idasm
        Current Version9.6
        Classifier
        Typejar
        +

        Plugin org.jacoco:jacoco-maven-plugin

        + + + + + + + + + + + + +
        Status No newer versions available.
        Group Idorg.jacoco
        Artifact Idjacoco-maven-plugin
        Current Version0.8.11
        +

        Plugin org.openrewrite.maven:rewrite-maven-plugin

        + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Group Idorg.openrewrite.maven
        Artifact Idrewrite-maven-plugin
        Current Version5.21.0
        Newer versions5.22.0 Latest Minor
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/plugins.html b/zh_CN/plugins.html new file mode 100644 index 0000000..9692cf9 --- /dev/null +++ b/zh_CN/plugins.html @@ -0,0 +1,193 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目插件 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目构建插件

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本
        biz.aQute.bndbnd-maven-plugin7.0.0
        com.github.hazendaz.mavenwhitespace-maven-plugin1.3.1
        com.mycilalicense-maven-plugin4.3
        io.github.git-commit-idgit-commit-id-maven-plugin7.0.0
        org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
        org.apache.maven.pluginsmaven-clean-plugin3.3.2
        org.apache.maven.pluginsmaven-compiler-plugin3.12.1
        org.apache.maven.pluginsmaven-deploy-plugin3.1.1
        org.apache.maven.pluginsmaven-enforcer-plugin3.4.1
        org.apache.maven.pluginsmaven-install-plugin3.1.1
        org.apache.maven.pluginsmaven-jar-plugin3.3.0
        org.apache.maven.pluginsmaven-resources-plugin3.3.1
        org.apache.maven.pluginsmaven-site-plugin4.0.0-M13
        org.apache.maven.pluginsmaven-surefire-plugin3.2.5
        org.gaulmodernizer-maven-plugin2.7.0
        org.jacocojacoco-maven-plugin0.8.11
        +

        项目报告插件

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        GroupIdArtifactId版本
        com.github.spotbugsspotbugs-maven-plugin4.8.3.0
        org.apache.maven.pluginsmaven-checkstyle-plugin3.3.1
        org.apache.maven.pluginsmaven-javadoc-plugin3.6.3
        org.apache.maven.pluginsmaven-jxr-plugin3.3.2
        org.apache.maven.pluginsmaven-pmd-plugin3.21.2
        org.apache.maven.pluginsmaven-project-info-reports-plugin3.5.0
        org.apache.maven.pluginsmaven-surefire-report-plugin3.2.5
        org.codehaus.mojoclirr-maven-plugin2.8
        org.codehaus.mojotaglist-maven-plugin3.0.0
        org.codehaus.mojoversions-maven-plugin2.16.2
        org.jacocojacoco-maven-plugin0.8.11
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/pmd.html b/zh_CN/pmd.html new file mode 100644 index 0000000..a62792c --- /dev/null +++ b/zh_CN/pmd.html @@ -0,0 +1,76 @@ + + + + + + + + + + mybatis-spring-native-docs – PMD Results + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        PMD Results

        +

        The following document contains the results of PMD 6.55.0.

        +

        PMD found no problems in your source code.

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/project-info.html b/zh_CN/project-info.html new file mode 100644 index 0000000..3330834 --- /dev/null +++ b/zh_CN/project-info.html @@ -0,0 +1,119 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目总体信息 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目总体信息

        +

        本文档提供了与本项目相关信息的各种文档和链接的概述。这里的所有内容都是根据本项目信息生成的,自动生成过程依靠 Maven

        +

        概述

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        文档描述
        持续集成持续集成是以一定的频率和固定的基础进行代码构建和测试的过程,这里列出了所有的持续集成过程。
        依赖信息本文档描述了如何使用各种依赖项管理工具将此项目作为依赖项。
        依赖管理本文档列出了通过dependencyManagement 定义的依赖项。
        分发管理文档记录了本项目的分发管理信息。
        欢迎来到Documents for MyBatis integration with Spring Native feature
        问题跟踪这是本项目中的问题管理系统的链接。用户可以在这里进行问题(故障、特性、变更请求)的创建和查询。
        项目许可证这是关于本项目许可证的定义。
        邮件列表本文档提供了本项目的邮件列表的订阅和归档信息。
        项目插件管理文档列出了在PluginManagement中定义的插件。
        插件文档列出了在构建和报告时用到的插件。
        源代码库这是一个在线代码库,它可以通过Web浏览器进行查看.
        项目概要此文档列出了该项目其它的相关信息
        项目团队本文档提供了本项目中成员的信息.他们是在本项目中以某种形式做出了贡献的个人.
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/project-reports.html b/zh_CN/project-reports.html new file mode 100644 index 0000000..bf4ebf6 --- /dev/null +++ b/zh_CN/project-reports.html @@ -0,0 +1,104 @@ + + + + + + + + + + mybatis-spring-native-docs – 生成报表 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        生成报表

        +

        本文档提供了对项目中各种报表的概述,这些报表生成自 Maven 每一个报表在以下简要介绍。

        +

        概述

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        文档描述
        SurefireReport on the test results of the project.
        CheckstyleReport on coding style conventions.
        CPDDuplicate code detection.
        PMDVerification of coding rules.
        ClirrReport on binary and source API differences between releases
        Dependency Updates ReportProvides details of the dependencies which have updated versions available.
        Plugin Updates ReportProvides details of the plugins used by this project which have newer versions available.
        Property Updates ReportProvides details of properties which control versions of dependencies and/or plugins, and indicates any newer versions which are available.
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/property-updates-aggregate-report.html b/zh_CN/property-updates-aggregate-report.html new file mode 100644 index 0000000..b06d3bd --- /dev/null +++ b/zh_CN/property-updates-aggregate-report.html @@ -0,0 +1,2203 @@ + + + + + + + + + + mybatis-spring-native – Property Updates Aggregate Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's various properties associated with artifacts.

        + + + + + + + + + + + + + + + + + + + + + +
        # of properties using the latest version available51
        # of properties where the next version available is smaller than an incremental version update1
        # of properties where the next version available is an incremental version update0
        # of properties where the next version available is a minor version update1
        # of properties where the next version available is a major version update3
        +

        Summary of properties associated with artifact versions

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        ${antrun.plugin}3.1.0
        ${asm.version}9.6
        ${assembly.plugin}3.6.0
        ${base-bundle.version}11
        ${bnd.plugin}7.0.0
        ${bnd.version}7.0.0
        ${build-tools.version}1.3.1
        ${checkstyle.plugin}3.3.1
        ${checkstyle.version}10.13.0
        ${clean.plugin}3.3.2
        ${clirr.plugin}2.8
        ${compiler.plugin}3.12.1
        ${coveralls.plugin}4.5.0-M3
        ${dependency.plugin}3.6.1
        ${deploy.plugin}3.1.1
        ${enforcer.plugin}3.4.1
        ${extra-enforcer-rules.version}1.7.0
        ${fluido.version}2.0.0-M8
        ${formatter.plugin}2.23.0
        ${git-commit.plugin}7.0.0
        ${gpg.plugin}3.1.0
        ${impsort.plugin}1.9.0
        ${install.plugin}3.1.1
        ${jacoco.plugin}0.8.11
        ${jar.plugin}3.3.0
        ${javadoc.plugin}3.6.3
        ${jxr.plugin}3.3.2
        ${license.plugin}4.3
        ${license.version}4.3
        ${modernizer.plugin}2.7.0
        ${mybatis-dynamic-sql.version}1.5.0
        ${mybatis-freemarker.version}1.2.4
        ${mybatis-spring-boot.version}2.3.23.0.3
        ${mybatis-spring.version}2.1.23.0.3
        ${mybatis-thymeleaf.version}1.0.4
        ${mybatis-velocity.version}2.1.2
        ${mybatis.version}3.5.15
        ${native-buildtools.version}0.10.0
        ${pdf.plugin}1.6.1
        ${pmd.plugin}3.21.2
        ${project-info.plugin}3.5.0
        ${release.plugin}3.0.1
        ${resources.plugin}3.3.1
        ${rewrite.plugin}5.21.05.22.0
        ${scm-publish.plugin}3.2.1
        ${shade.plugin}3.5.1
        ${site.plugin}4.0.0-M13
        ${sortpom.plugin}3.3.0
        ${source.plugin}3.3.0
        ${spotbugs.plugin}4.8.3.04.8.3.1
        ${spring-boot.version}2.7.183.3.0-M1
        ${spring-native.version}0.12.2
        ${surefire.plugin}3.2.5
        ${taglist.plugin}3.0.0
        ${versions.plugin}2.16.2
        ${whitespace.plugin}1.3.1
        StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        +

        Properties associated with artifact versions

        +

        +

        ${antrun.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${antrun.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-antrun-plugin
        Current Version3.1.0
        Allowed version range3.1.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${asm.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${asm.version}
        Associated artifactsorg.ow2.asm:asm
        Current Version9.6
        Allowed version range9.6
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${assembly.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${assembly.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-assembly-plugin
        Current Version3.6.0
        Allowed version range3.6.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${base-bundle.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${base-bundle.version}
        Associated artifactsorg.mybatis:base-bundle-descriptor
        Current Version11
        Allowed version range11
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${bnd.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${bnd.plugin}
        Associated artifactsbiz.aQute.bnd:bnd-maven-plugin
        Current Version7.0.0
        Allowed version range7.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${bnd.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${bnd.version}
        Associated artifactsbiz.aQute.bnd:biz.aQute.bndlib
        Current Version7.0.0
        Allowed version range7.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${build-tools.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${build-tools.version}
        Associated artifactscom.github.hazendaz:build-tools
        Current Version1.3.1
        Allowed version range1.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${checkstyle.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${checkstyle.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-checkstyle-plugin
        Current Version3.3.1
        Allowed version range3.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${checkstyle.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${checkstyle.version}
        Associated artifactscom.puppycrawl.tools:checkstyle
        Current Version10.13.0
        Allowed version range10.13.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${clean.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${clean.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-clean-plugin
        Current Version3.3.2
        Allowed version range3.3.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${clirr.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${clirr.plugin}
        Associated artifactsorg.codehaus.mojo:clirr-maven-plugin
        Current Version2.8
        Allowed version range2.8
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${compiler.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${compiler.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-compiler-plugin
        Current Version3.12.1
        Allowed version range3.12.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${coveralls.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${coveralls.plugin}
        Associated artifactscom.github.hazendaz.maven:coveralls-maven-plugin
        Current Version4.5.0-M3
        Allowed version range4.5.0-M3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${dependency.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${dependency.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-dependency-plugin
        Current Version3.6.1
        Allowed version range3.6.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${deploy.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${deploy.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-deploy-plugin
        Current Version3.1.1
        Allowed version range3.1.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${enforcer.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${enforcer.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-enforcer-plugin
        Current Version3.4.1
        Allowed version range3.4.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${extra-enforcer-rules.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${extra-enforcer-rules.version}
        Associated artifactsorg.codehaus.mojo:extra-enforcer-rules
        Current Version1.7.0
        Allowed version range1.7.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${fluido.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${fluido.version}
        Associated artifactsorg.apache.maven.skins:maven-fluido-skin
        Current Version2.0.0-M8
        Allowed version range2.0.0-M8
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${formatter.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${formatter.plugin}
        Associated artifactsnet.revelc.code.formatter:formatter-maven-plugin
        Current Version2.23.0
        Allowed version range2.23.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${git-commit.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${git-commit.plugin}
        Associated artifactsio.github.git-commit-id:git-commit-id-maven-plugin
        Current Version7.0.0
        Allowed version range7.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${gpg.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${gpg.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-gpg-plugin
        Current Version3.1.0
        Allowed version range3.1.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${impsort.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${impsort.plugin}
        Associated artifactsnet.revelc.code:impsort-maven-plugin
        Current Version1.9.0
        Allowed version range1.9.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${install.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${install.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-install-plugin
        Current Version3.1.1
        Allowed version range3.1.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${jacoco.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${jacoco.plugin}
        Associated artifactsorg.jacoco:jacoco-maven-plugin
        Current Version0.8.11
        Allowed version range0.8.11
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${jar.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${jar.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-jar-plugin
        Current Version3.3.0
        Allowed version range3.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${javadoc.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${javadoc.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-javadoc-plugin
        Current Version3.6.3
        Allowed version range3.6.3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${jxr.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${jxr.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-jxr-plugin
        Current Version3.3.2
        Allowed version range3.3.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${license.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${license.plugin}
        Associated artifactscom.mycila:license-maven-plugin
        Current Version4.3
        Allowed version range4.3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${license.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${license.version}
        Associated artifactscom.mycila:license-maven-plugin-git
        Current Version4.3
        Allowed version range4.3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${modernizer.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${modernizer.plugin}
        Associated artifactsorg.gaul:modernizer-maven-plugin
        Current Version2.7.0
        Allowed version range2.7.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-dynamic-sql.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-dynamic-sql.version}
        Associated artifactsorg.mybatis.dynamic-sql:mybatis-dynamic-sql
        Current Version1.5.0
        Allowed version range1.5.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-freemarker.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-freemarker.version}
        Associated artifactsorg.mybatis.scripting:mybatis-freemarker
        Current Version1.2.4
        Allowed version range1.2.4
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-spring-boot.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Property${mybatis-spring-boot.version}
        Associated artifactsorg.mybatis.spring.boot:mybatis-spring-boot-autoconfigure
        org.mybatis.spring.boot:mybatis-spring-boot-starter
        Current Version2.3.2
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        Allowed version range2.3.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-spring.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Property${mybatis-spring.version}
        Associated artifactsorg.mybatis:mybatis-spring
        Current Version2.1.2
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        Allowed version range2.1.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-thymeleaf.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-thymeleaf.version}
        Associated artifactsorg.mybatis.scripting:mybatis-thymeleaf
        Current Version1.0.4
        Allowed version range1.0.4
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-velocity.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-velocity.version}
        Associated artifactsorg.mybatis.scripting:mybatis-velocity
        Current Version2.1.2
        Allowed version range2.1.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis.version}
        Associated artifactsorg.mybatis:mybatis
        Current Version3.5.15
        Allowed version range3.5.15
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${native-buildtools.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${native-buildtools.version}
        Associated artifactsorg.graalvm.buildtools:native-maven-plugin
        Current Version0.10.0
        Allowed version range0.10.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${pdf.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${pdf.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-pdf-plugin
        Current Version1.6.1
        Allowed version range1.6.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${pmd.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${pmd.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-pmd-plugin
        Current Version3.21.2
        Allowed version range3.21.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${project-info.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${project-info.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-project-info-reports-plugin
        Current Version3.5.0
        Allowed version range3.5.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${release.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${release.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-release-plugin
        Current Version3.0.1
        Allowed version range3.0.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${resources.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${resources.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-resources-plugin
        Current Version3.3.1
        Allowed version range3.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${rewrite.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Property${rewrite.plugin}
        Associated artifactsorg.openrewrite.maven:rewrite-maven-plugin
        Current Version5.21.0
        Newer versions5.22.0 Latest Minor
        Allowed version range5.21.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${scm-publish.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${scm-publish.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-scm-publish-plugin
        Current Version3.2.1
        Allowed version range3.2.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${shade.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${shade.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-shade-plugin
        Current Version3.5.1
        Allowed version range3.5.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${site.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${site.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-site-plugin
        Current Version4.0.0-M13
        Allowed version range4.0.0-M13
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${sortpom.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${sortpom.plugin}
        Associated artifactscom.github.ekryd.sortpom:sortpom-maven-plugin
        Current Version3.3.0
        Allowed version range3.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${source.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${source.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-source-plugin
        Current Version3.3.0
        Allowed version range3.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${spotbugs.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Property${spotbugs.plugin}
        Associated artifactscom.github.spotbugs:spotbugs-maven-plugin
        Current Version4.8.3.0
        Newer versions4.8.3.1 Latest Subincremental
        Allowed version range4.8.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${spring-boot.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Property${spring-boot.version}
        Associated artifactsorg.springframework.boot:spring-boot-starter-parent
        Current Version2.7.18
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        Allowed version range2.7.18
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${spring-native.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${spring-native.version}
        Associated artifactsorg.springframework.experimental:spring-aot
        org.springframework.experimental:spring-native
        Current Version0.12.2
        Allowed version range0.12.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${surefire.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${surefire.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-surefire-plugin
        org.apache.maven.plugins:maven-surefire-report-plugin
        Current Version3.2.5
        Allowed version range3.2.5
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${taglist.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${taglist.plugin}
        Associated artifactsorg.codehaus.mojo:taglist-maven-plugin
        Current Version3.0.0
        Allowed version range3.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${versions.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${versions.plugin}
        Associated artifactsorg.codehaus.mojo:versions-maven-plugin
        Current Version2.16.2
        Allowed version range2.16.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${whitespace.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${whitespace.plugin}
        Associated artifactscom.github.hazendaz.maven:whitespace-maven-plugin
        Current Version1.3.1
        Allowed version range1.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/property-updates-report.html b/zh_CN/property-updates-report.html new file mode 100644 index 0000000..fe0330e --- /dev/null +++ b/zh_CN/property-updates-report.html @@ -0,0 +1,2167 @@ + + + + + + + + + + mybatis-spring-native-docs – Property Updates Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Overview

        +

        This report summarizes newer versions that may be available for your project's various properties associated with artifacts.

        + + + + + + + + + + + + + + + + + + + + + +
        # of properties using the latest version available50
        # of properties where the next version available is smaller than an incremental version update1
        # of properties where the next version available is an incremental version update0
        # of properties where the next version available is a minor version update1
        # of properties where the next version available is a major version update3
        +

        Summary of properties associated with artifact versions

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        ${antrun.plugin}3.1.0
        ${asm.version}9.6
        ${assembly.plugin}3.6.0
        ${base-bundle.version}11
        ${bnd.plugin}7.0.0
        ${bnd.version}7.0.0
        ${build-tools.version}1.3.1
        ${checkstyle.plugin}3.3.1
        ${checkstyle.version}10.13.0
        ${clean.plugin}3.3.2
        ${clirr.plugin}2.8
        ${compiler.plugin}3.12.1
        ${coveralls.plugin}4.5.0-M3
        ${dependency.plugin}3.6.1
        ${deploy.plugin}3.1.1
        ${enforcer.plugin}3.4.1
        ${extra-enforcer-rules.version}1.7.0
        ${fluido.version}2.0.0-M8
        ${formatter.plugin}2.23.0
        ${git-commit.plugin}7.0.0
        ${gpg.plugin}3.1.0
        ${impsort.plugin}1.9.0
        ${install.plugin}3.1.1
        ${jacoco.plugin}0.8.11
        ${jar.plugin}3.3.0
        ${javadoc.plugin}3.6.3
        ${jxr.plugin}3.3.2
        ${license.plugin}4.3
        ${license.version}4.3
        ${modernizer.plugin}2.7.0
        ${mybatis-dynamic-sql.version}1.5.0
        ${mybatis-freemarker.version}1.2.4
        ${mybatis-spring-boot.version}2.3.23.0.3
        ${mybatis-spring.version}2.1.23.0.3
        ${mybatis-thymeleaf.version}1.0.4
        ${mybatis-velocity.version}2.1.2
        ${mybatis.version}3.5.15
        ${pdf.plugin}1.6.1
        ${pmd.plugin}3.21.2
        ${project-info.plugin}3.5.0
        ${release.plugin}3.0.1
        ${resources.plugin}3.3.1
        ${rewrite.plugin}5.21.05.22.0
        ${scm-publish.plugin}3.2.1
        ${shade.plugin}3.5.1
        ${site.plugin}4.0.0-M13
        ${sortpom.plugin}3.3.0
        ${source.plugin}3.3.0
        ${spotbugs.plugin}4.8.3.04.8.3.1
        ${spring-boot.version}2.7.183.3.0-M1
        ${spring-native.version}0.12.2
        ${surefire.plugin}3.2.5
        ${taglist.plugin}3.0.0
        ${versions.plugin}2.16.2
        ${whitespace.plugin}1.3.1
        StatusPropertyCurrent VersionLatest SubincrementalLatest IncrementalLatest MinorLatest Major
        +

        Properties associated with artifact versions

        +

        +

        ${antrun.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${antrun.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-antrun-plugin
        Current Version3.1.0
        Allowed version range3.1.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${asm.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${asm.version}
        Associated artifactsorg.ow2.asm:asm
        Current Version9.6
        Allowed version range9.6
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${assembly.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${assembly.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-assembly-plugin
        Current Version3.6.0
        Allowed version range3.6.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${base-bundle.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${base-bundle.version}
        Associated artifactsorg.mybatis:base-bundle-descriptor
        Current Version11
        Allowed version range11
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${bnd.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${bnd.plugin}
        Associated artifactsbiz.aQute.bnd:bnd-maven-plugin
        Current Version7.0.0
        Allowed version range7.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${bnd.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${bnd.version}
        Associated artifactsbiz.aQute.bnd:biz.aQute.bndlib
        Current Version7.0.0
        Allowed version range7.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${build-tools.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${build-tools.version}
        Associated artifactscom.github.hazendaz:build-tools
        Current Version1.3.1
        Allowed version range1.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${checkstyle.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${checkstyle.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-checkstyle-plugin
        Current Version3.3.1
        Allowed version range3.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${checkstyle.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${checkstyle.version}
        Associated artifactscom.puppycrawl.tools:checkstyle
        Current Version10.13.0
        Allowed version range10.13.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${clean.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${clean.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-clean-plugin
        Current Version3.3.2
        Allowed version range3.3.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${clirr.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${clirr.plugin}
        Associated artifactsorg.codehaus.mojo:clirr-maven-plugin
        Current Version2.8
        Allowed version range2.8
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${compiler.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${compiler.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-compiler-plugin
        Current Version3.12.1
        Allowed version range3.12.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${coveralls.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${coveralls.plugin}
        Associated artifactscom.github.hazendaz.maven:coveralls-maven-plugin
        Current Version4.5.0-M3
        Allowed version range4.5.0-M3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${dependency.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${dependency.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-dependency-plugin
        Current Version3.6.1
        Allowed version range3.6.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${deploy.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${deploy.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-deploy-plugin
        Current Version3.1.1
        Allowed version range3.1.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${enforcer.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${enforcer.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-enforcer-plugin
        Current Version3.4.1
        Allowed version range3.4.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${extra-enforcer-rules.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${extra-enforcer-rules.version}
        Associated artifactsorg.codehaus.mojo:extra-enforcer-rules
        Current Version1.7.0
        Allowed version range1.7.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${fluido.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${fluido.version}
        Associated artifactsorg.apache.maven.skins:maven-fluido-skin
        Current Version2.0.0-M8
        Allowed version range2.0.0-M8
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${formatter.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${formatter.plugin}
        Associated artifactsnet.revelc.code.formatter:formatter-maven-plugin
        Current Version2.23.0
        Allowed version range2.23.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${git-commit.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${git-commit.plugin}
        Associated artifactsio.github.git-commit-id:git-commit-id-maven-plugin
        Current Version7.0.0
        Allowed version range7.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${gpg.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${gpg.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-gpg-plugin
        Current Version3.1.0
        Allowed version range3.1.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${impsort.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${impsort.plugin}
        Associated artifactsnet.revelc.code:impsort-maven-plugin
        Current Version1.9.0
        Allowed version range1.9.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${install.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${install.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-install-plugin
        Current Version3.1.1
        Allowed version range3.1.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${jacoco.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${jacoco.plugin}
        Associated artifactsorg.jacoco:jacoco-maven-plugin
        Current Version0.8.11
        Allowed version range0.8.11
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${jar.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${jar.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-jar-plugin
        Current Version3.3.0
        Allowed version range3.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${javadoc.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${javadoc.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-javadoc-plugin
        Current Version3.6.3
        Allowed version range3.6.3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${jxr.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${jxr.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-jxr-plugin
        Current Version3.3.2
        Allowed version range3.3.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${license.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${license.plugin}
        Associated artifactscom.mycila:license-maven-plugin
        Current Version4.3
        Allowed version range4.3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${license.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${license.version}
        Associated artifactscom.mycila:license-maven-plugin-git
        Current Version4.3
        Allowed version range4.3
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${modernizer.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${modernizer.plugin}
        Associated artifactsorg.gaul:modernizer-maven-plugin
        Current Version2.7.0
        Allowed version range2.7.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-dynamic-sql.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-dynamic-sql.version}
        Associated artifactsorg.mybatis.dynamic-sql:mybatis-dynamic-sql
        Current Version1.5.0
        Allowed version range1.5.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-freemarker.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-freemarker.version}
        Associated artifactsorg.mybatis.scripting:mybatis-freemarker
        Current Version1.2.4
        Allowed version range1.2.4
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-spring-boot.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Property${mybatis-spring-boot.version}
        Associated artifactsorg.mybatis.spring.boot:mybatis-spring-boot-autoconfigure
        org.mybatis.spring.boot:mybatis-spring-boot-starter
        Current Version2.3.2
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        Allowed version range2.3.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-spring.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Property${mybatis-spring.version}
        Associated artifactsorg.mybatis:mybatis-spring
        Current Version2.1.2
        Newer versions3.0.0
        3.0.1
        3.0.2
        3.0.3 Latest Major
        Allowed version range2.1.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-thymeleaf.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-thymeleaf.version}
        Associated artifactsorg.mybatis.scripting:mybatis-thymeleaf
        Current Version1.0.4
        Allowed version range1.0.4
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis-velocity.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis-velocity.version}
        Associated artifactsorg.mybatis.scripting:mybatis-velocity
        Current Version2.1.2
        Allowed version range2.1.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${mybatis.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${mybatis.version}
        Associated artifactsorg.mybatis:mybatis
        Current Version3.5.15
        Allowed version range3.5.15
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${pdf.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${pdf.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-pdf-plugin
        Current Version1.6.1
        Allowed version range1.6.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${pmd.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${pmd.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-pmd-plugin
        Current Version3.21.2
        Allowed version range3.21.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${project-info.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${project-info.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-project-info-reports-plugin
        Current Version3.5.0
        Allowed version range3.5.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${release.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${release.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-release-plugin
        Current Version3.0.1
        Allowed version range3.0.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${resources.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${resources.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-resources-plugin
        Current Version3.3.1
        Allowed version range3.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${rewrite.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer minor version available. Minor updates are sometimes passive.
        Property${rewrite.plugin}
        Associated artifactsorg.openrewrite.maven:rewrite-maven-plugin
        Current Version5.21.0
        Newer versions5.22.0 Latest Minor
        Allowed version range5.21.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${scm-publish.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${scm-publish.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-scm-publish-plugin
        Current Version3.2.1
        Allowed version range3.2.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${shade.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${shade.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-shade-plugin
        Current Version3.5.1
        Allowed version range3.5.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${site.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${site.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-site-plugin
        Current Version4.0.0-M13
        Allowed version range4.0.0-M13
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${sortpom.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${sortpom.plugin}
        Associated artifactscom.github.ekryd.sortpom:sortpom-maven-plugin
        Current Version3.3.0
        Allowed version range3.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${source.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${source.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-source-plugin
        Current Version3.3.0
        Allowed version range3.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${spotbugs.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer version available.
        Property${spotbugs.plugin}
        Associated artifactscom.github.spotbugs:spotbugs-maven-plugin
        Current Version4.8.3.0
        Newer versions4.8.3.1 Latest Subincremental
        Allowed version range4.8.3.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${spring-boot.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status There is at least one newer major version available. Major updates are rarely passive.
        Property${spring-boot.version}
        Associated artifactsorg.springframework.boot:spring-boot-starter-parent
        Current Version2.7.18
        Newer versions3.0.0-M1
        3.0.0-M2
        3.0.0-M3
        3.0.0-M4
        3.0.0-M5
        3.0.0-RC1
        3.0.0-RC2
        3.0.0
        3.0.1
        3.0.2
        3.0.3
        3.0.4
        3.0.5
        3.0.6
        3.0.7
        3.0.8
        3.0.9
        3.0.10
        3.0.11
        3.0.12
        3.0.13
        3.1.0-M1
        3.1.0-M2
        3.1.0-RC1
        3.1.0-RC2
        3.1.0
        3.1.1
        3.1.2
        3.1.3
        3.1.4
        3.1.5
        3.1.6
        3.1.7
        3.1.8
        3.2.0-M1
        3.2.0-M2
        3.2.0-M3
        3.2.0-RC1
        3.2.0-RC2
        3.2.0
        3.2.1
        3.2.2
        3.3.0-M1 Latest Major
        Allowed version range2.7.18
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${spring-native.version}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${spring-native.version}
        Associated artifactsorg.springframework.experimental:spring-aot
        org.springframework.experimental:spring-native
        Current Version0.12.2
        Allowed version range0.12.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${surefire.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${surefire.plugin}
        Associated artifactsorg.apache.maven.plugins:maven-surefire-plugin
        org.apache.maven.plugins:maven-surefire-report-plugin
        Current Version3.2.5
        Allowed version range3.2.5
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${taglist.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${taglist.plugin}
        Associated artifactsorg.codehaus.mojo:taglist-maven-plugin
        Current Version3.0.0
        Allowed version range3.0.0
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${versions.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${versions.plugin}
        Associated artifactsorg.codehaus.mojo:versions-maven-plugin
        Current Version2.16.2
        Allowed version range2.16.2
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +

        ${whitespace.plugin}

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Status No newer versions available.
        Property${whitespace.plugin}
        Associated artifactscom.github.hazendaz.maven:whitespace-maven-plugin
        Current Version1.3.1
        Allowed version range1.3.1
        Infer associations from projectYes
        Only use release versionsNo
        Include projects from reactorYes
        Always use reactor projects (even if older or -SNAPSHOT)Yes
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/scm.html b/zh_CN/scm.html new file mode 100644 index 0000000..cfdb7bb --- /dev/null +++ b/zh_CN/scm.html @@ -0,0 +1,89 @@ + + + + + + + + + + mybatis-spring-native-docs – 源代码库 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        概述

        +

        本项目使用 Git 管理源代码 关于Git的简介可以在 https://git-scm.com/documentation找到。

        +

        Web访问

        +

        以下是在线源代码库的链接。

        +
        +

        匿名访问

        +

        可以使用此命令从 Git 匿名签出源代码(参见 https://git-scm.com/docs/git-clone):

        +
        +
        $ git clone ssh://git@github.com/mybatis/spring-native.git
        +

        开发者访问

        +

        只有项目开发人员能够通过这一方法访问Git项目树。 (参见 https://git-scm.com/docs/git-clone).

        +
        +
        $ git clone ssh://git@github.com/mybatis/spring-native.git
        +

        通过防火墙访问

        +

        请参考使用的源代码管理工具的文档以获得更多的通过防火墙进行访问的信息。

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/spotbugs.html b/zh_CN/spotbugs.html new file mode 100644 index 0000000..ad059f3 --- /dev/null +++ b/zh_CN/spotbugs.html @@ -0,0 +1,111 @@ + + + + + + + + + + mybatis-spring-native-extensions – SpotBugs Bug Detector Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        SpotBugs Bug Detector Report

        +

        The following document contains the results of SpotBugs

        +

        SpotBugs Version is 4.8.3

        +

        Threshold is high

        +

        Effort is max

        +

        Summary

        + + + + + + + + + + +
        ClassesBugsErrorsMissing Classes
        0000
        +

        Files

        + + + +
        ClassBugs
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/summary.html b/zh_CN/summary.html new file mode 100644 index 0000000..902e986 --- /dev/null +++ b/zh_CN/summary.html @@ -0,0 +1,119 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目概要 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        项目概要

        +

        项目信息

        + + + + + + + + + + + + +
        字段
        名称mybatis-spring-native-docs
        描述Documents for MyBatis integration with Spring Native feature
        主页https://www.mybatis.org/spring-native/mybatis-spring-native-docs/
        +

        项目组织

        + + + + + + + + + +
        字段
        名称MyBatis.org
        URLhttps://www.mybatis.org/
        +

        构建信息

        + + + + + + + + + + + + + + + + + + +
        字段
        GroupIdorg.mybatis.spring.native
        ArtifactIdmybatis-spring-native-docs
        版本0.1.0-SNAPSHOT
        类型jar
        Java 版本11
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/surefire-report.html b/zh_CN/surefire-report.html new file mode 100644 index 0000000..61056d1 --- /dev/null +++ b/zh_CN/surefire-report.html @@ -0,0 +1,107 @@ + + + + + + + + + + mybatis-spring-native-docs – Surefire Report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Surefire Report

        +

        Summary


        + + + + + + + + + + + + + + +
        TestsErrorsFailuresSkippedSuccess RateTime
        00000%0 s

        +

        Note: failures are anticipated and checked for with assertions while errors are unanticipated.


        +
        +
        +
        +
        + + + + diff --git a/zh_CN/taglist.html b/zh_CN/taglist.html new file mode 100644 index 0000000..8a33945 --- /dev/null +++ b/zh_CN/taglist.html @@ -0,0 +1,108 @@ + + + + + + + + + + mybatis-spring-native-extensions – Tag List report + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        Tag List Report

        +

        The following document contains the listing of user tags found in the code. Below is the summary of the occurrences per tag.

        + +Tag Class +Total number of occurrences +Tag strings used by tag class + +Deprecated Work +0 +@deprecated + +FIXME Work +0 +fixme, @fixme + +Todo Work +0 +todo, @todo +

        Each tag is detailed below:

        +
        +
        +
        +
        + + + + diff --git a/zh_CN/team.html b/zh_CN/team.html new file mode 100644 index 0000000..44a4621 --- /dev/null +++ b/zh_CN/team.html @@ -0,0 +1,216 @@ + + + + + + + + + + mybatis-spring-native-docs – 项目团队 + + + + + + +
        +
        + + + +
        +
        +
        + + +
        +
        +
        +

        团队

        +

        一个成功的项目要求许多人扮演许多的角色。其中一些成员编写代码或者文档,同时其他成员则通过测试、打补丁以及提建议等方式实现自己的价值。

        +

        一个团队由团队成员以及贡献者组成。团队成员直接访问项目的源代码并积极地参与编码工作。贡献者则通过向成员提交补丁和提出建议来完善项目。一个项目中贡献者的数量是不限的。请立刻加入到贡献行列中来吧。衷心感谢所有对项目做出贡献的人。

        +

        成员

        +

        以下是开发者的列表,他们有提交的权限,在项目中以某种方式直接做出了贡献。

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        头像用户名姓名电子邮件角色时区
        cbeginClinton Beginclinton.begin@gmail.comOwner, Founder, Committer-
        agustafsonAndrew Gustafsongus4000@gmail.comCommitter-
        brandon.goodinBrandon Goodinbrandon.goodin@gmail.comCommitter-
        christianpoitrasChristian Poitraschristian.poitras@ircm.qc.caCommitter-5
        emacarronEduardo Macarroneduardo.macarron@gmail.comCommitter-
        mnesarcoFrank Martinezmnesarco@gmail.comCommitter-
        hpresnallHunter Presnallhpresnall@gmail.comCommitter-
        harawataIwao Aveharawata@gmail.comCommitter-
        jeffgbutlerJeff Butlerjeffgbutler@gmail.comCommitter-
        hazendazJeremy Landisjeremylandis@hotmail.comCommitter-5
        nospam@kaigrabfelder.deKai Grabfeldernospam@kaigrabfelder.deCommitter-
        lmeadorsLarry Meadorslarry.meadors@gmail.comCommitter-
        marcosperanzaMarco Speranzamarco.speranza79@gmail.comCommitter+1
        nmavesNathan Mavesnathan.maves@gmail.comCommitter-
        pboonphongPutthiphong Boonphongputthiphong.boonphong@gmail.comCommitter-
        simonetripodiSimone Tripodisimone.tripodi@gmail.comCommitter+1
        h3adacheTim Chenchengt@gmail.comCommitter-
        +

        贡献者

        +

        以下的其他人通过建议,补丁或者文档对本项目做出了贡献。

        + + + + + + + + +
        头像姓名电子邮件
        Kazuki Shimizukazuki43zoo@gmail.com
        +
        +
        +
        +
        + + + + diff --git a/zh_CN/xref-test/allclasses-frame.html b/zh_CN/xref-test/allclasses-frame.html new file mode 100644 index 0000000..810c6d5 --- /dev/null +++ b/zh_CN/xref-test/allclasses-frame.html @@ -0,0 +1,72 @@ + + + + + + + All Classes + + + +

        All Classes

        +
        + +
        + + diff --git a/zh_CN/xref-test/index.html b/zh_CN/xref-test/index.html new file mode 100644 index 0000000..acf9fc6 --- /dev/null +++ b/zh_CN/xref-test/index.html @@ -0,0 +1,75 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html new file mode 100644 index 0000000..3647878 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessorTest.html @@ -0,0 +1,147 @@ + + + +MyBatisMapperFactoryBeanPostProcessorTest xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import org.assertj.core.api.Assertions;
        +19  import org.junit.jupiter.api.Test;
        +20  import org.mybatis.spring.mapper.MapperFactoryBean;
        +21  import org.mybatis.spring.nativex.mapper.SampleMapper;
        +22  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
        +23  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
        +24  import org.springframework.beans.factory.support.RootBeanDefinition;
        +25  
        +26  /**
        +27   * Test cases for {@link MyBatisMapperFactoryBeanPostProcessor}.
        +28   *
        +29   * @author Kazuki Shimizu
        +30   */
        +31  class MyBatisMapperFactoryBeanPostProcessorTest {
        +32  
        +33    @Test
        +34    void resolveMapperInterfaceType() {
        +35      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
        +36          .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class)
        +37          .getBeanDefinition();
        +38      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +39      postProcess(beanDefinition);
        +40      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
        +41      Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean.class);
        +42      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1);
        +43      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class);
        +44    }
        +45  
        +46    @Test
        +47    void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithOneGeneric() {
        +48      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
        +49          .rootBeanDefinition(MapperFactoryBean2.class).addPropertyValue("mapperInterface", SampleMapper.class)
        +50          .getBeanDefinition();
        +51      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +52      postProcess(beanDefinition);
        +53      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
        +54      Assertions.assertThat(beanDefinition.getTargetType()).isEqualTo(MapperFactoryBean2.class);
        +55      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()).hasSize(1);
        +56      Assertions.assertThat(beanDefinition.getResolvableType().getGenerics()[0].toClass()).isEqualTo(SampleMapper.class);
        +57    }
        +58  
        +59    @Test
        +60    void resolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithoutGeneric() {
        +61      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
        +62          .rootBeanDefinition(SampleMapperFactoryBean.class).addPropertyValue("mapperInterface", SampleMapper.class)
        +63          .getBeanDefinition();
        +64      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
        +65      postProcess(beanDefinition);
        +66      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isFalse();
        +67    }
        +68  
        +69    // TODO Now this case is limitation using MapperFactoryBean's subclass
        +70    @Test
        +71    void failResolveMapperInterfaceTypeWhenMapperFactoryBeanSubclassWithMultiGenerics() {
        +72      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
        +73          .rootBeanDefinition(MapperFactoryBean3.class).addPropertyValue("mapperInterface", SampleMapper.class)
        +74          .getBeanDefinition();
        +75      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +76      Assertions.assertThatIllegalArgumentException().isThrownBy(() -> postProcess(beanDefinition)).withMessage(
        +77          "Mismatched number of generics specified for private static class org.mybatis.spring.nativex.MyBatisMapperFactoryBeanPostProcessorTest$MapperFactoryBean3<T,Z>");
        +78    }
        +79  
        +80    @Test
        +81    void skipResolveMapperInterfaceTypeWhenNotPresentMapperInterface() {
        +82      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
        +83          .rootBeanDefinition(MapperFactoryBean.class).getBeanDefinition();
        +84      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +85      postProcess(beanDefinition);
        +86      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +87      Assertions.assertThat(beanDefinition.getTargetType()).isNull();
        +88    }
        +89  
        +90    @Test
        +91    void skipResolveMapperInterfaceTypeWhenFailGetMapperInterface() {
        +92      RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder
        +93          .rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", "invalid value")
        +94          .getBeanDefinition();
        +95      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +96      postProcess(beanDefinition);
        +97      Assertions.assertThat(beanDefinition.getResolvableType().hasUnresolvableGenerics()).isTrue();
        +98      Assertions.assertThat(beanDefinition.getTargetType()).isNull();
        +99    }
        +100 
        +101   @Test
        +102   void skipResolveMapperInterfaceTypeWhenNotPresentBeanClass() {
        +103     RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition((Class<?>) null)
        +104         .getBeanDefinition();
        +105     postProcess(beanDefinition);
        +106     Assertions.assertThat(beanDefinition.getTargetType()).isNull();
        +107   }
        +108 
        +109   @Test
        +110   void skipResolveMapperInterfaceTypeWhenBeanClassNotMapperBeanFactory() {
        +111     RootBeanDefinition beanDefinition = (RootBeanDefinition) BeanDefinitionBuilder.rootBeanDefinition(String.class)
        +112         .getBeanDefinition();
        +113     postProcess(beanDefinition);
        +114     Assertions.assertThat(beanDefinition.getTargetType()).isNull();
        +115   }
        +116 
        +117   private void postProcess(RootBeanDefinition beanDefinition) {
        +118     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        +119     MyBatisMapperFactoryBeanPostProcessor processor = new MyBatisMapperFactoryBeanPostProcessor();
        +120     processor.setBeanFactory(beanFactory);
        +121     processor.postProcessBeanDefinition("testBean", beanDefinition);
        +122   }
        +123 
        +124   private static class MapperFactoryBean2<T> extends MapperFactoryBean<T> {
        +125   }
        +126 
        +127   @SuppressWarnings("unused")
        +128   private static class MapperFactoryBean3<T, Z> extends MapperFactoryBean<T> {
        +129   }
        +130 
        +131   private static class SampleMapperFactoryBean extends MapperFactoryBean<SampleMapper> {
        +132   }
        +133 
        +134 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html new file mode 100644 index 0000000..cd30540 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessorTest.html @@ -0,0 +1,287 @@ + + + +MyBatisMapperNativeConfigurationProcessorTest xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
        +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
        +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
        +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
        +30  
        +31  import java.util.ArrayList;
        +32  import java.util.List;
        +33  import java.util.Map;
        +34  import java.util.Set;
        +35  import java.util.stream.Collectors;
        +36  
        +37  import org.assertj.core.api.Assertions;
        +38  import org.junit.jupiter.api.Test;
        +39  import org.mybatis.spring.mapper.MapperFactoryBean;
        +40  import org.mybatis.spring.nativex.mapper.Sample2Mapper;
        +41  import org.mybatis.spring.nativex.mapper.Sample3Mapper;
        +42  import org.mybatis.spring.nativex.mapper.SampleMapper;
        +43  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry;
        +44  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
        +45  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry;
        +46  import org.springframework.beans.factory.config.RuntimeBeanNameReference;
        +47  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
        +48  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
        +49  import org.springframework.nativex.domain.proxies.JdkProxyDescriptor;
        +50  import org.springframework.nativex.domain.proxies.ProxiesDescriptor;
        +51  import org.springframework.nativex.hint.TypeAccess;
        +52  
        +53  /**
        +54   * Test cases for {@link MyBatisMapperNativeConfigurationProcessor}.
        +55   *
        +56   * @author Kazuki Shimizu
        +57   */
        +58  class MyBatisMapperNativeConfigurationProcessorTest {
        +59  
        +60    private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
        +61        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
        +62        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
        +63  
        +64    @Test
        +65    @SuppressWarnings("java:S5961")
        +66    void registerMapperInterfaceAndRelationships() {
        +67      DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        +68      beanFactory.registerBeanDefinition("sampleMapper",
        +69          BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
        +70              .addPropertyValue("mapperInterface", SampleMapper.class)
        +71              .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
        +72              .getBeanDefinition());
        +73      NativeConfigurationRegistry registry = process(beanFactory);
        +74      // reflection hint
        +75      {
        +76        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
        +77            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
        +78        Assertions.assertThat(entries).hasSize(13);
        +79        // mapper interface
        +80        Assertions.assertThat(entries.get(SampleMapper.class))
        +81            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +82        // mapper method argument and return type
        +83        Assertions.assertThat(entries.get(SampleMapper.Sample.class))
        +84            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +85        Assertions.assertThat(entries.get(SampleMapper.SampleParam.class))
        +86            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +87        Assertions.assertThat(entries.get(SampleMapper.Sample2.class))
        +88            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +89        Assertions.assertThat(entries.get(SampleMapper.Sample2Param.class))
        +90            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +91        // sql provider
        +92        Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass1.class))
        +93            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +94        Assertions.assertThat(entries.get(SampleMapper.SelectProviderClass2.class))
        +95            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +96        Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass1.class))
        +97            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +98        Assertions.assertThat(entries.get(SampleMapper.InsertProviderClass2.class))
        +99            .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +100       Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass1.class))
        +101           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +102       Assertions.assertThat(entries.get(SampleMapper.UpdateProviderClass2.class))
        +103           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +104       Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass1.class))
        +105           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +106       Assertions.assertThat(entries.get(SampleMapper.DeleteProviderClass2.class))
        +107           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +108     }
        +109     // proxy hint
        +110     {
        +111       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
        +112       Assertions.assertThat(entries).hasSize(1);
        +113       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
        +114       entries.forEach(x -> x.contribute(proxiesDescriptor));
        +115       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
        +116       Assertions.assertThat(jdkProxyDescriptors).hasSize(1);
        +117       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
        +118         Assertions.assertThat(x.isClassProxy()).isFalse();
        +119         Assertions.assertThat(x.getTypes()).containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.SampleMapper");
        +120       });
        +121     }
        +122     // resource hint
        +123     {
        +124       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
        +125       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/SampleMapper.xml");
        +126     }
        +127   }
        +128 
        +129   @Test
        +130   void registerMultiMapperInterface() {
        +131     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        +132     beanFactory.registerBeanDefinition("sample2Mapper",
        +133         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
        +134             .addPropertyValue("mapperInterface", Sample2Mapper.class)
        +135             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
        +136             .getBeanDefinition());
        +137     beanFactory.registerBeanDefinition("sample3Mapper",
        +138         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
        +139             .addPropertyValue("mapperInterface", Sample3Mapper.class)
        +140             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
        +141             .getBeanDefinition());
        +142     NativeConfigurationRegistry registry = process(beanFactory);
        +143     // reflection hint
        +144     {
        +145       Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
        +146           .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
        +147       Assertions.assertThat(entries).hasSize(2);
        +148       // mapper interface
        +149       Assertions.assertThat(entries.get(Sample2Mapper.class))
        +150           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +151       Assertions.assertThat(entries.get(Sample3Mapper.class))
        +152           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +153     }
        +154     // proxy hint
        +155     {
        +156       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
        +157       Assertions.assertThat(entries).hasSize(2);
        +158       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
        +159       entries.forEach(x -> x.contribute(proxiesDescriptor));
        +160       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
        +161       Assertions.assertThat(jdkProxyDescriptors).hasSize(2);
        +162       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
        +163         Assertions.assertThat(x.isClassProxy()).isFalse();
        +164         Assertions.assertThat(x.getTypes())
        +165             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper");
        +166       });
        +167       Assertions.assertThat(jdkProxyDescriptors.get(1)).satisfies(x -> {
        +168         Assertions.assertThat(x.isClassProxy()).isFalse();
        +169         Assertions.assertThat(x.getTypes())
        +170             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample3Mapper");
        +171       });
        +172     }
        +173     // resource hint
        +174     {
        +175       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
        +176       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml",
        +177           "org/mybatis/spring/nativex/mapper/Sample3Mapper.xml");
        +178     }
        +179   }
        +180 
        +181   @Test
        +182   void registerMapperInterfaceWithMapperFactoryBeanSubclass() {
        +183     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        +184     beanFactory.registerBeanDefinition("sample2Mapper",
        +185         BeanDefinitionBuilder.rootBeanDefinition(MyMapperFactoryBean.class)
        +186             .addPropertyValue("mapperInterface", Sample2Mapper.class)
        +187             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
        +188             .getBeanDefinition());
        +189     NativeConfigurationRegistry registry = process(beanFactory);
        +190     // reflection hint
        +191     {
        +192       Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
        +193           .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
        +194       Assertions.assertThat(entries).hasSize(1);
        +195       // mapper interface
        +196       Assertions.assertThat(entries.get(Sample2Mapper.class))
        +197           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(TYPE_ACCESSES));
        +198     }
        +199     // proxy hint
        +200     {
        +201       List<NativeProxyEntry> entries = new ArrayList<>(registry.proxy().getEntries());
        +202       Assertions.assertThat(entries).hasSize(1);
        +203       ProxiesDescriptor proxiesDescriptor = new ProxiesDescriptor();
        +204       entries.forEach(x -> x.contribute(proxiesDescriptor));
        +205       List<JdkProxyDescriptor> jdkProxyDescriptors = new ArrayList<>(proxiesDescriptor.getProxyDescriptors());
        +206       Assertions.assertThat(jdkProxyDescriptors).hasSize(1);
        +207       Assertions.assertThat(jdkProxyDescriptors.get(0)).satisfies(x -> {
        +208         Assertions.assertThat(x.isClassProxy()).isFalse();
        +209         Assertions.assertThat(x.getTypes())
        +210             .containsExactlyInAnyOrder("org.mybatis.spring.nativex.mapper.Sample2Mapper");
        +211       });
        +212     }
        +213     // resource hint
        +214     {
        +215       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
        +216       Assertions.assertThat(resources).containsExactlyInAnyOrder("org/mybatis/spring/nativex/mapper/Sample2Mapper.xml");
        +217     }
        +218   }
        +219 
        +220   @Test
        +221   void skipRegisterWhenMapperInterfaceNotPresent() {
        +222     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        +223     beanFactory.registerBeanDefinition("sample2Mapper",
        +224         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class)
        +225             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
        +226             .getBeanDefinition());
        +227     NativeConfigurationRegistry registry = process(beanFactory);
        +228     // reflection hint
        +229     {
        +230       Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty();
        +231     }
        +232     // proxy hint
        +233     {
        +234       Assertions.assertThat(registry.proxy().getEntries()).isEmpty();
        +235     }
        +236     // resource hint
        +237     {
        +238       Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty();
        +239     }
        +240   }
        +241 
        +242   @Test
        +243   void skipRegisterWhenMapperInterfaceIsNull() {
        +244     DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        +245     beanFactory.registerBeanDefinition("sample2Mapper",
        +246         BeanDefinitionBuilder.rootBeanDefinition(MapperFactoryBean.class).addPropertyValue("mapperInterface", null)
        +247             .addPropertyValue("sqlSessionTemplate", new RuntimeBeanNameReference("sqlSessionTemplate"))
        +248             .getBeanDefinition());
        +249     NativeConfigurationRegistry registry = process(beanFactory);
        +250     // reflection hint
        +251     {
        +252       Assertions.assertThat(registry.reflection().reflectionEntries()).isEmpty();
        +253     }
        +254     // proxy hint
        +255     {
        +256       Assertions.assertThat(registry.proxy().getEntries()).isEmpty();
        +257     }
        +258     // resource hint
        +259     {
        +260       Assertions.assertThat(registry.resources().toResourcesDescriptor().getPatterns()).isEmpty();
        +261     }
        +262   }
        +263 
        +264   private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) {
        +265     NativeConfigurationRegistry registry = new NativeConfigurationRegistry();
        +266     new MyBatisMapperNativeConfigurationProcessor().process(beanFactory, registry);
        +267     return registry;
        +268   }
        +269 
        +270   private static class MyMapperFactoryBean<T> extends MapperFactoryBean<T> {
        +271 
        +272   }
        +273 
        +274 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html new file mode 100644 index 0000000..da703b9 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisMapperTypeUtilsTest.html @@ -0,0 +1,372 @@ + + + +MyBatisMapperTypeUtilsTest xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import java.lang.reflect.Method;
        +19  import java.util.Arrays;
        +20  import java.util.Collection;
        +21  import java.util.HashMap;
        +22  import java.util.List;
        +23  import java.util.Map;
        +24  import java.util.Optional;
        +25  import java.util.Set;
        +26  import java.util.concurrent.ConcurrentMap;
        +27  import java.util.stream.Collectors;
        +28  
        +29  import org.assertj.core.api.Assertions;
        +30  import org.junit.jupiter.api.Test;
        +31  import org.springframework.util.ReflectionUtils;
        +32  
        +33  class MyBatisMapperTypeUtilsTest {
        +34  
        +35    @Test
        +36    void resolveReturnClassWithFinalValueClass() {
        +37      Class<?> mapper = TestMapper1.class;
        +38      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findString"));
        +39      Assertions.assertThat(type).isEqualTo(String.class);
        +40    }
        +41  
        +42    @Test
        +43    void resolveReturnClassWithAbstractValueClass() {
        +44      Class<?> mapper = TestMapper1.class;
        +45      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findNumber"));
        +46      Assertions.assertThat(type).isEqualTo(Number.class);
        +47    }
        +48  
        +49    @Test
        +50    void resolveReturnClassWithTopLayerInterface() {
        +51      Class<?> mapper = TestMapper1.class;
        +52      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +53          ReflectionUtils.findMethod(mapper, "findCharSequence"));
        +54      Assertions.assertThat(type).isEqualTo(CharSequence.class);
        +55    }
        +56  
        +57    @Test
        +58    void resolveReturnClassWithPrimitive() {
        +59      Class<?> mapper = TestMapper1.class;
        +60      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findInt"));
        +61      Assertions.assertThat(type).isEqualTo(int.class);
        +62    }
        +63  
        +64    @Test
        +65    void resolveReturnClassWithPrimitiveWrapper() {
        +66      Class<?> mapper = TestMapper1.class;
        +67      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "findLong"));
        +68      Assertions.assertThat(type).isEqualTo(Long.class);
        +69    }
        +70  
        +71    @Test
        +72    void resolveReturnClassWithPrimitiveVoid() {
        +73      Class<?> mapper = TestMapper1.class;
        +74      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper, ReflectionUtils.findMethod(mapper, "insert"));
        +75      Assertions.assertThat(type).isEqualTo(void.class);
        +76    }
        +77  
        +78    @Test
        +79    void resolveReturnClassWithClassVoid() {
        +80      Class<?> mapper = TestMapper1.class;
        +81      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +82          ReflectionUtils.findMethod(mapper, "insertWithClassVoid"));
        +83      Assertions.assertThat(type).isEqualTo(Void.class);
        +84    }
        +85  
        +86    @Test
        +87    void resolveReturnClassWithSimpleBean() {
        +88      Class<?> mapper = TestMapper1.class;
        +89      Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +90          ReflectionUtils.findMethod(mapper, "findSimpleBean"));
        +91      Assertions.assertThat(type).isEqualTo(MyBean.class);
        +92    }
        +93  
        +94    @Test
        +95    void resolveReturnClassWithSimpleBeanInCollection() {
        +96      Class<?> mapper = TestMapper1.class;
        +97      {
        +98        Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +99            ReflectionUtils.findMethod(mapper, "findSimpleBeanList"));
        +100       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +101     }
        +102     {
        +103       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +104           ReflectionUtils.findMethod(mapper, "findSimpleBeanCollection"));
        +105       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +106     }
        +107     {
        +108       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +109           ReflectionUtils.findMethod(mapper, "findSimpleBeanIterable"));
        +110       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +111     }
        +112     {
        +113       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +114           ReflectionUtils.findMethod(mapper, "findSimpleBeanArray"));
        +115       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +116     }
        +117     {
        +118       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +119           ReflectionUtils.findMethod(mapper, "findSimpleBeanMap"));
        +120       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +121     }
        +122     {
        +123       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +124           ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap"));
        +125       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +126     }
        +127   }
        +128 
        +129   @Test
        +130   void resolveReturnClassWithSimpleBeanInMap() {
        +131     Class<?> mapper = TestMapper1.class;
        +132     {
        +133       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +134           ReflectionUtils.findMethod(mapper, "findSimpleBeanMap"));
        +135       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +136     }
        +137     {
        +138       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +139           ReflectionUtils.findMethod(mapper, "findSimpleBeanConcurrentMap"));
        +140       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +141     }
        +142   }
        +143 
        +144   @Test
        +145   void resolveReturnClassWithOptional() {
        +146     Class<?> mapper = TestMapper1.class;
        +147     {
        +148       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +149           ReflectionUtils.findMethod(mapper, "findStringWithOptional"));
        +150       Assertions.assertThat(type).isEqualTo(String.class);
        +151     }
        +152     {
        +153       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +154           ReflectionUtils.findMethod(mapper, "findSimpleBeanWithOptional"));
        +155       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +156     }
        +157   }
        +158 
        +159   @Test
        +160   void resolveReturnClassWithWildcard() {
        +161     Class<?> mapper = TestMapper1.class;
        +162     {
        +163       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +164           ReflectionUtils.findMethod(mapper, "findSimpleWildcardList"));
        +165       Assertions.assertThat(type).isEqualTo(List.class);
        +166     }
        +167     {
        +168       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +169           ReflectionUtils.findMethod(mapper, "findSimpleGenericsWildcardList"));
        +170       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +171     }
        +172   }
        +173 
        +174   @Test
        +175   void resolveReturnClassWithGenericsMapper() {
        +176     Class<?> mapper = TestMapper2.class;
        +177     {
        +178       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +179           Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper))
        +180               .collect(Collectors.toMap(Method::getName, x -> x)).get("findOne"));
        +181       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +182     }
        +183     {
        +184       Class<?> type = MyBatisMapperTypeUtils.resolveReturnClass(mapper,
        +185           Arrays.stream(ReflectionUtils.getAllDeclaredMethods(mapper))
        +186               .collect(Collectors.toMap(Method::getName, x -> x)).get("findAll"));
        +187       Assertions.assertThat(type).isEqualTo(MyBean.class);
        +188     }
        +189   }
        +190 
        +191   @Test
        +192   void resolveParameterClassesSingleBean() {
        +193     Class<?> mapper = TestMapper3.class;
        +194     Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +195         ReflectionUtils.findMethod(mapper, "insertWithBean", MyBean.class));
        +196     Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +197   }
        +198 
        +199   @Test
        +200   void resolveParameterClassesMultiBean() {
        +201     Class<?> mapper = TestMapper3.class;
        +202     Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +203         ReflectionUtils.findMethod(mapper, "insertWithMultiBean", MyBeanKey.class, MyBean.class));
        +204     Assertions.assertThat(types).containsExactlyInAnyOrder(MyBeanKey.class, MyBean.class);
        +205   }
        +206 
        +207   @Test
        +208   void resolveParameterClassesWithBeanInMap() {
        +209     Class<?> mapper = TestMapper3.class;
        +210     {
        +211       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +212           ReflectionUtils.findMethod(mapper, "insertWithMap", Map.class));
        +213       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +214     }
        +215     {
        +216       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +217           ReflectionUtils.findMethod(mapper, "insertWithFixKeyMap", MyFixKeyMap.class));
        +218       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +219     }
        +220     {
        +221       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +222           ReflectionUtils.findMethod(mapper, "insertWithFixValueMap", MyFixValueMap.class));
        +223       Assertions.assertThat(types).containsExactlyInAnyOrder(Integer.class);
        +224     }
        +225   }
        +226 
        +227   @Test
        +228   void resolveParameterClassesWithBeanInCollection() {
        +229     Class<?> mapper = TestMapper3.class;
        +230     {
        +231       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +232           ReflectionUtils.findMethod(mapper, "insertWithBeanInList", List.class));
        +233       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +234     }
        +235     {
        +236       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +237           ReflectionUtils.findMethod(mapper, "insertWithBeanInCollection", Collection.class));
        +238       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +239     }
        +240     {
        +241       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +242           ReflectionUtils.findMethod(mapper, "insertWithBeanInIterable", Iterable.class));
        +243       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +244     }
        +245     {
        +246       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +247           ReflectionUtils.findMethod(mapper, "insertWithBeanInArray", MyBean[].class));
        +248       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +249     }
        +250   }
        +251 
        +252   @Test
        +253   void resolveParameterClassesWithWildcard() {
        +254     Class<?> mapper = TestMapper3.class;
        +255     {
        +256       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +257           ReflectionUtils.findMethod(mapper, "insertWithWildcardInList", List.class));
        +258       Assertions.assertThat(types).containsExactlyInAnyOrder(Object.class);
        +259     }
        +260     {
        +261       Set<Class<?>> types = MyBatisMapperTypeUtils.resolveParameterClasses(mapper,
        +262           ReflectionUtils.findMethod(mapper, "insertWithGenericsWildcardInList", List.class));
        +263       Assertions.assertThat(types).containsExactlyInAnyOrder(MyBean.class);
        +264     }
        +265   }
        +266 
        +267   @SuppressWarnings("unused")
        +268   interface TestMapper1 {
        +269 
        +270     String findString();
        +271 
        +272     CharSequence findCharSequence();
        +273 
        +274     Number findNumber();
        +275 
        +276     Long findLong();
        +277 
        +278     int findInt();
        +279 
        +280     void insert();
        +281 
        +282     Void insertWithClassVoid();
        +283 
        +284     MyBean findSimpleBean();
        +285 
        +286     List<MyBean> findSimpleBeanList();
        +287 
        +288     Collection<MyBean> findSimpleBeanCollection();
        +289 
        +290     Iterable<MyBean> findSimpleBeanIterable();
        +291 
        +292     Map<String, MyBean> findSimpleBeanMap();
        +293 
        +294     ConcurrentMap<String, MyBean> findSimpleBeanConcurrentMap();
        +295 
        +296     MyBean[] findSimpleBeanArray();
        +297 
        +298     Optional<String> findStringWithOptional();
        +299 
        +300     Optional<MyBean> findSimpleBeanWithOptional();
        +301 
        +302     List<?> findSimpleWildcardList();
        +303 
        +304     <T extends MyBean> List<T> findSimpleGenericsWildcardList();
        +305 
        +306   }
        +307 
        +308   interface TestMapper2 extends BaseMapper<MyBean, MyBeanKey> {
        +309   }
        +310 
        +311   @SuppressWarnings("unused")
        +312   interface TestMapper3 {
        +313     void insertWithBean(MyBean bean);
        +314 
        +315     void insertWithBeanInList(List<MyBean> beans);
        +316 
        +317     void insertWithBeanInCollection(Collection<MyBean> beans);
        +318 
        +319     void insertWithBeanInIterable(Iterable<MyBean> beans);
        +320 
        +321     void insertWithBeanInArray(MyBean[] beans);
        +322 
        +323     void insertWithMultiBean(MyBeanKey key, MyBean bean);
        +324 
        +325     void insertWithMap(Map<String, MyBean> beans);
        +326 
        +327     void insertWithFixKeyMap(MyFixKeyMap<MyBean> beans);
        +328 
        +329     void insertWithFixValueMap(MyFixValueMap<Integer> beans);
        +330 
        +331     void insertWithWildcardInList(List<?> beans);
        +332 
        +333     <T extends MyBean> void insertWithGenericsWildcardInList(List<T> beans);
        +334   }
        +335 
        +336   @SuppressWarnings("unused")
        +337   interface BaseMapper<T, K> {
        +338     T findOne(K key);
        +339 
        +340     Collection<T> findAll();
        +341   }
        +342 
        +343   static class MyBean {
        +344 
        +345   }
        +346 
        +347   static class MyBeanKey {
        +348 
        +349   }
        +350 
        +351   static class MyFixKeyMap<T> extends HashMap<String, T> {
        +352 
        +353   }
        +354 
        +355   static class MyFixValueMap<K> extends HashMap<K, MyBean> {
        +356 
        +357   }
        +358 
        +359 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html new file mode 100644 index 0000000..74656e4 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisResourcesScanTest.html @@ -0,0 +1,353 @@ + + + +MyBatisResourcesScanTest xref + + + +
        +1   /*
        +2    *    Copyright 2022-2023 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import java.io.File;
        +19  import java.net.MalformedURLException;
        +20  import java.net.URL;
        +21  import java.net.URLClassLoader;
        +22  import java.util.Objects;
        +23  import java.util.Set;
        +24  import java.util.stream.Collectors;
        +25  import java.util.stream.Stream;
        +26  
        +27  import org.assertj.core.api.Assertions;
        +28  import org.junit.jupiter.api.Test;
        +29  import org.mybatis.spring.nativex.component.AbstractTypeHandler;
        +30  import org.mybatis.spring.nativex.component.BarService;
        +31  import org.mybatis.spring.nativex.component.BarTypeHandler;
        +32  import org.mybatis.spring.nativex.component.FooTypeHandler;
        +33  import org.mybatis.spring.nativex.component.TypeHandlers;
        +34  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
        +35  import org.mybatis.spring.nativex.entity.City;
        +36  import org.mybatis.spring.nativex.entity.Country;
        +37  import org.mybatis.spring.nativex.marker.StandardEntity;
        +38  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
        +39  import org.springframework.context.annotation.Configuration;
        +40  import org.springframework.nativex.hint.TypeAccess;
        +41  import org.springframework.util.ClassUtils;
        +42  
        +43  class MyBatisResourcesScanTest {
        +44  
        +45    @Test
        +46    void scanTypeAliases() {
        +47      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +48      context.registerBean(ConfigurationForScanTypeAliases.class);
        +49      context.refresh();
        +50      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +51      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class);
        +52      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
        +53      Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
        +54      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class);
        +55      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
        +56      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
        +57    }
        +58  
        +59    @Test
        +60    void scanTypeAliasesWithSupperType() {
        +61      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +62      context.registerBean(ConfigurationForScanTypeAliasesWithSupperType.class);
        +63      context.refresh();
        +64      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +65      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(Country.class);
        +66      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class);
        +67    }
        +68  
        +69    @Test
        +70    void scanTypeAliasesWithMultiPackage() {
        +71      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +72      context.registerBean(ConfigurationForScanTypeAliasesWithMultiPackage.class);
        +73      context.refresh();
        +74      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +75      Assertions.assertThat(holder.getTypeAliasesClasses()).containsExactlyInAnyOrder(City.class, Country.class,
        +76          BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class);
        +77      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
        +78      Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
        +79      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class,
        +80          BarTypeHandler.class, FooTypeHandler.class, BarService.class, AbstractTypeHandler.class, TypeHandlers.class);
        +81      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
        +82      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
        +83    }
        +84  
        +85    @Test
        +86    void scanTypeHandler() {
        +87      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +88      context.registerBean(ConfigurationForScanTypeHandler.class);
        +89      context.refresh();
        +90      MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +91      Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
        +92      Assertions.assertThat(holder.getMapperLocations()).isEmpty();
        +93      Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
        +94          BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
        +95      Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
        +96          BarTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
        +97      Assertions.assertThat(holder.getResourceLocations()).isEmpty();
        +98      Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
        +99    }
        +100 
        +101   @Test
        +102   void scanTypeHandlerWithMultiPackage() {
        +103     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +104     context.registerBean(ConfigurationForScanTypeHandlerWithMultiPackage.class);
        +105     context.refresh();
        +106     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +107     Assertions.assertThat(holder.getTypeHandlerClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
        +108         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
        +109     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(FooTypeHandler.class,
        +110         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
        +111   }
        +112 
        +113   @Test
        +114   void scanMapperLocations() {
        +115     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +116     context.registerBean(ConfigurationForScanMapperLocations.class);
        +117     context.refresh();
        +118     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +119     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
        +120     Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
        +121         "mapper/sub1/FooMapper.xml");
        +122     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
        +123     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
        +124     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
        +125         "mapper/sub1/FooMapper.xml");
        +126     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
        +127   }
        +128 
        +129   @Test
        +130   void scanMapperLocationsWithMultiPattern() {
        +131     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +132     context.registerBean(ConfigurationForScanMapperLocationsWithMultiPattern.class);
        +133     context.refresh();
        +134     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +135     Assertions.assertThat(holder.getMapperLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
        +136         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
        +137     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
        +138         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
        +139   }
        +140 
        +141   @Test
        +142   void scanReflectionType() {
        +143     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +144     context.registerBean(ConfigurationForScanReflectionType.class);
        +145     context.refresh();
        +146     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +147     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
        +148     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
        +149     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
        +150     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class);
        +151     Assertions.assertThat(holder.getResourceLocations()).isEmpty();
        +152     Assertions.assertThat(holder.getReflectionTypeAccesses()).containsExactlyInAnyOrder(TypeAccess.DECLARED_CLASSES);
        +153   }
        +154 
        +155   @Test
        +156   void scanReflectionTypeWithSupperType() {
        +157     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +158     context.registerBean(ConfigurationForScanReflectionTypeWithSuperType.class);
        +159     context.refresh();
        +160     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +161     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(Country.class);
        +162   }
        +163 
        +164   @Test
        +165   void scanReflectionTypeWithMultiPackage() {
        +166     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +167     context.registerBean(ConfigurationForScanReflectionTypeWithMultiPackage.class);
        +168     context.refresh();
        +169     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +170     Assertions.assertThat(holder.getReflectionClasses()).containsExactlyInAnyOrder(City.class, Country.class,
        +171         BarService.class, BarTypeHandler.class, FooTypeHandler.class, TypeHandlers.class);
        +172   }
        +173 
        +174   @Test
        +175   void scanResourceLocations() {
        +176     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +177     context.registerBean(ConfigurationForScanResourceLocations.class);
        +178     context.refresh();
        +179     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +180     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
        +181     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
        +182     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
        +183     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
        +184     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
        +185         "mapper/sub1/FooMapper.xml");
        +186     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
        +187   }
        +188 
        +189   @Test
        +190   void scanResourceLocationsWithGradleBuildOutput() throws Exception {
        +191     String currentDir = Objects.requireNonNull(getClass().getResource("")).getPath();
        +192     String projectDir = currentDir.substring(0, currentDir.indexOf("/target/test-classes"));
        +193     SimulateGradleBuildResourcesURLClassLoader classLoader = new SimulateGradleBuildResourcesURLClassLoader(
        +194         projectDir + "/src/test/gradle_resources/", getClass().getClassLoader());
        +195     ClassUtils.overrideThreadContextClassLoader(classLoader);
        +196     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +197     context.registerBean(ConfigurationForScanResourceLocationsWithGradleOutputResources.class);
        +198     context.refresh();
        +199     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +200     Assertions.assertThat(holder.getTypeAliasesClasses()).isEmpty();
        +201     Assertions.assertThat(holder.getMapperLocations()).isEmpty();
        +202     Assertions.assertThat(holder.getTypeHandlerClasses()).isEmpty();
        +203     Assertions.assertThat(holder.getReflectionClasses()).isEmpty();
        +204     Assertions.assertThat(holder.getResourceLocations())
        +205         .containsExactlyInAnyOrder("mapper/gradle_output/GradleOutputMapper.xml");
        +206     Assertions.assertThat(holder.getReflectionTypeAccesses()).isEmpty();
        +207   }
        +208 
        +209   @Test
        +210   void scanResourceLocationsWithMultiPattern() {
        +211     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +212     context.registerBean(ConfigurationForScanResourceLocationsWithMultiPattern.class);
        +213     context.refresh();
        +214     MyBatisScannedResourcesHolder holder = context.getBean(MyBatisScannedResourcesHolder.class);
        +215     Assertions.assertThat(holder.getResourceLocations()).containsExactlyInAnyOrder("mapper/sub2/AnyMapper.xml",
        +216         "org/apache/ibatis/builder/xml/mybatis-3-config.dtd", "org/apache/ibatis/builder/xml/mybatis-3-mapper.dtd");
        +217   }
        +218 
        +219   @Test
        +220   void scanRepeat() {
        +221     AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +222     context.registerBean(ConfigurationForRepeat.class);
        +223     context.refresh();
        +224     Set<MyBatisScannedResourcesHolder> list = Stream
        +225         .of(context.getBeanNamesForType(MyBatisScannedResourcesHolder.class))
        +226         .map(x -> context.getBean(x, MyBatisScannedResourcesHolder.class)).collect(Collectors.toSet());
        +227     Set<Class<?>> typeAliasesClasses = list.stream().flatMap(x -> x.getTypeAliasesClasses().stream())
        +228         .collect(Collectors.toSet());
        +229     Set<Class<?>> typeHandlerClasses = list.stream().flatMap(x -> x.getTypeHandlerClasses().stream())
        +230         .collect(Collectors.toSet());
        +231     Set<Class<?>> reflectionClasses = list.stream().flatMap(x -> x.getReflectionClasses().stream())
        +232         .collect(Collectors.toSet());
        +233     Set<String> mapperLocations = list.stream().flatMap(x -> x.getMapperLocations().stream())
        +234         .collect(Collectors.toSet());
        +235     Set<String> resourceLocations = list.stream().flatMap(x -> x.getResourceLocations().stream())
        +236         .collect(Collectors.toSet());
        +237     Assertions.assertThat(typeAliasesClasses).containsExactlyInAnyOrder(Country.class, City.class);
        +238     Assertions.assertThat(typeHandlerClasses).containsExactlyInAnyOrder(FooTypeHandler.class, BarTypeHandler.class,
        +239         TypeHandlers.InnerTypeHandler.class);
        +240     Assertions.assertThat(reflectionClasses).containsExactlyInAnyOrder(Country.class, City.class, FooTypeHandler.class,
        +241         BarTypeHandler.class, AnyTypeHandler.class, TypeHandlers.InnerTypeHandler.class);
        +242     Assertions.assertThat(mapperLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml",
        +243         "mapper/sub1/BarMapper.xml");
        +244     Assertions.assertThat(resourceLocations).containsExactlyInAnyOrder("mapper/sub1/FooMapper.xml",
        +245         "mapper/sub2/AnyMapper.xml", "mapper/sub1/BarMapper.xml");
        +246   }
        +247 
        +248   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
        +249   @Configuration
        +250   static class ConfigurationForScanTypeAliases {
        +251   }
        +252 
        +253   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAliasesSupperType = StandardEntity.class)
        +254   @Configuration
        +255   static class ConfigurationForScanTypeAliasesWithSupperType {
        +256   }
        +257 
        +258   @MyBatisResourcesScan(typeAliasesPackages = { "org.mybatis.spring.nativex.entity",
        +259       "org.mybatis.spring.nativex.component" })
        +260   @Configuration
        +261   static class ConfigurationForScanTypeAliasesWithMultiPackage {
        +262   }
        +263 
        +264   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
        +265   @Configuration
        +266   static class ConfigurationForScanTypeHandler {
        +267   }
        +268 
        +269   @MyBatisResourcesScan(typeHandlerPackages = { "org.mybatis.spring.nativex.component",
        +270       "org.mybatis.spring.nativex.component2" })
        +271   @Configuration
        +272   static class ConfigurationForScanTypeHandlerWithMultiPackage {
        +273   }
        +274 
        +275   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
        +276   @Configuration
        +277   static class ConfigurationForScanMapperLocations {
        +278   }
        +279 
        +280   @MyBatisResourcesScan(mapperLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" })
        +281   @Configuration
        +282   static class ConfigurationForScanMapperLocationsWithMultiPattern {
        +283   }
        +284 
        +285   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", typeAccesses = TypeAccess.DECLARED_CLASSES)
        +286   @Configuration
        +287   static class ConfigurationForScanReflectionType {
        +288   }
        +289 
        +290   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.entity", reflectionTypeSupperType = StandardEntity.class, typeAccesses = TypeAccess.DECLARED_CLASSES)
        +291   @Configuration
        +292   static class ConfigurationForScanReflectionTypeWithSuperType {
        +293   }
        +294 
        +295   @MyBatisResourcesScan(reflectionTypePackages = { "org.mybatis.spring.nativex.entity",
        +296       "org.mybatis.spring.nativex.component" })
        +297   @Configuration
        +298   static class ConfigurationForScanReflectionTypeWithMultiPackage {
        +299   }
        +300 
        +301   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub1/*.*")
        +302   @Configuration
        +303   static class ConfigurationForScanResourceLocations {
        +304   }
        +305 
        +306   @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/gradle_output/*.*" })
        +307   @Configuration
        +308   static class ConfigurationForScanResourceLocationsWithGradleOutputResources {
        +309   }
        +310 
        +311   @MyBatisResourcesScan(resourceLocationPatterns = { "mapper/sub2/*.*", "org/apache/ibatis/builder/xml/*.dtd" })
        +312   @Configuration
        +313   static class ConfigurationForScanResourceLocationsWithMultiPattern {
        +314   }
        +315 
        +316   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
        +317   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
        +318   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
        +319   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2")
        +320   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*")
        +321   @Configuration
        +322   static class ConfigurationForRepeat {
        +323 
        +324   }
        +325 
        +326   private static class SimulateGradleBuildResourcesURLClassLoader extends URLClassLoader {
        +327 
        +328     public SimulateGradleBuildResourcesURLClassLoader(String path, ClassLoader classLoader)
        +329         throws MalformedURLException {
        +330       super(new URL[] { new File(path).toURI().toURL() }, classLoader);
        +331     }
        +332 
        +333     @Override
        +334     public void addURL(URL url) {
        +335       super.addURL(url);
        +336     }
        +337 
        +338   }
        +339 
        +340 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html new file mode 100644 index 0000000..dce953f --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessorTest.html @@ -0,0 +1,158 @@ + + + +MyBatisScannedResourcesNativeConfigurationProcessorTest xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.*;
        +19  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
        +20  
        +21  import java.util.Map;
        +22  import java.util.Set;
        +23  import java.util.stream.Collectors;
        +24  
        +25  import org.assertj.core.api.Assertions;
        +26  import org.junit.jupiter.api.Test;
        +27  import org.mybatis.spring.nativex.component.BarTypeHandler;
        +28  import org.mybatis.spring.nativex.component.FooTypeHandler;
        +29  import org.mybatis.spring.nativex.component.TypeHandlers;
        +30  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
        +31  import org.mybatis.spring.nativex.entity.City;
        +32  import org.mybatis.spring.nativex.entity.Country;
        +33  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.DefaultNativeReflectionEntry;
        +34  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
        +35  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
        +36  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
        +37  import org.springframework.context.annotation.Configuration;
        +38  import org.springframework.nativex.hint.TypeAccess;
        +39  
        +40  class MyBatisScannedResourcesNativeConfigurationProcessorTest {
        +41  
        +42    private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
        +43        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
        +44        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
        +45  
        +46    @Test
        +47    void empty() {
        +48      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +49      context.refresh();
        +50      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
        +51      // reflection hint
        +52      {
        +53        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
        +54            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
        +55        Assertions.assertThat(entries).isEmpty();
        +56      }
        +57      // resource hint
        +58      {
        +59        Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
        +60        Assertions.assertThat(resources).isEmpty();
        +61      }
        +62    }
        +63  
        +64    @Test
        +65    void one() {
        +66      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +67      context.registerBean(ConfigurationForOne.class);
        +68      context.refresh();
        +69      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
        +70      // reflection hint
        +71      {
        +72        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
        +73            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
        +74        Assertions.assertThat(entries).hasSize(2);
        +75        Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
        +76            .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
        +77        Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
        +78            .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
        +79      }
        +80      // resource hint
        +81      {
        +82        Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
        +83        Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
        +84            "mapper/sub1/FooMapper.xml");
        +85      }
        +86    }
        +87  
        +88    @Test
        +89    void multi() {
        +90      AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        +91      context.registerBean(ConfigurationForMulti.class);
        +92      context.refresh();
        +93      NativeConfigurationRegistry registry = process(context.getDefaultListableBeanFactory());
        +94      // reflection hint
        +95      {
        +96        Map<Class<?>, DefaultNativeReflectionEntry> entries = registry.reflection().reflectionEntries()
        +97            .collect(Collectors.toMap(DefaultNativeReflectionEntry::getType, x -> x));
        +98        Assertions.assertThat(entries).hasSize(6);
        +99        Assertions.assertThat(entries.get(City.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
        +100           .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
        +101       Assertions.assertThat(entries.get(Country.class)).satisfies(x -> Assertions.assertThat(x.getAccess().toArray())
        +102           .isEqualTo(new TypeAccess[] { PUBLIC_CONSTRUCTORS, PUBLIC_METHODS }));
        +103       Assertions.assertThat(entries.get(FooTypeHandler.class))
        +104           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
        +105       Assertions.assertThat(entries.get(BarTypeHandler.class))
        +106           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
        +107       Assertions.assertThat(entries.get(AnyTypeHandler.class))
        +108           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
        +109       Assertions.assertThat(entries.get(TypeHandlers.InnerTypeHandler.class))
        +110           .satisfies(x -> Assertions.assertThat(x.getAccess().toArray()).isEqualTo(DEFAULT_TYPE_ACCESSES));
        +111     }
        +112     // resource hint
        +113     {
        +114       Set<String> resources = registry.resources().toResourcesDescriptor().getPatterns();
        +115       Assertions.assertThat(resources).containsExactlyInAnyOrder("mapper/sub1/BarMapper.xml",
        +116           "mapper/sub1/FooMapper.xml", "mapper/sub2/AnyMapper.xml");
        +117     }
        +118 
        +119   }
        +120 
        +121   private NativeConfigurationRegistry process(DefaultListableBeanFactory beanFactory) {
        +122     NativeConfigurationRegistry registry = new NativeConfigurationRegistry();
        +123     new MyBatisScannedResourcesNativeConfigurationProcessor().process(beanFactory, registry);
        +124     return registry;
        +125   }
        +126 
        +127   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", mapperLocationPatterns = "mapper/sub1/*.*", typeAccesses = {
        +128       TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS })
        +129   @Configuration
        +130   static class ConfigurationForOne {
        +131 
        +132   }
        +133 
        +134   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeAccesses = {
        +135       TypeAccess.PUBLIC_CONSTRUCTORS, TypeAccess.PUBLIC_METHODS })
        +136   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
        +137   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.*")
        +138   @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.component2")
        +139   @MyBatisResourcesScan(resourceLocationPatterns = "mapper/sub2/*.*")
        +140   @Configuration
        +141   static class ConfigurationForMulti {
        +142 
        +143   }
        +144 
        +145 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html b/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html new file mode 100644 index 0000000..10c14af --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfigurationTest.html @@ -0,0 +1,181 @@ + + + +MyBatisSpringNativeAutoConfigurationTest xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.autoconfigure;
        +17  
        +18  import java.util.stream.Collectors;
        +19  
        +20  import org.apache.ibatis.session.SqlSessionFactory;
        +21  import org.assertj.core.api.Assertions;
        +22  import org.junit.jupiter.api.AfterEach;
        +23  import org.junit.jupiter.api.BeforeEach;
        +24  import org.junit.jupiter.api.Test;
        +25  import org.mybatis.spring.nativex.MyBatisResourcesScan;
        +26  import org.mybatis.spring.nativex.component.AbstractTypeHandler;
        +27  import org.mybatis.spring.nativex.component.BarService;
        +28  import org.mybatis.spring.nativex.component.BarTypeHandler;
        +29  import org.mybatis.spring.nativex.component.FooTypeHandler;
        +30  import org.mybatis.spring.nativex.component.TypeHandlers;
        +31  import org.mybatis.spring.nativex.component2.AnyTypeHandler;
        +32  import org.mybatis.spring.nativex.entity.City;
        +33  import org.mybatis.spring.nativex.entity.Country;
        +34  import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
        +35  import org.springframework.context.annotation.AnnotationConfigApplicationContext;
        +36  import org.springframework.context.annotation.Configuration;
        +37  
        +38  class MyBatisSpringNativeAutoConfigurationTest {
        +39  
        +40    private AnnotationConfigApplicationContext context;
        +41  
        +42    @BeforeEach
        +43    void init() {
        +44      this.context = new AnnotationConfigApplicationContext();
        +45    }
        +46  
        +47    @AfterEach
        +48    void closeContext() {
        +49      if (this.context != null) {
        +50        this.context.close();
        +51      }
        +52    }
        +53  
        +54    @Test
        +55    void empty() {
        +56      this.context.register(EmptyConfiguration.class);
        +57      this.context.refresh();
        +58      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
        +59      Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(80);
        +60      Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(40);
        +61      Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty();
        +62    }
        +63  
        +64    @Test
        +65    void single() {
        +66      this.context.register(SingleConfiguration.class);
        +67      this.context.refresh();
        +68      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
        +69      {
        +70        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82);
        +71        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city"))
        +72            .isEqualTo(City.class);
        +73        Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country"))
        +74            .isEqualTo(Country.class);
        +75      }
        +76      {
        +77        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43);
        +78        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +79            .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +80        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +81            .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +82        Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +83            .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +84        Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder(
        +85            "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select");
        +86      }
        +87    }
        +88  
        +89    @Test
        +90    void singleWithoutMapperLocation() {
        +91      this.context.register(SingleConfigurationWithoutMapperLocation.class);
        +92      this.context.refresh();
        +93      SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
        +94      Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(82);
        +95      Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(43);
        +96      Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).isEmpty();
        +97    }
        +98  
        +99    @Test
        +100   void multi() {
        +101     this.context.register(MultiConfiguration.class);
        +102     this.context.refresh();
        +103     SqlSessionFactory factory = this.context.getBean(SqlSessionFactory.class);
        +104     {
        +105       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().getTypeAliases()).hasSize(87);
        +106       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("city"))
        +107           .isEqualTo(City.class);
        +108       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("country"))
        +109           .isEqualTo(Country.class);
        +110       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("abstracttypehandler"))
        +111           .isEqualTo(AbstractTypeHandler.class);
        +112       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("barservice"))
        +113           .isEqualTo(BarService.class);
        +114       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("bartypehandler"))
        +115           .isEqualTo(BarTypeHandler.class);
        +116       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("footypehandler"))
        +117           .isEqualTo(FooTypeHandler.class);
        +118       Assertions.assertThat(factory.getConfiguration().getTypeAliasRegistry().resolveAlias("typehandlers"))
        +119           .isEqualTo(TypeHandlers.class);
        +120     }
        +121     {
        +122       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers()).hasSize(44);
        +123       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +124           .filter(BarTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +125       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +126           .filter(FooTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +127       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +128           .filter(TypeHandlers.InnerTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +129       Assertions.assertThat(factory.getConfiguration().getTypeHandlerRegistry().getTypeHandlers().stream()
        +130           .filter(AnyTypeHandler.class::isInstance).collect(Collectors.toList())).isNotEmpty();
        +131       Assertions.assertThat(factory.getConfiguration().getMappedStatementNames()).containsExactlyInAnyOrder(
        +132           "sub1.AnyMapper.select", "select", "sub1.FooMapper.select", "sub1.BarMapper.select");
        +133     }
        +134   }
        +135 
        +136   @EnableAutoConfiguration
        +137   @Configuration
        +138   static class EmptyConfiguration {
        +139 
        +140   }
        +141 
        +142   @EnableAutoConfiguration
        +143   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component", mapperLocationPatterns = "mapper/**/*.xml")
        +144   @Configuration
        +145   static class SingleConfiguration {
        +146 
        +147   }
        +148 
        +149   @EnableAutoConfiguration
        +150   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity", typeHandlerPackages = "org.mybatis.spring.nativex.component")
        +151   @Configuration
        +152   static class SingleConfigurationWithoutMapperLocation {
        +153 
        +154   }
        +155 
        +156   @EnableAutoConfiguration
        +157   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.entity")
        +158   @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.component")
        +159   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component")
        +160   @MyBatisResourcesScan(typeHandlerPackages = "org.mybatis.spring.nativex.component2")
        +161   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub1/*.xml")
        +162   @MyBatisResourcesScan(mapperLocationPatterns = "mapper/sub2/*.xml")
        +163   @Configuration
        +164   static class MultiConfiguration {
        +165 
        +166   }
        +167 
        +168 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html new file mode 100644 index 0000000..eec6575 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + +

        org.mybatis.spring.nativex.autoconfigure

        + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..7a501f5 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.autoconfigure

        +
        + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html new file mode 100644 index 0000000..521579c --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/AbstractTypeHandler.html @@ -0,0 +1,34 @@ + + + +AbstractTypeHandler xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  import org.apache.ibatis.type.BaseTypeHandler;
        +19  
        +20  public abstract class AbstractTypeHandler<T> extends BaseTypeHandler<T> {
        +21  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/BarService.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/BarService.html new file mode 100644 index 0000000..f2ac82b --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/BarService.html @@ -0,0 +1,32 @@ + + + +BarService xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  public class BarService {
        +19  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html new file mode 100644 index 0000000..87125a3 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/BarTypeHandler.html @@ -0,0 +1,59 @@ + + + +BarTypeHandler xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  import java.sql.CallableStatement;
        +19  import java.sql.PreparedStatement;
        +20  import java.sql.ResultSet;
        +21  
        +22  import org.apache.ibatis.type.BaseTypeHandler;
        +23  import org.apache.ibatis.type.JdbcType;
        +24  
        +25  public class BarTypeHandler extends BaseTypeHandler<Integer> {
        +26  
        +27    @Override
        +28    public void setNonNullParameter(PreparedStatement ps, int i, Integer parameter, JdbcType jdbcType) {
        +29    }
        +30  
        +31    @Override
        +32    public Integer getNullableResult(ResultSet rs, String columnName) {
        +33      return null;
        +34    }
        +35  
        +36    @Override
        +37    public Integer getNullableResult(ResultSet rs, int columnIndex) {
        +38      return null;
        +39    }
        +40  
        +41    @Override
        +42    public Integer getNullableResult(CallableStatement cs, int columnIndex) {
        +43      return null;
        +44    }
        +45  
        +46  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html new file mode 100644 index 0000000..65e6661 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/FooTypeHandler.html @@ -0,0 +1,59 @@ + + + +FooTypeHandler xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  import java.sql.CallableStatement;
        +19  import java.sql.PreparedStatement;
        +20  import java.sql.ResultSet;
        +21  
        +22  import org.apache.ibatis.type.BaseTypeHandler;
        +23  import org.apache.ibatis.type.JdbcType;
        +24  
        +25  public class FooTypeHandler extends BaseTypeHandler<String> {
        +26  
        +27    @Override
        +28    public void setNonNullParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) {
        +29    }
        +30  
        +31    @Override
        +32    public String getNullableResult(ResultSet rs, String columnName) {
        +33      return null;
        +34    }
        +35  
        +36    @Override
        +37    public String getNullableResult(ResultSet rs, int columnIndex) {
        +38      return null;
        +39    }
        +40  
        +41    @Override
        +42    public String getNullableResult(CallableStatement cs, int columnIndex) {
        +43      return null;
        +44    }
        +45  
        +46  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html new file mode 100644 index 0000000..8ecccfc --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/MyAnnotation.html @@ -0,0 +1,33 @@ + + + +MyAnnotation xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  @SuppressWarnings("unused")
        +19  public @interface MyAnnotation {
        +20  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html new file mode 100644 index 0000000..610ee8c --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/MyTypeHandlerInterface.html @@ -0,0 +1,35 @@ + + + +MyTypeHandlerInterface xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  import org.apache.ibatis.type.TypeHandler;
        +19  
        +20  @SuppressWarnings("unused")
        +21  public interface MyTypeHandlerInterface<T> extends TypeHandler<T> {
        +22  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html new file mode 100644 index 0000000..83366e4 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/TypeHandlers.html @@ -0,0 +1,70 @@ + + + +TypeHandlers xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component;
        +17  
        +18  import java.sql.CallableStatement;
        +19  import java.sql.PreparedStatement;
        +20  import java.sql.ResultSet;
        +21  
        +22  import org.apache.ibatis.type.JdbcType;
        +23  import org.apache.ibatis.type.TypeHandler;
        +24  
        +25  public class TypeHandlers {
        +26  
        +27    @SuppressWarnings("unused")
        +28    BarTypeHandler anonymous = new BarTypeHandler() {
        +29      @Override
        +30      public String toString() {
        +31        return super.toString();
        +32      }
        +33    };
        +34  
        +35    public static class InnerTypeHandler implements TypeHandler<String> {
        +36  
        +37      @Override
        +38      public void setParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) {
        +39  
        +40      }
        +41  
        +42      @Override
        +43      public String getResult(ResultSet rs, String columnName) {
        +44        return null;
        +45      }
        +46  
        +47      @Override
        +48      public String getResult(ResultSet rs, int columnIndex) {
        +49        return null;
        +50      }
        +51  
        +52      @Override
        +53      public String getResult(CallableStatement cs, int columnIndex) {
        +54        return null;
        +55      }
        +56    }
        +57  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/package-frame.html new file mode 100644 index 0000000..d02d118 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/package-frame.html @@ -0,0 +1,42 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component + + + +

        org.mybatis.spring.nativex.component

        + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component/package-summary.html new file mode 100644 index 0000000..ab467b5 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component/package-summary.html @@ -0,0 +1,142 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.component

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html new file mode 100644 index 0000000..e73898f --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component2/AnyTypeHandler.html @@ -0,0 +1,60 @@ + + + +AnyTypeHandler xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.component2;
        +17  
        +18  import java.math.BigDecimal;
        +19  import java.sql.CallableStatement;
        +20  import java.sql.PreparedStatement;
        +21  import java.sql.ResultSet;
        +22  
        +23  import org.apache.ibatis.type.BaseTypeHandler;
        +24  import org.apache.ibatis.type.JdbcType;
        +25  
        +26  public class AnyTypeHandler extends BaseTypeHandler<BigDecimal> {
        +27  
        +28    @Override
        +29    public void setNonNullParameter(PreparedStatement ps, int i, BigDecimal parameter, JdbcType jdbcType) {
        +30    }
        +31  
        +32    @Override
        +33    public BigDecimal getNullableResult(ResultSet rs, String columnName) {
        +34      return null;
        +35    }
        +36  
        +37    @Override
        +38    public BigDecimal getNullableResult(ResultSet rs, int columnIndex) {
        +39      return null;
        +40    }
        +41  
        +42    @Override
        +43    public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) {
        +44      return null;
        +45    }
        +46  
        +47  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component2/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component2/package-frame.html new file mode 100644 index 0000000..beecf34 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component2/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component2 + + + +

        org.mybatis.spring.nativex.component2

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/component2/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/component2/package-summary.html new file mode 100644 index 0000000..de4f155 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/component2/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.component2 + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.component2

        +
        +
        +
          +
        • + + + + + + + + + + + + +
          Class Summary 
          Class
          + AnyTypeHandler +
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/entity/City.html b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/City.html new file mode 100644 index 0000000..7fe6a94 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/City.html @@ -0,0 +1,39 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.entity;
        +17  
        +18  public class City {
        +19    @SuppressWarnings("unused")
        +20    City anonymous = new City() {
        +21      @Override
        +22      public String toString() {
        +23        return super.toString();
        +24      }
        +25    };
        +26  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/entity/Country.html b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/Country.html new file mode 100644 index 0000000..75b18bc --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/Country.html @@ -0,0 +1,34 @@ + + + +Country xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.entity;
        +17  
        +18  import org.mybatis.spring.nativex.marker.StandardEntity;
        +19  
        +20  public class Country extends StandardEntity {
        +21  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html new file mode 100644 index 0000000..c1b925d --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerAnnotation.html @@ -0,0 +1,33 @@ + + + +EntityMarkerAnnotation xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.entity;
        +17  
        +18  @SuppressWarnings("unused")
        +19  public @interface EntityMarkerAnnotation {
        +20  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html new file mode 100644 index 0000000..a2491a2 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/EntityMarkerInterface.html @@ -0,0 +1,38 @@ + + + +EntityMarkerInterface xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.entity;
        +17  
        +18  @SuppressWarnings("unused")
        +19  public interface EntityMarkerInterface {
        +20  
        +21    class MemberEntity {
        +22  
        +23    }
        +24  
        +25  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/entity/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/package-frame.html new file mode 100644 index 0000000..7fd8b29 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.entity + + + +

        org.mybatis.spring.nativex.entity

        + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/entity/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/package-summary.html new file mode 100644 index 0000000..68ad0dd --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/entity/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.entity + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.entity

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html new file mode 100644 index 0000000..6588233 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/Sample2Mapper.html @@ -0,0 +1,32 @@ + + + +Sample2Mapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.mapper;
        +17  
        +18  public class Sample2Mapper {
        +19  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html new file mode 100644 index 0000000..eb52474 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/Sample3Mapper.html @@ -0,0 +1,32 @@ + + + +Sample3Mapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.mapper;
        +17  
        +18  public class Sample3Mapper {
        +19  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html new file mode 100644 index 0000000..7b4ee87 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/SampleMapper.html @@ -0,0 +1,120 @@ + + + +SampleMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.mapper;
        +17  
        +18  import java.math.BigDecimal;
        +19  import java.util.Collection;
        +20  import java.util.Collections;
        +21  import java.util.Date;
        +22  
        +23  import org.apache.ibatis.annotations.InsertProvider;
        +24  import org.apache.ibatis.annotations.SelectProvider;
        +25  
        +26  public interface SampleMapper {
        +27  
        +28    Sample find(SampleParam param);
        +29  
        +30    default Collection<Sample2> find(Collection<Sample2Param> params) {
        +31      return Collections.emptyList();
        +32    }
        +33  
        +34    @SelectProvider(SelectProviderClass1.class)
        +35    String select1();
        +36  
        +37    @SelectProvider(type = SelectProviderClass2.class)
        +38    BigDecimal select2();
        +39  
        +40    @InsertProvider(InsertProviderClass1.class)
        +41    void insert1();
        +42  
        +43    @InsertProvider(type = InsertProviderClass2.class)
        +44    boolean insert2();
        +45  
        +46    @InsertProvider(UpdateProviderClass1.class)
        +47    Long update1();
        +48  
        +49    @InsertProvider(type = UpdateProviderClass2.class)
        +50    Date update2();
        +51  
        +52    @InsertProvider(DeleteProviderClass1.class)
        +53    Short delete1();
        +54  
        +55    @InsertProvider(type = DeleteProviderClass2.class)
        +56    Object delete2();
        +57  
        +58    int count();
        +59  
        +60    class SampleParam {
        +61  
        +62    }
        +63  
        +64    class Sample {
        +65  
        +66    }
        +67  
        +68    class Sample2Param {
        +69  
        +70    }
        +71  
        +72    class Sample2 {
        +73  
        +74    }
        +75  
        +76    class SelectProviderClass1 {
        +77  
        +78    }
        +79  
        +80    class SelectProviderClass2 {
        +81  
        +82    }
        +83  
        +84    class InsertProviderClass1 {
        +85  
        +86    }
        +87  
        +88    class InsertProviderClass2 {
        +89  
        +90    }
        +91  
        +92    class UpdateProviderClass1 {
        +93  
        +94    }
        +95  
        +96    class UpdateProviderClass2 {
        +97  
        +98    }
        +99  
        +100   class DeleteProviderClass1 {
        +101 
        +102   }
        +103 
        +104   class DeleteProviderClass2 {
        +105 
        +106   }
        +107 }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html new file mode 100644 index 0000000..f1c7dee --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/package-frame.html @@ -0,0 +1,63 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.mapper + + + +

        org.mybatis.spring.nativex.mapper

        + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html new file mode 100644 index 0000000..326e6ee --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/mapper/package-summary.html @@ -0,0 +1,177 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.mapper + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.mapper

        +
        + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html b/zh_CN/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html new file mode 100644 index 0000000..0acbfd2 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/marker/StandardEntity.html @@ -0,0 +1,32 @@ + + + +StandardEntity xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.marker;
        +17  
        +18  public class StandardEntity {
        +19  }
        +
        +
        + + + diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/marker/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/marker/package-frame.html new file mode 100644 index 0000000..b64ede8 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/marker/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.marker + + + +

        org.mybatis.spring.nativex.marker

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/marker/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/marker/package-summary.html new file mode 100644 index 0000000..150f7ab --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/marker/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.marker + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.marker

        +
        +
        +
          +
        • + + + + + + + + + + + + +
          Class Summary 
          Class
          + StandardEntity +
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/package-frame.html b/zh_CN/xref-test/org/mybatis/spring/nativex/package-frame.html new file mode 100644 index 0000000..356fd92 --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/package-frame.html @@ -0,0 +1,78 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + +

        org.mybatis.spring.nativex

        + + + \ No newline at end of file diff --git a/zh_CN/xref-test/org/mybatis/spring/nativex/package-summary.html b/zh_CN/xref-test/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..28db8bc --- /dev/null +++ b/zh_CN/xref-test/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,202 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex

        +
        + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/overview-frame.html b/zh_CN/xref-test/overview-frame.html new file mode 100644 index 0000000..bfbae57 --- /dev/null +++ b/zh_CN/xref-test/overview-frame.html @@ -0,0 +1,42 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + +

        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference

        + + +

         

        + + + diff --git a/zh_CN/xref-test/overview-summary.html b/zh_CN/xref-test/overview-summary.html new file mode 100644 index 0000000..de9e10c --- /dev/null +++ b/zh_CN/xref-test/overview-summary.html @@ -0,0 +1,122 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference

        +
        + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref-test/stylesheet.css b/zh_CN/xref-test/stylesheet.css new file mode 100644 index 0000000..9e10f29 --- /dev/null +++ b/zh_CN/xref-test/stylesheet.css @@ -0,0 +1,626 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} + +/* JXR style sheet */ +a.jxr_linenumber:link { + color: #00f; +} + +a.jxr_linenumber:visited { + color: #00a; +} + +a.jxr_linenumber:active, a.jxr_linenumber:hover { + color: #f30 !important; +} + +em.comment { + color: #390; +} + +.string { + color: #009; +} + +#overview { + padding: 2px; + font-size: 90%; + font-family: Helvetica, Arial, sans-serif; +} + +hr { + color: #000; +} + +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} + diff --git a/zh_CN/xref/allclasses-frame.html b/zh_CN/xref/allclasses-frame.html new file mode 100644 index 0000000..6c06988 --- /dev/null +++ b/zh_CN/xref/allclasses-frame.html @@ -0,0 +1,17 @@ + + + + + + + All Classes + + + +

        All Classes

        +
        +
          +
        +
        + + diff --git a/zh_CN/xref/index.html b/zh_CN/xref/index.html new file mode 100644 index 0000000..2896d04 --- /dev/null +++ b/zh_CN/xref/index.html @@ -0,0 +1,75 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html new file mode 100644 index 0000000..937f943 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisCoreNativeConfiguration.html @@ -0,0 +1,121 @@ + + + +MyBatisCoreNativeConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  
        +27  import org.apache.ibatis.cache.decorators.FifoCache;
        +28  import org.apache.ibatis.cache.decorators.LruCache;
        +29  import org.apache.ibatis.cache.decorators.SoftCache;
        +30  import org.apache.ibatis.cache.decorators.WeakCache;
        +31  import org.apache.ibatis.cache.impl.PerpetualCache;
        +32  import org.apache.ibatis.javassist.util.proxy.ProxyFactory;
        +33  import org.apache.ibatis.javassist.util.proxy.RuntimeSupport;
        +34  import org.apache.ibatis.logging.Log;
        +35  import org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl;
        +36  import org.apache.ibatis.logging.jdk14.Jdk14LoggingImpl;
        +37  import org.apache.ibatis.logging.log4j2.Log4j2Impl;
        +38  import org.apache.ibatis.logging.nologging.NoLoggingImpl;
        +39  import org.apache.ibatis.logging.slf4j.Slf4jImpl;
        +40  import org.apache.ibatis.logging.stdout.StdOutImpl;
        +41  import org.apache.ibatis.scripting.defaults.RawLanguageDriver;
        +42  import org.apache.ibatis.scripting.xmltags.XMLLanguageDriver;
        +43  import org.apache.ibatis.session.SqlSessionFactory;
        +44  import org.springframework.nativex.hint.InitializationHint;
        +45  import org.springframework.nativex.hint.InitializationTime;
        +46  import org.springframework.nativex.hint.NativeHint;
        +47  import org.springframework.nativex.hint.ResourceHint;
        +48  import org.springframework.nativex.hint.TypeHint;
        +49  import org.springframework.nativex.type.NativeConfiguration;
        +50  
        +51  /**
        +52   * Registers hints to make a MyBatis Core components work in a Spring Native context.
        +53   *
        +54   * @author Kazuki Shimizu
        +55   * @author Josh Long
        +56   *
        +57   * @see MyBatisMapperNativeConfigurationProcessor
        +58   */
        +59  // @formatter:off
        +60  @NativeHint(
        +61      trigger = SqlSessionFactory.class,
        +62      initialization = @InitializationHint(
        +63          initTime = InitializationTime.BUILD,
        +64          types = org.apache.ibatis.type.JdbcType.class
        +65      ),
        +66      options = "--initialize-at-build-time=org.apache.ibatis.type.JdbcType",
        +67      resources = @ResourceHint(
        +68          patterns = {
        +69              "org/apache/ibatis/builder/xml/.*.dtd",
        +70              "org/apache/ibatis/builder/xml/.*.xsd"
        +71          }
        +72      )
        +73  )
        +74  @TypeHint(
        +75      types = {
        +76          RawLanguageDriver.class,
        +77          XMLLanguageDriver.class,
        +78          RuntimeSupport.class,
        +79          ProxyFactory.class,
        +80          Slf4jImpl.class,
        +81          Log.class,
        +82          JakartaCommonsLoggingImpl.class,
        +83          Log4j2Impl.class,
        +84          Jdk14LoggingImpl.class,
        +85          StdOutImpl.class,
        +86          NoLoggingImpl.class,
        +87          SqlSessionFactory.class,
        +88          PerpetualCache.class,
        +89          FifoCache.class,
        +90          LruCache.class,
        +91          SoftCache.class,
        +92          WeakCache.class
        +93      },
        +94      typeNames = "org.apache.ibatis.logging.log4j.Log4jImpl",
        +95      access = {
        +96          PUBLIC_CONSTRUCTORS,
        +97          PUBLIC_CLASSES,
        +98          PUBLIC_FIELDS,
        +99          PUBLIC_METHODS,
        +100         DECLARED_CLASSES,
        +101         DECLARED_CONSTRUCTORS,
        +102         DECLARED_FIELDS,
        +103         DECLARED_METHODS
        +104     }
        +105 )
        +106 // @formatter:on
        +107 public class MyBatisCoreNativeConfiguration implements NativeConfiguration {
        +108 }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html new file mode 100644 index 0000000..b717757 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisDynamicSqlNativeConfiguration.html @@ -0,0 +1,85 @@ + + + +MyBatisDynamicSqlNativeConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  
        +27  import org.mybatis.dynamic.sql.delete.render.DefaultDeleteStatementProvider;
        +28  import org.mybatis.dynamic.sql.insert.render.DefaultGeneralInsertStatementProvider;
        +29  import org.mybatis.dynamic.sql.insert.render.DefaultInsertStatementProvider;
        +30  import org.mybatis.dynamic.sql.insert.render.DefaultMultiRowInsertStatementProvider;
        +31  import org.mybatis.dynamic.sql.select.render.DefaultSelectStatementProvider;
        +32  import org.mybatis.dynamic.sql.update.render.DefaultUpdateStatementProvider;
        +33  import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
        +34  import org.mybatis.dynamic.sql.util.springbatch.SpringBatchProviderAdapter;
        +35  import org.springframework.nativex.hint.NativeHint;
        +36  import org.springframework.nativex.hint.TypeHint;
        +37  import org.springframework.nativex.type.NativeConfiguration;
        +38  
        +39  /**
        +40   * Registers hints to make a MyBatis Dynamic SQL component work in a Spring Native context.
        +41   *
        +42   * @author Kazuki Shimizu
        +43   */
        +44  // @formatter:off
        +45  @NativeHint(
        +46      trigger = SqlProviderAdapter.class
        +47  )
        +48  @TypeHint(
        +49      types = {
        +50          SqlProviderAdapter.class,
        +51          SpringBatchProviderAdapter.class,
        +52          DefaultDeleteStatementProvider.class,
        +53          DefaultGeneralInsertStatementProvider.class,
        +54          DefaultInsertStatementProvider.class,
        +55          DefaultMultiRowInsertStatementProvider.class,
        +56          DefaultSelectStatementProvider.class,
        +57          DefaultUpdateStatementProvider.class
        +58      },
        +59      access = {
        +60          PUBLIC_CONSTRUCTORS,
        +61          PUBLIC_CLASSES,
        +62          PUBLIC_FIELDS,
        +63          PUBLIC_METHODS,
        +64          DECLARED_CLASSES,
        +65          DECLARED_CONSTRUCTORS,
        +66          DECLARED_FIELDS,
        +67          DECLARED_METHODS
        +68      }
        +69  )
        +70  // @formatter:on
        +71  public class MyBatisDynamicSqlNativeConfiguration implements NativeConfiguration {
        +72  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html new file mode 100644 index 0000000..515bb9d --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisFreeMarkerNativeConfiguration.html @@ -0,0 +1,83 @@ + + + +MyBatisFreeMarkerNativeConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  
        +27  import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver;
        +28  import org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig;
        +29  import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider;
        +30  import org.springframework.nativex.hint.NativeHint;
        +31  import org.springframework.nativex.hint.ResourceHint;
        +32  import org.springframework.nativex.hint.TypeHint;
        +33  import org.springframework.nativex.type.NativeConfiguration;
        +34  
        +35  /**
        +36   * Registers hints to make a MyBatis FreeMarker component work in a Spring Native context.
        +37   *
        +38   * @author Kazuki Shimizu
        +39   */
        +40  // @formatter:off
        +41  @NativeHint(
        +42      trigger = FreeMarkerLanguageDriver.class,
        +43      resources = @ResourceHint(
        +44          patterns = {
        +45              "mybatis-freemarker.properties",
        +46              "freemarker/version.properties",
        +47              "freemarker/ext/beans/DefaultMemberAccessPolicy-rules"
        +48          }
        +49      )
        +50  )
        +51  @TypeHint(
        +52      types = {
        +53          FreeMarkerLanguageDriver.class,
        +54          FreeMarkerLanguageDriverConfig.class,
        +55          TemplateFilePathProvider.class
        +56      },
        +57      access = {
        +58          PUBLIC_CONSTRUCTORS,
        +59          PUBLIC_CLASSES,
        +60          PUBLIC_FIELDS,
        +61          PUBLIC_METHODS,
        +62          DECLARED_CLASSES,
        +63          DECLARED_CONSTRUCTORS,
        +64          DECLARED_FIELDS,
        +65          DECLARED_METHODS
        +66      }
        +67  )
        +68  // @formatter:on
        +69  public class MyBatisFreeMarkerNativeConfiguration implements NativeConfiguration {
        +70  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html new file mode 100644 index 0000000..4c521e5 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperFactoryBeanPostProcessor.html @@ -0,0 +1,91 @@ + + + +MyBatisMapperFactoryBeanPostProcessor xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import org.apache.commons.logging.Log;
        +19  import org.apache.commons.logging.LogFactory;
        +20  import org.mybatis.spring.mapper.MapperFactoryBean;
        +21  import org.springframework.beans.factory.BeanFactory;
        +22  import org.springframework.beans.factory.BeanFactoryAware;
        +23  import org.springframework.beans.factory.config.ConfigurableBeanFactory;
        +24  import org.springframework.beans.factory.support.RootBeanDefinition;
        +25  import org.springframework.context.annotation.BeanDefinitionPostProcessor;
        +26  import org.springframework.core.ResolvableType;
        +27  import org.springframework.util.ClassUtils;
        +28  
        +29  /**
        +30   * The {@code BeanDefinitionPostProcessor} for customizing a {@code MapperFactoryBean}.
        +31   *
        +32   * @author Stéphane Nicoll
        +33   * @author Kazuki Shimizu
        +34   */
        +35  class MyBatisMapperFactoryBeanPostProcessor implements BeanDefinitionPostProcessor, BeanFactoryAware {
        +36  
        +37    private static final Log LOG = LogFactory.getLog(MyBatisMapperFactoryBeanPostProcessor.class);
        +38  
        +39    private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean";
        +40  
        +41    private ConfigurableBeanFactory beanFactory;
        +42  
        +43    @Override
        +44    public void setBeanFactory(BeanFactory beanFactory) {
        +45      this.beanFactory = (ConfigurableBeanFactory) beanFactory;
        +46    }
        +47  
        +48    @Override
        +49    public void postProcessBeanDefinition(String beanName, RootBeanDefinition beanDefinition) {
        +50      if (ClassUtils.isPresent(MAPPER_FACTORY_BEAN, this.beanFactory.getBeanClassLoader())) {
        +51        resolveMapperFactoryBeanTypeIfNecessary(beanDefinition);
        +52      }
        +53    }
        +54  
        +55    private void resolveMapperFactoryBeanTypeIfNecessary(RootBeanDefinition beanDefinition) {
        +56      if (!beanDefinition.hasBeanClass() || !MapperFactoryBean.class.isAssignableFrom(beanDefinition.getBeanClass())) {
        +57        return;
        +58      }
        +59      if (beanDefinition.getResolvableType().hasUnresolvableGenerics()) {
        +60        Class<?> mapperInterface = getMapperInterface(beanDefinition);
        +61        if (mapperInterface != null) {
        +62          // Exposes a generic type information to context for prevent early initializing
        +63          beanDefinition
        +64              .setTargetType(ResolvableType.forClassWithGenerics(beanDefinition.getBeanClass(), mapperInterface));
        +65        }
        +66      }
        +67    }
        +68  
        +69    private Class<?> getMapperInterface(RootBeanDefinition beanDefinition) {
        +70      try {
        +71        return (Class<?>) beanDefinition.getPropertyValues().get("mapperInterface");
        +72      } catch (Exception e) {
        +73        LOG.debug("Fail getting mapper interface type.", e);
        +74        return null;
        +75      }
        +76    }
        +77  
        +78  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html new file mode 100644 index 0000000..0ce5587 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperNativeConfigurationProcessor.html @@ -0,0 +1,136 @@ + + + +MyBatisMapperNativeConfigurationProcessor xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
        +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
        +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
        +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
        +30  
        +31  import java.lang.annotation.Annotation;
        +32  import java.lang.reflect.Method;
        +33  import java.util.function.Function;
        +34  
        +35  import org.apache.ibatis.annotations.DeleteProvider;
        +36  import org.apache.ibatis.annotations.InsertProvider;
        +37  import org.apache.ibatis.annotations.SelectProvider;
        +38  import org.apache.ibatis.annotations.UpdateProvider;
        +39  import org.mybatis.spring.mapper.MapperFactoryBean;
        +40  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor;
        +41  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
        +42  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeProxyEntry;
        +43  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry;
        +44  import org.springframework.beans.PropertyValue;
        +45  import org.springframework.beans.factory.config.BeanDefinition;
        +46  import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
        +47  import org.springframework.nativex.hint.TypeAccess;
        +48  import org.springframework.util.ClassUtils;
        +49  import org.springframework.util.ReflectionUtils;
        +50  
        +51  /**
        +52   * Finds and registers reflection hints for all scanned mappers in the beanFactory.
        +53   *
        +54   * @author Kazuki Shimizu
        +55   * @author Josh Long
        +56   */
        +57  public class MyBatisMapperNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor {
        +58  
        +59    private static final String MAPPER_FACTORY_BEAN = "org.mybatis.spring.mapper.MapperFactoryBean";
        +60  
        +61    private static final TypeAccess[] TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
        +62        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
        +63        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
        +64  
        +65    /**
        +66     * {@inheritDoc}
        +67     */
        +68    @Override
        +69    public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) {
        +70      if (!ClassUtils.isPresent(MAPPER_FACTORY_BEAN, beanFactory.getBeanClassLoader())) {
        +71        return;
        +72      }
        +73      String[] beanNames = beanFactory.getBeanNamesForType(MapperFactoryBean.class);
        +74      for (String beanName : beanNames) {
        +75        BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName.substring(1));
        +76        PropertyValue mapperInterface = beanDefinition.getPropertyValues().getPropertyValue("mapperInterface");
        +77        if (mapperInterface != null && mapperInterface.getValue() != null) {
        +78          Class<?> mapperInterfaceType = (Class<?>) mapperInterface.getValue();
        +79          if (mapperInterfaceType != null) {
        +80            registerReflectionTypeIfNecessary(mapperInterfaceType, registry);
        +81            registry.proxy().add(NativeProxyEntry.ofInterfaces(mapperInterfaceType));
        +82            registry.resources()
        +83                .add(NativeResourcesEntry.of(mapperInterfaceType.getName().replace('.', '/').concat(".xml")));
        +84            registerMapperRelationships(mapperInterfaceType, registry);
        +85          }
        +86        }
        +87      }
        +88    }
        +89  
        +90    private void registerMapperRelationships(Class<?> mapperInterfaceType, NativeConfigurationRegistry registry) {
        +91      Method[] methods = ReflectionUtils.getAllDeclaredMethods(mapperInterfaceType);
        +92      for (Method method : methods) {
        +93        if (method.getDeclaringClass() != Object.class) {
        +94          ReflectionUtils.makeAccessible(method);
        +95          registerSqlProviderTypes(method, registry, SelectProvider.class, SelectProvider::value, SelectProvider::type);
        +96          registerSqlProviderTypes(method, registry, InsertProvider.class, InsertProvider::value, InsertProvider::type);
        +97          registerSqlProviderTypes(method, registry, UpdateProvider.class, UpdateProvider::value, UpdateProvider::type);
        +98          registerSqlProviderTypes(method, registry, DeleteProvider.class, DeleteProvider::value, DeleteProvider::type);
        +99          Class<?> returnType = MyBatisMapperTypeUtils.resolveReturnClass(mapperInterfaceType, method);
        +100         registerReflectionTypeIfNecessary(returnType, registry);
        +101         MyBatisMapperTypeUtils.resolveParameterClasses(mapperInterfaceType, method)
        +102             .forEach(x -> registerReflectionTypeIfNecessary(x, registry));
        +103       }
        +104     }
        +105   }
        +106 
        +107   @SafeVarargs
        +108   private final <T extends Annotation> void registerSqlProviderTypes(Method method,
        +109       NativeConfigurationRegistry registry, Class<T> annotationType, Function<T, Class<?>>... providerTypeResolvers) {
        +110     for (T annotation : method.getAnnotationsByType(annotationType)) {
        +111       for (Function<T, Class<?>> providerTypeResolver : providerTypeResolvers) {
        +112         registerReflectionTypeIfNecessary(providerTypeResolver.apply(annotation), registry);
        +113       }
        +114     }
        +115   }
        +116 
        +117   private void registerReflectionTypeIfNecessary(Class<?> type, NativeConfigurationRegistry registry) {
        +118     if (!type.isPrimitive() && !type.getName().startsWith("java")) {
        +119       registry.reflection().forType(type).withAccess(TYPE_ACCESSES);
        +120     }
        +121   }
        +122 
        +123 }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html new file mode 100644 index 0000000..503355f --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisMapperTypeUtils.html @@ -0,0 +1,79 @@ + + + +MyBatisMapperTypeUtils xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import java.lang.reflect.Method;
        +19  import java.lang.reflect.ParameterizedType;
        +20  import java.lang.reflect.Type;
        +21  import java.util.Map;
        +22  import java.util.Set;
        +23  import java.util.stream.Collectors;
        +24  import java.util.stream.Stream;
        +25  
        +26  import org.apache.ibatis.reflection.TypeParameterResolver;
        +27  
        +28  final class MyBatisMapperTypeUtils {
        +29  
        +30    private MyBatisMapperTypeUtils() {
        +31      // NOP
        +32    }
        +33  
        +34    static Class<?> resolveReturnClass(Class<?> mapperInterface, Method method) {
        +35      Type resolvedReturnType = TypeParameterResolver.resolveReturnType(method, mapperInterface);
        +36      return typeToClass(resolvedReturnType, method.getReturnType());
        +37    }
        +38  
        +39    static Set<Class<?>> resolveParameterClasses(Class<?> mapperInterface, Method method) {
        +40      return Stream.of(TypeParameterResolver.resolveParamTypes(method, mapperInterface))
        +41          .map(x -> typeToClass(x, x instanceof Class ? (Class<?>) x : Object.class)).collect(Collectors.toSet());
        +42    }
        +43  
        +44    private static Class<?> typeToClass(Type src, Class<?> fallback) {
        +45      Class<?> result = null;
        +46      if (src instanceof Class<?>) {
        +47        if (((Class<?>) src).isArray()) {
        +48          result = ((Class<?>) src).getComponentType();
        +49        } else {
        +50          result = (Class<?>) src;
        +51        }
        +52      } else if (src instanceof ParameterizedType) {
        +53        ParameterizedType parameterizedType = (ParameterizedType) src;
        +54        int index = (parameterizedType.getRawType() instanceof Class
        +55            && Map.class.isAssignableFrom((Class<?>) parameterizedType.getRawType())
        +56            && parameterizedType.getActualTypeArguments().length > 1) ? 1 : 0;
        +57        Type actualType = parameterizedType.getActualTypeArguments()[index];
        +58        result = typeToClass(actualType, fallback);
        +59      }
        +60      if (result == null) {
        +61        result = fallback;
        +62      }
        +63      return result;
        +64    }
        +65  
        +66  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html new file mode 100644 index 0000000..4cca598 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisResourcesScan.html @@ -0,0 +1,139 @@ + + + +MyBatisResourcesScan xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import java.lang.annotation.Repeatable;
        +19  import java.lang.annotation.Retention;
        +20  import java.lang.annotation.RetentionPolicy;
        +21  
        +22  import org.springframework.context.annotation.Import;
        +23  import org.springframework.nativex.hint.TypeAccess;
        +24  
        +25  /**
        +26   * The annotation that indicates scan rules of resources for running on native-image.
        +27   *
        +28   * @author Kazuki Shimizu
        +29   */
        +30  @Import(MyBatisScannedResourcesHolder.Registrar.class)
        +31  @Retention(RetentionPolicy.RUNTIME)
        +32  @Repeatable(MyBatisResourcesScan.List.class)
        +33  public @interface MyBatisResourcesScan {
        +34  
        +35    /**
        +36     * Return package names for scanning type aliases.
        +37     * <p>
        +38     * Default is none.
        +39     * </P>
        +40     *
        +41     * @return package names for scanning type aliases
        +42     */
        +43    String[] typeAliasesPackages() default {};
        +44  
        +45    /**
        +46     * Return the filter type(super class) for scanning type aliases.
        +47     * <p>
        +48     * Default is none.
        +49     * </P>
        +50     *
        +51     * @return the filter type for scanning type aliases
        +52     */
        +53    Class<?> typeAliasesSupperType() default void.class;
        +54  
        +55    /**
        +56     * Return package names for scanning type handler.
        +57     * <p>
        +58     * Default is none.
        +59     * </P>
        +60     *
        +61     * @return package names for scanning type handler
        +62     */
        +63    String[] typeHandlerPackages() default {};
        +64  
        +65    /**
        +66     * Return location patterns for scanning mapper xml file under classpath.
        +67     * <p>
        +68     * Default is none.
        +69     * </P>
        +70     *
        +71     * @return location patterns for scanning mapper xml file under classpath
        +72     */
        +73    String[] mapperLocationPatterns() default {};
        +74  
        +75    /**
        +76     * Return package names for scanning reflection hint type.
        +77     * <p>
        +78     * Default is none.
        +79     * </P>
        +80     *
        +81     * @return package names for scanning reflection hint type
        +82     */
        +83    String[] reflectionTypePackages() default {};
        +84  
        +85    /**
        +86     * Return the filter type(super class) for scanning reflection hint type.
        +87     * <p>
        +88     * Default is none.
        +89     * </P>
        +90     *
        +91     * @return the filter type for scanning reflection hint type
        +92     */
        +93    Class<?> reflectionTypeSupperType() default void.class;
        +94  
        +95    /**
        +96     * Return access scopes for applying scanned classes to reflection hint.
        +97     * <p>
        +98     * Default is none. When empty, apply PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS, PUBLIC_METHODS,
        +99     * DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS, QUERY_DECLARED_METHODS,
        +100    * QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS.
        +101    * </P>
        +102    *
        +103    * @return access scopes for applying scanned classes to reflection hint
        +104    */
        +105   TypeAccess[] typeAccesses() default {};
        +106 
        +107   /**
        +108    * Return location patterns for adding resource hint file under classpath.
        +109    * <p>
        +110    * Default is none.
        +111    * </P>
        +112    *
        +113    * @return location patterns for adding resource hint file under classpath
        +114    */
        +115   String[] resourceLocationPatterns() default {};
        +116 
        +117   /**
        +118    * Repeatable annotation for {@link MyBatisResourcesScan}.
        +119    */
        +120   @Import(MyBatisScannedResourcesHolder.RepeatableRegistrar.class)
        +121   @Retention(RetentionPolicy.RUNTIME)
        +122   @interface List {
        +123     MyBatisResourcesScan[] value() default {};
        +124   }
        +125 
        +126 }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html new file mode 100644 index 0000000..a52e217 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesHolder.html @@ -0,0 +1,338 @@ + + + +MyBatisScannedResourcesHolder xref + + + +
        +1   /*
        +2    *    Copyright 2022-2023 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import java.io.IOException;
        +19  import java.io.UncheckedIOException;
        +20  import java.lang.reflect.Modifier;
        +21  import java.nio.file.Path;
        +22  import java.util.Collections;
        +23  import java.util.HashSet;
        +24  import java.util.Optional;
        +25  import java.util.Set;
        +26  import java.util.regex.Pattern;
        +27  import java.util.stream.Collectors;
        +28  import java.util.stream.Stream;
        +29  
        +30  import org.apache.commons.logging.Log;
        +31  import org.apache.commons.logging.LogFactory;
        +32  import org.apache.ibatis.type.TypeHandler;
        +33  import org.springframework.beans.factory.config.BeanDefinition;
        +34  import org.springframework.beans.factory.support.BeanDefinitionBuilder;
        +35  import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
        +36  import org.springframework.beans.factory.support.BeanDefinitionRegistry;
        +37  import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
        +38  import org.springframework.core.annotation.AnnotationAttributes;
        +39  import org.springframework.core.io.ClassPathResource;
        +40  import org.springframework.core.io.Resource;
        +41  import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
        +42  import org.springframework.core.io.support.ResourcePatternResolver;
        +43  import org.springframework.core.type.AnnotationMetadata;
        +44  import org.springframework.core.type.ClassMetadata;
        +45  import org.springframework.core.type.classreading.CachingMetadataReaderFactory;
        +46  import org.springframework.core.type.classreading.MetadataReaderFactory;
        +47  import org.springframework.nativex.hint.TypeAccess;
        +48  import org.springframework.util.ClassUtils;
        +49  
        +50  /**
        +51   * The holder class that scanned resources using {@code @MyBatisResourcesScan}.
        +52   *
        +53   * @author Kazuki Shimizu
        +54   */
        +55  public class MyBatisScannedResourcesHolder {
        +56  
        +57    private Set<Class<?>> typeAliasesClasses;
        +58    private Set<Class<?>> typeHandlerClasses;
        +59    private Set<String> mapperLocations;
        +60    private Set<Class<?>> reflectionClasses;
        +61    private TypeAccess[] reflectionTypeAccesses;
        +62    private Set<String> resourceLocations;
        +63  
        +64    /**
        +65     * Return class list of scanned type aliases.
        +66     *
        +67     * @return class list of scanned type aliases
        +68     */
        +69    public Set<Class<?>> getTypeAliasesClasses() {
        +70      return typeAliasesClasses;
        +71    }
        +72  
        +73    /**
        +74     * Set class list of scanned type aliases.
        +75     *
        +76     * @param typeAliasClasses
        +77     *          class list of scanned type aliases
        +78     */
        +79    @SuppressWarnings("unused")
        +80    public void setTypeAliasesClasses(Set<Class<?>> typeAliasClasses) {
        +81      this.typeAliasesClasses = typeAliasClasses;
        +82    }
        +83  
        +84    /**
        +85     * Return class list of scanned type handler.
        +86     *
        +87     * @return class list of scanned type handler
        +88     */
        +89    public Set<Class<?>> getTypeHandlerClasses() {
        +90      return typeHandlerClasses;
        +91    }
        +92  
        +93    /**
        +94     * Set class list of scanned type handler.
        +95     *
        +96     * @param typeHandlerClasses
        +97     *          class list of scanned type handler
        +98     */
        +99    @SuppressWarnings("unused")
        +100   public void setTypeHandlerClasses(Set<Class<?>> typeHandlerClasses) {
        +101     this.typeHandlerClasses = typeHandlerClasses;
        +102   }
        +103 
        +104   /**
        +105    * Return location list of scanned mapper xml file.
        +106    *
        +107    * @return location list of scanned mapper xml file
        +108    */
        +109   public Set<String> getMapperLocations() {
        +110     return mapperLocations;
        +111   }
        +112 
        +113   /**
        +114    * Set location list of scanned mapper xml file.
        +115    *
        +116    * @param mapperLocations
        +117    *          location list of scanned mapper xml file
        +118    */
        +119   @SuppressWarnings("unused")
        +120   public void setMapperLocations(Set<String> mapperLocations) {
        +121     this.mapperLocations = mapperLocations;
        +122   }
        +123 
        +124   /**
        +125    * Set class list of scanned reflection hint type.
        +126    *
        +127    * @param reflectionClasses
        +128    *          class list of scanned reflection hint type
        +129    */
        +130   @SuppressWarnings("unused")
        +131   public void setReflectionClasses(Set<Class<?>> reflectionClasses) {
        +132     this.reflectionClasses = reflectionClasses;
        +133   }
        +134 
        +135   /**
        +136    * Return class list of scanned reflection hint type.
        +137    *
        +138    * @return class list of scanned reflection hint type
        +139    */
        +140   public Set<Class<?>> getReflectionClasses() {
        +141     return reflectionClasses;
        +142   }
        +143 
        +144   /**
        +145    * Set access scopes for applying reflection type that scanned.
        +146    *
        +147    * @param reflectionTypeAccesses
        +148    *          access scopes for applying reflection type that scanned
        +149    */
        +150   @SuppressWarnings("unused")
        +151   public void setReflectionTypeAccesses(TypeAccess[] reflectionTypeAccesses) {
        +152     this.reflectionTypeAccesses = reflectionTypeAccesses;
        +153   }
        +154 
        +155   /**
        +156    * Return access scopes for applying reflection type that scanned.
        +157    *
        +158    * @return access scopes for applying reflection type that scanned
        +159    */
        +160   public TypeAccess[] getReflectionTypeAccesses() {
        +161     return reflectionTypeAccesses;
        +162   }
        +163 
        +164   /**
        +165    * Set location list of adding resource hint file.
        +166    *
        +167    * @param resourceLocations
        +168    *          location list of adding resource hint file
        +169    */
        +170   @SuppressWarnings("unused")
        +171   public void setResourceLocations(Set<String> resourceLocations) {
        +172     this.resourceLocations = resourceLocations;
        +173   }
        +174 
        +175   /**
        +176    * Return location list of adding resource hint file.
        +177    *
        +178    * @return location list of adding resource hint file
        +179    */
        +180   public Set<String> getResourceLocations() {
        +181     return resourceLocations;
        +182   }
        +183 
        +184   static class Registrar implements ImportBeanDefinitionRegistrar {
        +185     private static final Log LOG = LogFactory.getLog(Registrar.class);
        +186     private static final ResourcePatternResolver RESOURCE_PATTERN_RESOLVER = new PathMatchingResourcePatternResolver();
        +187     private static final MetadataReaderFactory METADATA_READER_FACTORY = new CachingMetadataReaderFactory();
        +188     private static final Pattern JAR_RESOURCE_PREFIX_PATTERN = Pattern.compile(".*\\.jar!/");
        +189     private static final boolean PRESENT_TYPE_HANDLER = ClassUtils.isPresent("org.apache.ibatis.type.TypeHandler",
        +190         null);
        +191 
        +192     @Override
        +193     public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
        +194       AnnotationAttributes annoAttrs = Optional
        +195           .ofNullable(AnnotationAttributes
        +196               .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.class.getName())))
        +197           .orElseGet(AnnotationAttributes::new);
        +198       registerBeanDefinitions(annoAttrs, registry);
        +199     }
        +200 
        +201     protected void registerBeanDefinitions(AnnotationAttributes annoAttrs, BeanDefinitionRegistry registry) {
        +202       try {
        +203         BeanDefinitionBuilder builder = BeanDefinitionBuilder
        +204             .genericBeanDefinition(MyBatisScannedResourcesHolder.class);
        +205         Set<Class<?>> typeAliasesClasses = scanClasses(annoAttrs.getStringArray("typeAliasesPackages"),
        +206             annoAttrs.getClass("typeAliasesSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass())
        +207                 .filter(clazz -> !clazz.isInterface()).filter(clazz -> !clazz.isMemberClass())
        +208                 .collect(Collectors.toSet());
        +209         builder.addPropertyValue("typeAliasesClasses", typeAliasesClasses);
        +210         Set<Class<?>> typeHandlerClasses = Collections.emptySet();
        +211         if (PRESENT_TYPE_HANDLER) {
        +212           typeHandlerClasses = scanClasses(annoAttrs.getStringArray("typeHandlerPackages"), TypeHandler.class).stream()
        +213               .filter(clazz -> !clazz.isAnonymousClass()).filter(clazz -> !clazz.isInterface())
        +214               .filter(clazz -> !Modifier.isAbstract(clazz.getModifiers())).collect(Collectors.toSet());
        +215         }
        +216         builder.addPropertyValue("typeHandlerClasses", typeHandlerClasses);
        +217         Set<String> mapperLocations = scanResources(annoAttrs.getStringArray("mapperLocationPatterns"));
        +218         builder.addPropertyValue("mapperLocations", mapperLocations);
        +219         Set<Class<?>> reflectionClasses = scanClasses(annoAttrs.getStringArray("reflectionTypePackages"),
        +220             annoAttrs.getClass("reflectionTypeSupperType")).stream().filter(clazz -> !clazz.isAnonymousClass())
        +221                 .filter(clazz -> !clazz.isInterface()).filter(clazz -> !Modifier.isAbstract(clazz.getModifiers()))
        +222                 .filter(clazz -> !clazz.isMemberClass()).collect(Collectors.toSet());
        +223         builder.addPropertyValue("reflectionClasses",
        +224             Stream.of(typeAliasesClasses, typeHandlerClasses, reflectionClasses).flatMap(Set::stream)
        +225                 .collect(Collectors.toSet()));
        +226         builder.addPropertyValue("reflectionTypeAccesses", annoAttrs.get("typeAccesses"));
        +227         Set<String> resourceLocations = scanResources(annoAttrs.getStringArray("resourceLocationPatterns"));
        +228         builder.addPropertyValue("resourceLocations",
        +229             Stream.of(mapperLocations, resourceLocations).flatMap(Set::stream).collect(Collectors.toSet()));
        +230         BeanDefinition beanDefinition = builder.getBeanDefinition();
        +231         registry.registerBeanDefinition(BeanDefinitionReaderUtils.generateBeanName(beanDefinition, registry),
        +232             beanDefinition);
        +233       } catch (IOException e) {
        +234         throw new UncheckedIOException(e);
        +235       }
        +236     }
        +237 
        +238     private Set<Class<?>> scanClasses(String[] packagePatterns, Class<?> assignableType) throws IOException {
        +239       Set<Class<?>> classes = new HashSet<>();
        +240       for (String packagePattern : packagePatterns) {
        +241         Resource[] resources = RESOURCE_PATTERN_RESOLVER.getResources(ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX
        +242             + ClassUtils.convertClassNameToResourcePath(packagePattern) + "/**/*.class");
        +243         for (Resource resource : resources) {
        +244           try {
        +245             ClassMetadata classMetadata = METADATA_READER_FACTORY.getMetadataReader(resource).getClassMetadata();
        +246             Class<?> clazz = ClassUtils.forName(classMetadata.getClassName(), null);
        +247             if (assignableType == void.class || assignableType.isAssignableFrom(clazz)) {
        +248               classes.add(clazz);
        +249             }
        +250           } catch (ClassNotFoundException e) {
        +251             LOG.debug("Fail loading class.", e);
        +252           }
        +253         }
        +254       }
        +255       return classes;
        +256     }
        +257 
        +258     private Set<String> scanResources(String[] mapperLocationPatterns) {
        +259       try {
        +260         String baseUrl = new ClassPathResource("/").getURL().toString();
        +261         return Stream.of(mapperLocationPatterns).flatMap(location -> Stream.of(getResources(location)))
        +262             .map(x -> toPath(x, baseUrl)).collect(Collectors.toSet());
        +263       } catch (IOException e) {
        +264         throw new UncheckedIOException(e);
        +265       }
        +266     }
        +267 
        +268     private Resource[] getResources(String locationPattern) {
        +269       try {
        +270         return RESOURCE_PATTERN_RESOLVER.getResources(locationPattern);
        +271       } catch (IOException e) {
        +272         LOG.debug("Fail getting resources. locationPattern: " + locationPattern, e);
        +273         return new Resource[0];
        +274       }
        +275     }
        +276 
        +277     private String toPath(Resource resource, String baseUrl) {
        +278       try {
        +279         String url = resource.getURL().toString();
        +280         String path = url;
        +281         if (url.startsWith(baseUrl)) {
        +282           path = url.replace(baseUrl, "");
        +283         } else if (url.contains(".jar!")) {
        +284           path = JAR_RESOURCE_PREFIX_PATTERN.matcher(url).replaceFirst("");
        +285         } else {
        +286           path = determineRelativePath(resource);
        +287         }
        +288         return path;
        +289       } catch (IOException e) {
        +290         throw new UncheckedIOException(e);
        +291       }
        +292     }
        +293 
        +294     private String determineRelativePath(Resource resource) throws IOException {
        +295       Path path = resource.getFile().toPath();
        +296       StringBuilder sb = new StringBuilder();
        +297       for (int i = path.getNameCount() - 1; i >= 0; i--) {
        +298         sb.insert(0, path.getName(i));
        +299         String relativePath = sb.toString();
        +300         if (RESOURCE_PATTERN_RESOLVER.getResource(relativePath).exists()) {
        +301           return relativePath;
        +302         }
        +303         sb.insert(0, '/');
        +304       }
        +305       return resource.getURL().toString();
        +306     }
        +307 
        +308   }
        +309 
        +310   static class RepeatableRegistrar extends Registrar {
        +311 
        +312     @Override
        +313     public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
        +314       AnnotationAttributes mapperScansAttrs = AnnotationAttributes
        +315           .fromMap(importingClassMetadata.getAnnotationAttributes(MyBatisResourcesScan.List.class.getName()));
        +316       if (mapperScansAttrs != null) {
        +317         for (AnnotationAttributes annoAttrs : mapperScansAttrs.getAnnotationArray("value")) {
        +318           this.registerBeanDefinitions(annoAttrs, registry);
        +319         }
        +320       }
        +321     }
        +322 
        +323   }
        +324 
        +325 }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html new file mode 100644 index 0000000..2ba8bbb --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisScannedResourcesNativeConfigurationProcessor.html @@ -0,0 +1,92 @@ + + + +MyBatisScannedResourcesNativeConfigurationProcessor xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_CONSTRUCTORS;
        +27  import static org.springframework.nativex.hint.TypeAccess.QUERY_DECLARED_METHODS;
        +28  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_CONSTRUCTORS;
        +29  import static org.springframework.nativex.hint.TypeAccess.QUERY_PUBLIC_METHODS;
        +30  
        +31  import java.util.Collections;
        +32  import java.util.Optional;
        +33  import java.util.Set;
        +34  
        +35  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.BeanFactoryNativeConfigurationProcessor;
        +36  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeConfigurationRegistry;
        +37  import org.springframework.aot.context.bootstrap.generator.infrastructure.nativex.NativeResourcesEntry;
        +38  import org.springframework.beans.PropertyValue;
        +39  import org.springframework.beans.factory.config.BeanDefinition;
        +40  import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
        +41  import org.springframework.nativex.hint.TypeAccess;
        +42  
        +43  /**
        +44   * Finds and registers reflection and resource hints for all MyBatisScannedResourcesHolder in the {@code BeanFactory}.
        +45   *
        +46   * @author Kazuki Shimizu
        +47   */
        +48  public class MyBatisScannedResourcesNativeConfigurationProcessor implements BeanFactoryNativeConfigurationProcessor {
        +49  
        +50    private static final TypeAccess[] DEFAULT_TYPE_ACCESSES = { PUBLIC_CONSTRUCTORS, PUBLIC_CLASSES, PUBLIC_FIELDS,
        +51        PUBLIC_METHODS, DECLARED_CLASSES, DECLARED_CONSTRUCTORS, DECLARED_FIELDS, DECLARED_METHODS,
        +52        QUERY_DECLARED_METHODS, QUERY_PUBLIC_METHODS, QUERY_DECLARED_CONSTRUCTORS, QUERY_PUBLIC_CONSTRUCTORS };
        +53  
        +54    /**
        +55     * {@inheritDoc}
        +56     */
        +57    @Override
        +58    public void process(ConfigurableListableBeanFactory beanFactory, NativeConfigurationRegistry registry) {
        +59      String[] beanNames = beanFactory.getBeanNamesForType(MyBatisScannedResourcesHolder.class);
        +60      for (String beanName : beanNames) {
        +61        BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName);
        +62        @SuppressWarnings("unchecked")
        +63        Set<String> resourceLocations = (Set<String>) Optional
        +64            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("resourceLocations"))
        +65            .map(PropertyValue::getValue).orElse(Collections.emptySet());
        +66        resourceLocations.forEach(x -> registry.resources().add(NativeResourcesEntry.of(x)));
        +67        @SuppressWarnings("unchecked")
        +68        Set<Class<?>> reflectionClasses = (Set<Class<?>>) Optional
        +69            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionClasses"))
        +70            .map(PropertyValue::getValue).orElse(Collections.emptySet());
        +71        TypeAccess[] reflectionTypeAccesses = (TypeAccess[]) Optional
        +72            .ofNullable(beanDefinition.getPropertyValues().getPropertyValue("reflectionTypeAccesses"))
        +73            .map(PropertyValue::getValue).orElse(DEFAULT_TYPE_ACCESSES);
        +74        reflectionClasses.forEach(x -> registry.reflection().forType(x)
        +75            .withAccess(reflectionTypeAccesses.length == 0 ? DEFAULT_TYPE_ACCESSES : reflectionTypeAccesses).build());
        +76      }
        +77    }
        +78  
        +79  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html new file mode 100644 index 0000000..0e6fb7c --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisSpringNativeConfiguration.html @@ -0,0 +1,74 @@ + + + +MyBatisSpringNativeConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  
        +27  import org.mybatis.spring.SqlSessionFactoryBean;
        +28  import org.mybatis.spring.SqlSessionTemplate;
        +29  import org.springframework.nativex.hint.NativeHint;
        +30  import org.springframework.nativex.hint.ResourceHint;
        +31  import org.springframework.nativex.hint.TypeHint;
        +32  import org.springframework.nativex.type.NativeConfiguration;
        +33  
        +34  /**
        +35   * Registers hints to make a MyBatis Spring component work in a Spring Native context.
        +36   *
        +37   * @author Kazuki Shimizu
        +38   */
        +39  // @formatter:off
        +40  @NativeHint(
        +41      trigger = SqlSessionTemplate.class,
        +42      resources = @ResourceHint(
        +43          patterns = "org/mybatis/spring/config/.*.xsd"
        +44      )
        +45  )
        +46  @TypeHint(
        +47      types = SqlSessionFactoryBean.class,
        +48      access = {
        +49          PUBLIC_CONSTRUCTORS,
        +50          PUBLIC_CLASSES,
        +51          PUBLIC_FIELDS,
        +52          PUBLIC_METHODS,
        +53          DECLARED_CLASSES,
        +54          DECLARED_CONSTRUCTORS,
        +55          DECLARED_FIELDS,
        +56          DECLARED_METHODS
        +57      }
        +58  )
        +59  // @formatter:on
        +60  public class MyBatisSpringNativeConfiguration implements NativeConfiguration {
        +61  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html new file mode 100644 index 0000000..1e62f1b --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisThymeleafNativeConfiguration.html @@ -0,0 +1,115 @@ + + + +MyBatisThymeleafNativeConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  
        +27  import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig;
        +28  import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver;
        +29  import org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriverConfig;
        +30  import org.mybatis.scripting.thymeleaf.expression.Likes;
        +31  import org.mybatis.scripting.thymeleaf.support.TemplateFilePathProvider;
        +32  import org.mybatis.scripting.thymeleaf.support.spring.SpringNamedParameterBindVariableRender;
        +33  import org.springframework.nativex.hint.NativeHint;
        +34  import org.springframework.nativex.hint.ResourceHint;
        +35  import org.springframework.nativex.hint.TypeHint;
        +36  import org.springframework.nativex.type.NativeConfiguration;
        +37  import org.thymeleaf.expression.Aggregates;
        +38  import org.thymeleaf.expression.Arrays;
        +39  import org.thymeleaf.expression.Bools;
        +40  import org.thymeleaf.expression.Calendars;
        +41  import org.thymeleaf.expression.Dates;
        +42  import org.thymeleaf.expression.ExecutionInfo;
        +43  import org.thymeleaf.expression.Ids;
        +44  import org.thymeleaf.expression.Lists;
        +45  import org.thymeleaf.expression.Maps;
        +46  import org.thymeleaf.expression.Messages;
        +47  import org.thymeleaf.expression.Numbers;
        +48  import org.thymeleaf.expression.Objects;
        +49  import org.thymeleaf.expression.Sets;
        +50  import org.thymeleaf.expression.Strings;
        +51  import org.thymeleaf.expression.Uris;
        +52  
        +53  /**
        +54   * Registers hints to make a MyBatis Thymeleaf component work in a Spring Native context.
        +55   *
        +56   * @author Kazuki Shimizu
        +57   */
        +58  // @formatter:off
        +59  @NativeHint(
        +60      trigger = ThymeleafLanguageDriver.class,
        +61      resources = @ResourceHint(
        +62          patterns = "mybatis-thymeleaf.properties"
        +63      )
        +64  )
        +65  @TypeHint(
        +66      types = {
        +67          ThymeleafLanguageDriver.class,
        +68          SqlGeneratorConfig.class,
        +69          ThymeleafLanguageDriverConfig.class,
        +70          TemplateFilePathProvider.class,
        +71          SpringNamedParameterBindVariableRender.class,
        +72          Likes.class,
        +73          Uris.class,
        +74          Calendars.class,
        +75          Dates.class,
        +76          Bools.class,
        +77          Numbers.class,
        +78          Objects.class,
        +79          Strings.class,
        +80          Arrays.class,
        +81          Lists.class,
        +82          Sets.class,
        +83          Maps.class,
        +84          Aggregates.class,
        +85          Messages.class,
        +86          Ids.class,
        +87          ExecutionInfo.class
        +88      },
        +89      access = {
        +90          PUBLIC_CONSTRUCTORS,
        +91          PUBLIC_CLASSES,
        +92          PUBLIC_FIELDS,
        +93          PUBLIC_METHODS,
        +94          DECLARED_CLASSES,
        +95          DECLARED_CONSTRUCTORS,
        +96          DECLARED_FIELDS,
        +97          DECLARED_METHODS
        +98      }
        +99  )
        +100 // @formatter:on
        +101 public class MyBatisThymeleafNativeConfiguration implements NativeConfiguration {
        +102 }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html new file mode 100644 index 0000000..000a2ca --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/MyBatisVelocityNativeConfiguration.html @@ -0,0 +1,122 @@ + + + +MyBatisVelocityNativeConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex;
        +17  
        +18  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CLASSES;
        +19  import static org.springframework.nativex.hint.TypeAccess.DECLARED_CONSTRUCTORS;
        +20  import static org.springframework.nativex.hint.TypeAccess.DECLARED_FIELDS;
        +21  import static org.springframework.nativex.hint.TypeAccess.DECLARED_METHODS;
        +22  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CLASSES;
        +23  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_CONSTRUCTORS;
        +24  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_FIELDS;
        +25  import static org.springframework.nativex.hint.TypeAccess.PUBLIC_METHODS;
        +26  
        +27  import org.apache.velocity.runtime.ParserPoolImpl;
        +28  import org.apache.velocity.runtime.directive.Break;
        +29  import org.apache.velocity.runtime.directive.Define;
        +30  import org.apache.velocity.runtime.directive.Evaluate;
        +31  import org.apache.velocity.runtime.directive.Foreach;
        +32  import org.apache.velocity.runtime.directive.Include;
        +33  import org.apache.velocity.runtime.directive.Macro;
        +34  import org.apache.velocity.runtime.directive.Parse;
        +35  import org.apache.velocity.runtime.directive.Stop;
        +36  import org.apache.velocity.runtime.parser.StandardParser;
        +37  import org.apache.velocity.runtime.resource.ResourceCacheImpl;
        +38  import org.apache.velocity.runtime.resource.ResourceManagerImpl;
        +39  import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;
        +40  import org.apache.velocity.util.introspection.TypeConversionHandlerImpl;
        +41  import org.apache.velocity.util.introspection.UberspectImpl;
        +42  import org.mybatis.scripting.velocity.InDirective;
        +43  import org.mybatis.scripting.velocity.ParameterMappingCollector;
        +44  import org.mybatis.scripting.velocity.RepeatDirective;
        +45  import org.mybatis.scripting.velocity.SetDirective;
        +46  import org.mybatis.scripting.velocity.TrimDirective;
        +47  import org.mybatis.scripting.velocity.VelocityLanguageDriver;
        +48  import org.mybatis.scripting.velocity.VelocityLanguageDriverConfig;
        +49  import org.mybatis.scripting.velocity.WhereDirective;
        +50  import org.springframework.nativex.hint.NativeHint;
        +51  import org.springframework.nativex.hint.ResourceHint;
        +52  import org.springframework.nativex.hint.TypeHint;
        +53  import org.springframework.nativex.type.NativeConfiguration;
        +54  
        +55  /**
        +56   * Registers hints to make a MyBatis Velocity component work in a Spring Native context.
        +57   *
        +58   * @author Kazuki Shimizu
        +59   */
        +60  // @formatter:off
        +61  @NativeHint(
        +62      trigger = VelocityLanguageDriver.class,
        +63      resources = @ResourceHint(
        +64          patterns = {
        +65              "mybatis-velocity.properties",
        +66              "org/apache/velocity/runtime/defaults/.*.properties"
        +67          }
        +68      )
        +69  )
        +70  @TypeHint(
        +71      types = {
        +72          VelocityLanguageDriver.class,
        +73          VelocityLanguageDriverConfig.class,
        +74          ParameterMappingCollector.class,
        +75          TrimDirective.class,
        +76          WhereDirective.class,
        +77          SetDirective.class,
        +78          InDirective.class,
        +79          RepeatDirective.class,
        +80          ResourceManagerImpl.class,
        +81          ClasspathResourceLoader.class,
        +82          ResourceCacheImpl.class,
        +83          ParserPoolImpl.class,
        +84          UberspectImpl.class,
        +85          TypeConversionHandlerImpl.class,
        +86          StandardParser.class,
        +87          Foreach.class,
        +88          Include.class,
        +89          Parse.class,
        +90          Macro.class,
        +91          Evaluate.class,
        +92          Break.class,
        +93          Define.class,
        +94          Stop.class
        +95      },
        +96      access = {
        +97          PUBLIC_CONSTRUCTORS,
        +98          PUBLIC_CLASSES,
        +99          PUBLIC_FIELDS,
        +100         PUBLIC_METHODS,
        +101         DECLARED_CLASSES,
        +102         DECLARED_CONSTRUCTORS,
        +103         DECLARED_FIELDS,
        +104         DECLARED_METHODS
        +105     }
        +106 )
        +107 // @formatter:on
        +108 public class MyBatisVelocityNativeConfiguration implements NativeConfiguration {
        +109 }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html b/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html new file mode 100644 index 0000000..44dd6c0 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/MyBatisSpringNativeAutoConfiguration.html @@ -0,0 +1,78 @@ + + + +MyBatisSpringNativeAutoConfiguration xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.autoconfigure;
        +17  
        +18  import java.util.List;
        +19  
        +20  import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
        +21  import org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration;
        +22  import org.mybatis.spring.boot.autoconfigure.SqlSessionFactoryBeanCustomizer;
        +23  import org.mybatis.spring.nativex.MyBatisScannedResourcesHolder;
        +24  import org.springframework.boot.autoconfigure.AutoConfigureBefore;
        +25  import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
        +26  import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
        +27  import org.springframework.context.annotation.Bean;
        +28  import org.springframework.context.annotation.Configuration;
        +29  import org.springframework.core.io.ClassPathResource;
        +30  import org.springframework.core.io.Resource;
        +31  
        +32  /**
        +33   * The configuration class that configure automatically for spring-native.
        +34   *
        +35   * @author Kazuki Shimizu
        +36   */
        +37  @Configuration
        +38  @ConditionalOnClass({ org.apache.ibatis.session.Configuration.class, SqlSessionFactoryBeanCustomizer.class })
        +39  @AutoConfigureBefore(MybatisAutoConfiguration.class)
        +40  public class MyBatisSpringNativeAutoConfiguration {
        +41  
        +42    @ConditionalOnBean(MyBatisScannedResourcesHolder.class)
        +43    @Bean
        +44    ConfigurationCustomizer mybatisScannedResourcesHolderConfigurationCustomizer(
        +45        List<MyBatisScannedResourcesHolder> holders) {
        +46      return configuration -> holders.forEach(holder -> {
        +47        holder.getTypeAliasesClasses().forEach(configuration.getTypeAliasRegistry()::registerAlias);
        +48        holder.getTypeHandlerClasses().forEach(configuration.getTypeHandlerRegistry()::register);
        +49      });
        +50    }
        +51  
        +52    @ConditionalOnBean(MyBatisScannedResourcesHolder.class)
        +53    @Bean
        +54    SqlSessionFactoryBeanCustomizer mybatisScannedResourcesHolderSqlSessionFactoryBeanCustomizer(
        +55        List<MyBatisScannedResourcesHolder> holders) {
        +56      return factoryBean -> {
        +57        Resource[] resources = holders.stream()
        +58            .flatMap(holder -> holder.getMapperLocations().stream().map(ClassPathResource::new)).toArray(Resource[]::new);
        +59        if (resources.length > 0) {
        +60          factoryBean.setMapperLocations(resources);
        +61        }
        +62      };
        +63    }
        +64  
        +65  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html new file mode 100644 index 0000000..a70c069 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/package-frame.html @@ -0,0 +1,18 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + +

        org.mybatis.spring.nativex.autoconfigure

        +
        +

        Classes

        +
          +
        +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html new file mode 100644 index 0000000..3c17131 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/autoconfigure/package-summary.html @@ -0,0 +1,102 @@ + + + + + + + mybatis-spring-native-core 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.autoconfigure + + + + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.autoconfigure

        +
        +
        +
          +
        • + + + + + + + + + +
          Class Summary 
          Class
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native-core 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/package-frame.html new file mode 100644 index 0000000..7440ddc --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/package-frame.html @@ -0,0 +1,18 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + +

        org.mybatis.spring.nativex

        +
        +

        Classes

        +
          +
        +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/package-summary.html new file mode 100644 index 0000000..8476a65 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/package-summary.html @@ -0,0 +1,102 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex + + + + +
        + + + + +
        mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex

        +
        +
        +
          +
        • + + + + + + + + + +
          Class Summary 
          Class
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/City.html new file mode 100644 index 0000000..5c5e957 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.cache;
        +17  
        +18  import java.io.Serializable;
        +19  
        +20  public class City implements Serializable {
        +21  
        +22    private static final long serialVersionUID = 1L;
        +23  
        +24    private Integer id;
        +25    private String name;
        +26    private String state;
        +27    private String country;
        +28  
        +29    public City(Integer id, String name, String state, String country) {
        +30      this.id = id;
        +31      this.name = name;
        +32      this.state = state;
        +33      this.country = country;
        +34    }
        +35  
        +36    public Integer getId() {
        +37      return id;
        +38    }
        +39  
        +40    public void setId(Integer id) {
        +41      this.id = id;
        +42    }
        +43  
        +44    public String getName() {
        +45      return name;
        +46    }
        +47  
        +48    public void setName(String name) {
        +49      this.name = name;
        +50    }
        +51  
        +52    public String getState() {
        +53      return state;
        +54    }
        +55  
        +56    public void setState(String state) {
        +57      this.state = state;
        +58    }
        +59  
        +60    public String getCountry() {
        +61      return country;
        +62    }
        +63  
        +64    public void setCountry(String country) {
        +65      this.country = country;
        +66    }
        +67  
        +68    @Override
        +69    public String toString() {
        +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +71          + '}';
        +72    }
        +73  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html new file mode 100644 index 0000000..0fbe528 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/CityMapper.html @@ -0,0 +1,50 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.cache;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.CacheNamespace;
        +21  import org.apache.ibatis.annotations.Insert;
        +22  import org.apache.ibatis.annotations.Mapper;
        +23  import org.apache.ibatis.annotations.Options;
        +24  import org.apache.ibatis.annotations.Select;
        +25  
        +26  @CacheNamespace
        +27  @Mapper
        +28  public interface CityMapper {
        +29  
        +30    @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})")
        +31    @Options(useGeneratedKeys = true, keyProperty = "id")
        +32    void insert(City city);
        +33  
        +34    @Select("SELECT id, name, state, country FROM city ORDER BY id")
        +35    Collection<City> findAll();
        +36  
        +37  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..e015db4 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,64 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.cache;
        +17  
        +18  import java.util.ArrayList;
        +19  
        +20  import org.slf4j.Logger;
        +21  import org.slf4j.LoggerFactory;
        +22  import org.springframework.boot.ApplicationRunner;
        +23  import org.springframework.boot.SpringApplication;
        +24  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +25  import org.springframework.context.annotation.Bean;
        +26  import org.springframework.nativex.hint.NativeHint;
        +27  import org.springframework.nativex.hint.SerializationHint;
        +28  
        +29  @NativeHint(serializables = @SerializationHint(types = { ArrayList.class, City.class, String.class, Integer.class,
        +30      Number.class }))
        +31  @SpringBootApplication
        +32  public class MybatisSpringNativeSampleApplication {
        +33  
        +34    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +35  
        +36    public static void main(String[] args) {
        +37      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +38    }
        +39  
        +40    @Bean
        +41    ApplicationRunner runner(CityMapper mapper) {
        +42      return args -> {
        +43        City newCity = new City(null, "NYC", "NY", "USA");
        +44        mapper.insert(newCity);
        +45        log.info("New city: {}", newCity);
        +46        mapper.findAll().forEach(x -> log.info("{}", x));
        +47        mapper.findAll().forEach(x -> log.info("{}", x));
        +48      };
        +49    }
        +50  
        +51  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html new file mode 100644 index 0000000..5f2b4c7 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/package-frame.html @@ -0,0 +1,24 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.cache + + + +

        org.mybatis.spring.nativex.sample.cache

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html new file mode 100644 index 0000000..0c382a0 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/cache/package-summary.html @@ -0,0 +1,112 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.cache + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.cache

        +
        +
        +
          +
        • + + + + + + + + + + + + + + + +
          Class Summary 
          Class
          + City +
          + CityMapper +
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/City.html new file mode 100644 index 0000000..f0686c9 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/City.html @@ -0,0 +1,75 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.configuration;
        +17  
        +18  public class City {
        +19  
        +20    private Integer cityId;
        +21    private String cityName;
        +22    private String stateCode;
        +23    private String countryCode;
        +24  
        +25    public Integer getCityId() {
        +26      return cityId;
        +27    }
        +28  
        +29    public void setCityId(Integer cityId) {
        +30      this.cityId = cityId;
        +31    }
        +32  
        +33    public String getCityName() {
        +34      return cityName;
        +35    }
        +36  
        +37    public void setCityName(String cityName) {
        +38      this.cityName = cityName;
        +39    }
        +40  
        +41    public String getStateCode() {
        +42      return stateCode;
        +43    }
        +44  
        +45    public void setStateCode(String stateCode) {
        +46      this.stateCode = stateCode;
        +47    }
        +48  
        +49    public String getCountryCode() {
        +50      return countryCode;
        +51    }
        +52  
        +53    public void setCountryCode(String countryCode) {
        +54      this.countryCode = countryCode;
        +55    }
        +56  
        +57    @Override
        +58    public String toString() {
        +59      return "City{" + "cityId=" + cityId + ", cityName='" + cityName + '\'' + ", stateCode='" + stateCode + '\''
        +60          + ", countryCode='" + countryCode + '\'' + '}';
        +61    }
        +62  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html new file mode 100644 index 0000000..551ccf1 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.configuration;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.Insert;
        +21  import org.apache.ibatis.annotations.Mapper;
        +22  import org.apache.ibatis.annotations.Options;
        +23  import org.apache.ibatis.annotations.Select;
        +24  
        +25  @Mapper
        +26  public interface CityMapper {
        +27  
        +28    @Insert("INSERT INTO city (city_name, state_code, country_code) VALUES(#{cityName}, #{stateCode}, #{countryCode})")
        +29    @Options(useGeneratedKeys = true, keyProperty = "cityId")
        +30    void insert(City city);
        +31  
        +32    @Select("SELECT city_id, city_name, state_code, country_code FROM city ORDER BY city_id")
        +33    Collection<City> findAll();
        +34  
        +35  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..0c159c2 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,60 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.configuration;
        +17  
        +18  import org.slf4j.Logger;
        +19  import org.slf4j.LoggerFactory;
        +20  import org.springframework.boot.ApplicationRunner;
        +21  import org.springframework.boot.SpringApplication;
        +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +23  import org.springframework.context.annotation.Bean;
        +24  
        +25  @SpringBootApplication
        +26  public class MybatisSpringNativeSampleApplication {
        +27  
        +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +29  
        +30    public static void main(String[] args) {
        +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +32    }
        +33  
        +34    @Bean
        +35    ApplicationRunner runner(CityMapper mapper) {
        +36      return args -> {
        +37        City newCity = new City();
        +38        newCity.setCityName("NYC");
        +39        newCity.setStateCode("NY");
        +40        newCity.setCountryCode("USA");
        +41        mapper.insert(newCity);
        +42        log.info("New city: {}", newCity);
        +43        mapper.findAll().forEach(x -> log.info("{}", x));
        +44      };
        +45    }
        +46  
        +47  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html new file mode 100644 index 0000000..6ecc5d0 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.configuration + + + +

        org.mybatis.spring.nativex.sample.configuration

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html new file mode 100644 index 0000000..567c36b --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/configuration/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.configuration + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.configuration

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/City.html new file mode 100644 index 0000000..c850369 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.dao;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html new file mode 100644 index 0000000..343c6c2 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/CityDao.html @@ -0,0 +1,53 @@ + + + +CityDao xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.dao;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.session.SqlSession;
        +21  import org.springframework.stereotype.Component;
        +22  
        +23  @Component
        +24  public class CityDao {
        +25  
        +26    private final SqlSession sqlSession;
        +27  
        +28    public CityDao(SqlSession sqlSession) {
        +29      this.sqlSession = sqlSession;
        +30    }
        +31  
        +32    public void insert(City city) {
        +33      sqlSession.insert("org.mybatis.spring.nativex.sample.dao.CityDao.insert", city);
        +34    }
        +35  
        +36    public Collection<City> findAll() {
        +37      return sqlSession.selectList("org.mybatis.spring.nativex.sample.dao.CityDao.findAll");
        +38    }
        +39  
        +40  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..7e6e197 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,59 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.dao;
        +17  
        +18  import org.mybatis.spring.nativex.MyBatisResourcesScan;
        +19  import org.slf4j.Logger;
        +20  import org.slf4j.LoggerFactory;
        +21  import org.springframework.boot.ApplicationRunner;
        +22  import org.springframework.boot.SpringApplication;
        +23  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +24  import org.springframework.context.annotation.Bean;
        +25  
        +26  @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.dao", mapperLocationPatterns = "dao/**/*Dao.xml")
        +27  @SpringBootApplication
        +28  public class MybatisSpringNativeSampleApplication {
        +29  
        +30    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +31  
        +32    public static void main(String[] args) {
        +33      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +34    }
        +35  
        +36    @Bean
        +37    ApplicationRunner runner(CityDao cityDao) {
        +38      return args -> {
        +39        City newCity = new City(null, "NYC", "NY", "USA");
        +40        cityDao.insert(newCity);
        +41        log.info("New city: {}", newCity);
        +42        cityDao.findAll().forEach(x -> log.info("{}", x));
        +43      };
        +44    }
        +45  
        +46  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html new file mode 100644 index 0000000..f2597c4 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dao + + + +

        org.mybatis.spring.nativex.sample.dao

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html new file mode 100644 index 0000000..d7432d2 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dao/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dao + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.dao

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html new file mode 100644 index 0000000..cbd28d7 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.dynamicsql;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html new file mode 100644 index 0000000..e39e1a5 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/CityMapper.html @@ -0,0 +1,86 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.dynamicsql;
        +17  
        +18  import java.sql.JDBCType;
        +19  import java.util.Collection;
        +20  import java.util.List;
        +21  
        +22  import org.apache.ibatis.annotations.InsertProvider;
        +23  import org.apache.ibatis.annotations.Mapper;
        +24  import org.apache.ibatis.annotations.Options;
        +25  import org.apache.ibatis.annotations.SelectProvider;
        +26  import org.mybatis.dynamic.sql.BasicColumn;
        +27  import org.mybatis.dynamic.sql.SqlColumn;
        +28  import org.mybatis.dynamic.sql.SqlTable;
        +29  import org.mybatis.dynamic.sql.insert.render.InsertStatementProvider;
        +30  import org.mybatis.dynamic.sql.select.SelectDSLCompleter;
        +31  import org.mybatis.dynamic.sql.select.render.SelectStatementProvider;
        +32  import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
        +33  import org.mybatis.dynamic.sql.util.mybatis3.CommonCountMapper;
        +34  import org.mybatis.dynamic.sql.util.mybatis3.CommonDeleteMapper;
        +35  import org.mybatis.dynamic.sql.util.mybatis3.CommonInsertMapper;
        +36  import org.mybatis.dynamic.sql.util.mybatis3.CommonSelectMapper;
        +37  import org.mybatis.dynamic.sql.util.mybatis3.CommonUpdateMapper;
        +38  import org.mybatis.dynamic.sql.util.mybatis3.MyBatis3Utils;
        +39  
        +40  @Mapper
        +41  public interface CityMapper
        +42      extends CommonSelectMapper, CommonCountMapper, CommonDeleteMapper, CommonInsertMapper<City>, CommonUpdateMapper {
        +43  
        +44    @InsertProvider(type = SqlProviderAdapter.class, method = "insert")
        +45    @Options(useGeneratedKeys = true, keyProperty = "row.id")
        +46    int insert(InsertStatementProvider<City> insertStatement);
        +47  
        +48    @SelectProvider(type = SqlProviderAdapter.class, method = "select")
        +49    List<City> selectMany(SelectStatementProvider selectStatement);
        +50  
        +51    default void insert(City city) {
        +52      MyBatis3Utils.insert(this::insert, city, CityTable.INSTANCE, c -> c.map(CityTable.INSTANCE.name).toProperty("name")
        +53          .map(CityTable.INSTANCE.state).toProperty("state").map(CityTable.INSTANCE.country).toProperty("country"));
        +54    }
        +55  
        +56    default Collection<City> findAll() {
        +57      return MyBatis3Utils.selectList(this::selectMany, CityTable.INSTANCE.allColumn, CityTable.INSTANCE,
        +58          SelectDSLCompleter.allRows());
        +59    }
        +60  
        +61    class CityTable extends SqlTable {
        +62      private static final CityTable INSTANCE = new CityTable();
        +63      private final SqlColumn<Integer> id = column("id", JDBCType.INTEGER);
        +64      private final SqlColumn<String> name = column("name", JDBCType.VARCHAR);
        +65      private final SqlColumn<String> state = column("state", JDBCType.VARCHAR);
        +66      private final SqlColumn<String> country = column("country", JDBCType.VARCHAR);
        +67      private final BasicColumn[] allColumn = BasicColumn.columnList(id, name, state, country);
        +68  
        +69      private CityTable() {
        +70        super("city");
        +71      }
        +72    }
        +73  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..c672787 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.dynamicsql;
        +17  
        +18  import org.slf4j.Logger;
        +19  import org.slf4j.LoggerFactory;
        +20  import org.springframework.boot.ApplicationRunner;
        +21  import org.springframework.boot.SpringApplication;
        +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +23  import org.springframework.context.annotation.Bean;
        +24  
        +25  @SpringBootApplication
        +26  public class MybatisSpringNativeSampleApplication {
        +27  
        +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +29  
        +30    public static void main(String[] args) {
        +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +32    }
        +33  
        +34    @Bean
        +35    ApplicationRunner runner(CityMapper mapper) {
        +36      return args -> {
        +37        City newCity = new City(null, "NYC", "NY", "USA");
        +38        mapper.insert(newCity);
        +39        log.info("New city: {}", newCity);
        +40        mapper.findAll().forEach(x -> log.info("{}", x));
        +41      };
        +42    }
        +43  
        +44  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html new file mode 100644 index 0000000..f0b42c7 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-frame.html @@ -0,0 +1,30 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dynamicsql + + + +

        org.mybatis.spring.nativex.sample.dynamicsql

        + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html new file mode 100644 index 0000000..066fc3b --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/dynamicsql/package-summary.html @@ -0,0 +1,122 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.dynamicsql + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.dynamicsql

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/City.html new file mode 100644 index 0000000..16ac03e --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.external.entity;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html new file mode 100644 index 0000000..e0c890f --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.entity + + + +

        org.mybatis.spring.nativex.sample.external.entity

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html new file mode 100644 index 0000000..c00a1db --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/entity/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.entity + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.external.entity

        +
        +
        +
          +
        • + + + + + + + + + + + + +
          Class Summary 
          Class
          + City +
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html new file mode 100644 index 0000000..60ea82e --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/CityMapper.html @@ -0,0 +1,43 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.external.mapper;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.Mapper;
        +21  import org.mybatis.spring.nativex.sample.external.entity.City;
        +22  
        +23  @Mapper
        +24  public interface CityMapper {
        +25  
        +26    void insert(City city);
        +27  
        +28    Collection<City> findAll();
        +29  
        +30  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html new file mode 100644 index 0000000..b9a1209 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.mapper + + + +

        org.mybatis.spring.nativex.sample.external.mapper

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html new file mode 100644 index 0000000..3131db8 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/external/mapper/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.external.mapper + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.external.mapper

        +
        +
        +
          +
        • + + + + + + + + + + + + +
          Class Summary 
          Class
          + CityMapper +
          +
        • +
        +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/City.html new file mode 100644 index 0000000..9a57d51 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.freemarker;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City() {
        +26      // NOP
        +27    }
        +28  
        +29    public City(Integer id, String name, String state, String country) {
        +30      this.id = id;
        +31      this.name = name;
        +32      this.state = state;
        +33      this.country = country;
        +34    }
        +35  
        +36    public Integer getId() {
        +37      return id;
        +38    }
        +39  
        +40    public void setId(Integer id) {
        +41      this.id = id;
        +42    }
        +43  
        +44    public String getName() {
        +45      return name;
        +46    }
        +47  
        +48    public void setName(String name) {
        +49      this.name = name;
        +50    }
        +51  
        +52    public String getState() {
        +53      return state;
        +54    }
        +55  
        +56    public void setState(String state) {
        +57      this.state = state;
        +58    }
        +59  
        +60    public String getCountry() {
        +61      return country;
        +62    }
        +63  
        +64    public void setCountry(String country) {
        +65      this.country = country;
        +66    }
        +67  
        +68    @Override
        +69    public String toString() {
        +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +71          + '}';
        +72    }
        +73  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html new file mode 100644 index 0000000..2408493 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.freemarker;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.InsertProvider;
        +21  import org.apache.ibatis.annotations.Mapper;
        +22  import org.apache.ibatis.annotations.Options;
        +23  import org.apache.ibatis.annotations.SelectProvider;
        +24  
        +25  @Mapper
        +26  public interface CityMapper {
        +27  
        +28    @InsertProvider
        +29    @Options(useGeneratedKeys = true, keyProperty = "id")
        +30    void insert(City city);
        +31  
        +32    @SelectProvider
        +33    Collection<City> findAll();
        +34  
        +35  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..da8566e --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,66 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.freemarker;
        +17  
        +18  import org.mybatis.scripting.freemarker.support.TemplateFilePathProvider;
        +19  import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
        +20  import org.mybatis.spring.nativex.MyBatisResourcesScan;
        +21  import org.slf4j.Logger;
        +22  import org.slf4j.LoggerFactory;
        +23  import org.springframework.boot.ApplicationRunner;
        +24  import org.springframework.boot.SpringApplication;
        +25  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +26  import org.springframework.context.annotation.Bean;
        +27  
        +28  @MyBatisResourcesScan(resourceLocationPatterns = "org/mybatis/spring/nativex/sample/**/*.ftl")
        +29  @SpringBootApplication
        +30  public class MybatisSpringNativeSampleApplication {
        +31  
        +32    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +33  
        +34    public static void main(String[] args) {
        +35      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +36    }
        +37  
        +38    @Bean
        +39    ApplicationRunner runner(CityMapper mapper) {
        +40      return args -> {
        +41        City newCity = new City(null, "NYC", "NY", "USA");
        +42        mapper.insert(newCity);
        +43        log.info("New city: {}", newCity);
        +44        mapper.findAll().forEach(x -> log.info("{}", x));
        +45      };
        +46    }
        +47  
        +48    @Bean
        +49    ConfigurationCustomizer mybatisConfigurationCustomizer() {
        +50      return configuration -> configuration.setDefaultSqlProviderType(TemplateFilePathProvider.class);
        +51    }
        +52  
        +53  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html new file mode 100644 index 0000000..d561489 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.freemarker + + + +

        org.mybatis.spring.nativex.sample.freemarker

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html new file mode 100644 index 0000000..837ea00 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/freemarker/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.freemarker + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.freemarker

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..090ea46 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,63 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.scan;
        +17  
        +18  import org.mybatis.spring.annotation.MapperScan;
        +19  import org.mybatis.spring.nativex.MyBatisResourcesScan;
        +20  import org.mybatis.spring.nativex.sample.external.entity.City;
        +21  import org.mybatis.spring.nativex.sample.external.mapper.CityMapper;
        +22  import org.slf4j.Logger;
        +23  import org.slf4j.LoggerFactory;
        +24  import org.springframework.boot.ApplicationRunner;
        +25  import org.springframework.boot.SpringApplication;
        +26  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +27  import org.springframework.context.annotation.Bean;
        +28  
        +29  @MapperScan(basePackages = "org.mybatis.spring.nativex.sample.external.mapper", sqlSessionTemplateRef = "sqlSessionTemplate")
        +30  @MyBatisResourcesScan(typeAliasesPackages = "org.mybatis.spring.nativex.sample.external.entity", mapperLocationPatterns = "mapper/**/*Mapper.xml")
        +31  @SpringBootApplication
        +32  public class MybatisSpringNativeSampleApplication {
        +33  
        +34    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +35  
        +36    public static void main(String[] args) {
        +37      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +38    }
        +39  
        +40    @Bean
        +41    ApplicationRunner runner(CityMapper mapper) {
        +42      return args -> {
        +43        City newCity = new City(null, "NYC", "NY", "USA");
        +44        mapper.insert(newCity);
        +45        log.info("New city: {}", newCity);
        +46        mapper.findAll().forEach(x -> log.info("{}", x));
        +47      };
        +48    }
        +49  
        +50  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html new file mode 100644 index 0000000..ae9d007 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/package-frame.html @@ -0,0 +1,21 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.scan + + + +

        org.mybatis.spring.nativex.sample.scan

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html new file mode 100644 index 0000000..8e9188a --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/scan/package-summary.html @@ -0,0 +1,107 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.scan + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.scan

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/City.html new file mode 100644 index 0000000..aff4881 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.simple;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html new file mode 100644 index 0000000..585ddc8 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.simple;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.Insert;
        +21  import org.apache.ibatis.annotations.Mapper;
        +22  import org.apache.ibatis.annotations.Options;
        +23  import org.apache.ibatis.annotations.Select;
        +24  
        +25  @Mapper
        +26  public interface CityMapper {
        +27  
        +28    @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})")
        +29    @Options(useGeneratedKeys = true, keyProperty = "id")
        +30    void insert(City city);
        +31  
        +32    @Select("SELECT id, name, state, country FROM city ORDER BY id")
        +33    Collection<City> findAll();
        +34  
        +35  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..ba4f519 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.simple;
        +17  
        +18  import org.slf4j.Logger;
        +19  import org.slf4j.LoggerFactory;
        +20  import org.springframework.boot.ApplicationRunner;
        +21  import org.springframework.boot.SpringApplication;
        +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +23  import org.springframework.context.annotation.Bean;
        +24  
        +25  @SpringBootApplication
        +26  public class MybatisSpringNativeSampleApplication {
        +27  
        +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +29  
        +30    public static void main(String[] args) {
        +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +32    }
        +33  
        +34    @Bean
        +35    ApplicationRunner runner(CityMapper mapper) {
        +36      return args -> {
        +37        City newCity = new City(null, "NYC", "NY", "USA");
        +38        mapper.insert(newCity);
        +39        log.info("New city: {}", newCity);
        +40        mapper.findAll().forEach(x -> log.info("{}", x));
        +41      };
        +42    }
        +43  
        +44  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html new file mode 100644 index 0000000..45eaa0e --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.simple + + + +

        org.mybatis.spring.nativex.sample.simple

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html new file mode 100644 index 0000000..d89b844 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/simple/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.simple + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.simple

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html new file mode 100644 index 0000000..f33647f --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.sqlprovider;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html new file mode 100644 index 0000000..b214e42 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/CityMapper.html @@ -0,0 +1,70 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.sqlprovider;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.InsertProvider;
        +21  import org.apache.ibatis.annotations.Mapper;
        +22  import org.apache.ibatis.annotations.Options;
        +23  import org.apache.ibatis.annotations.SelectProvider;
        +24  
        +25  @Mapper
        +26  public interface CityMapper {
        +27  
        +28    @InsertProvider(InsertSqlProvider.class)
        +29    @Options(useGeneratedKeys = true, keyProperty = "id")
        +30    void insert(City city);
        +31  
        +32    @SelectProvider(type = SelectSqlProvider.class, method = "provideSqlForFindAll")
        +33    Collection<City> findAll();
        +34  
        +35    class InsertSqlProvider {
        +36      private InsertSqlProvider() {
        +37        // NOP
        +38      }
        +39  
        +40      @SuppressWarnings({ "java:S3400", "unused" })
        +41      public static String provideSql() {
        +42        return "INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})";
        +43      }
        +44    }
        +45  
        +46    class SelectSqlProvider {
        +47      private SelectSqlProvider() {
        +48        // NOP
        +49      }
        +50  
        +51      @SuppressWarnings({ "java:S3400", "unused" })
        +52      public static String provideSqlForFindAll() {
        +53        return "SELECT id, name, state, country FROM city ORDER BY id";
        +54      }
        +55    }
        +56  
        +57  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..dc6c203 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.sqlprovider;
        +17  
        +18  import org.slf4j.Logger;
        +19  import org.slf4j.LoggerFactory;
        +20  import org.springframework.boot.ApplicationRunner;
        +21  import org.springframework.boot.SpringApplication;
        +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +23  import org.springframework.context.annotation.Bean;
        +24  
        +25  @SpringBootApplication
        +26  public class MybatisSpringNativeSampleApplication {
        +27  
        +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +29  
        +30    public static void main(String[] args) {
        +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +32    }
        +33  
        +34    @Bean
        +35    ApplicationRunner runner(CityMapper mapper) {
        +36      return args -> {
        +37        City newCity = new City(null, "NYC", "NY", "USA");
        +38        mapper.insert(newCity);
        +39        log.info("New city: {}", newCity);
        +40        mapper.findAll().forEach(x -> log.info("{}", x));
        +41      };
        +42    }
        +43  
        +44  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html new file mode 100644 index 0000000..60acd96 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-frame.html @@ -0,0 +1,33 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.sqlprovider + + + +

        org.mybatis.spring.nativex.sample.sqlprovider

        + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html new file mode 100644 index 0000000..9ffdf71 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/sqlprovider/package-summary.html @@ -0,0 +1,127 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.sqlprovider + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.sqlprovider

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html new file mode 100644 index 0000000..17416a7 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/City.html @@ -0,0 +1,86 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.thymeleaf;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City() {
        +26      // NOP
        +27    }
        +28  
        +29    public City(Integer id, String name, String state, String country) {
        +30      this.id = id;
        +31      this.name = name;
        +32      this.state = state;
        +33      this.country = country;
        +34    }
        +35  
        +36    public Integer getId() {
        +37      return id;
        +38    }
        +39  
        +40    public void setId(Integer id) {
        +41      this.id = id;
        +42    }
        +43  
        +44    public String getName() {
        +45      return name;
        +46    }
        +47  
        +48    public void setName(String name) {
        +49      this.name = name;
        +50    }
        +51  
        +52    public String getState() {
        +53      return state;
        +54    }
        +55  
        +56    public void setState(String state) {
        +57      this.state = state;
        +58    }
        +59  
        +60    public String getCountry() {
        +61      return country;
        +62    }
        +63  
        +64    public void setCountry(String country) {
        +65      this.country = country;
        +66    }
        +67  
        +68    @Override
        +69    public String toString() {
        +70      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +71          + '}';
        +72    }
        +73  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html new file mode 100644 index 0000000..5ce75a8 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.thymeleaf;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.InsertProvider;
        +21  import org.apache.ibatis.annotations.Mapper;
        +22  import org.apache.ibatis.annotations.Options;
        +23  import org.apache.ibatis.annotations.SelectProvider;
        +24  
        +25  @Mapper
        +26  public interface CityMapper {
        +27  
        +28    @InsertProvider
        +29    @Options(useGeneratedKeys = true, keyProperty = "id")
        +30    void insert(City city);
        +31  
        +32    @SelectProvider
        +33    Collection<City> findAll();
        +34  
        +35  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..23d71ec --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,78 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.thymeleaf;
        +17  
        +18  import org.mybatis.scripting.thymeleaf.SqlGenerator;
        +19  import org.mybatis.scripting.thymeleaf.SqlGeneratorConfig;
        +20  import org.mybatis.scripting.thymeleaf.processor.BindVariableRender;
        +21  import org.mybatis.spring.nativex.MyBatisResourcesScan;
        +22  import org.slf4j.Logger;
        +23  import org.slf4j.LoggerFactory;
        +24  import org.springframework.boot.ApplicationRunner;
        +25  import org.springframework.boot.SpringApplication;
        +26  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +27  import org.springframework.context.annotation.Bean;
        +28  import org.springframework.jdbc.core.BeanPropertyRowMapper;
        +29  import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource;
        +30  import org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations;
        +31  import org.springframework.jdbc.support.GeneratedKeyHolder;
        +32  import org.springframework.jdbc.support.KeyHolder;
        +33  
        +34  @MyBatisResourcesScan(reflectionTypePackages = "org.mybatis.spring.nativex.sample.thymeleaf", resourceLocationPatterns = "sqls/**/*.sql")
        +35  @SpringBootApplication
        +36  public class MybatisSpringNativeSampleApplication {
        +37  
        +38    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +39  
        +40    public static void main(String[] args) {
        +41      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +42    }
        +43  
        +44    @Bean
        +45    ApplicationRunner runner(NamedParameterJdbcOperations operations, SqlGenerator sqlGenerator) {
        +46      return args -> {
        +47        City newCity = new City(null, "NYC", "NY", "USA");
        +48        KeyHolder keyHolder = new GeneratedKeyHolder();
        +49        operations.update(sqlGenerator.generate("sqls/city/city-insert.sql", newCity),
        +50            new BeanPropertySqlParameterSource(newCity), keyHolder);
        +51        newCity.setId(keyHolder.getKeyAs(Integer.class));
        +52        log.info("New city: {}", newCity);
        +53        operations
        +54            .query(sqlGenerator.generate("sqls/city/city-findAll.sql", null), new BeanPropertyRowMapper<>(City.class))
        +55            .forEach(x -> log.info("{}", x));
        +56      };
        +57    }
        +58  
        +59    @Bean
        +60    SqlGenerator sqlGenerator() {
        +61      return new SqlGenerator(SqlGeneratorConfig.newInstanceWithCustomizer(
        +62          c -> c.getDialect().setBindVariableRender(BindVariableRender.BuiltIn.SPRING_NAMED_PARAMETER.getType())));
        +63    }
        +64  
        +65  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html new file mode 100644 index 0000000..d762e38 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.thymeleaf + + + +

        org.mybatis.spring.nativex.sample.thymeleaf

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html new file mode 100644 index 0000000..e51ca24 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/thymeleaf/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.thymeleaf + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.thymeleaf

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/City.html new file mode 100644 index 0000000..e9d1d07 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.velocity;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html new file mode 100644 index 0000000..3f452d6 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/CityMapper.html @@ -0,0 +1,48 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.velocity;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.Insert;
        +21  import org.apache.ibatis.annotations.Mapper;
        +22  import org.apache.ibatis.annotations.Options;
        +23  import org.apache.ibatis.annotations.Select;
        +24  
        +25  @Mapper
        +26  public interface CityMapper {
        +27  
        +28    @Insert("INSERT INTO city (name, state, country) VALUES(@{name}, @{state}, @{country})")
        +29    @Options(useGeneratedKeys = true, keyProperty = "id")
        +30    void insert(City city);
        +31  
        +32    @Select("SELECT id, name, state, country FROM city ORDER BY id")
        +33    Collection<City> findAll();
        +34  
        +35  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..6dfd202 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.velocity;
        +17  
        +18  import org.slf4j.Logger;
        +19  import org.slf4j.LoggerFactory;
        +20  import org.springframework.boot.ApplicationRunner;
        +21  import org.springframework.boot.SpringApplication;
        +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +23  import org.springframework.context.annotation.Bean;
        +24  
        +25  @SpringBootApplication
        +26  public class MybatisSpringNativeSampleApplication {
        +27  
        +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +29  
        +30    public static void main(String[] args) {
        +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +32    }
        +33  
        +34    @Bean
        +35    ApplicationRunner runner(CityMapper mapper) {
        +36      return args -> {
        +37        City newCity = new City(null, "NYC", "NY", "USA");
        +38        mapper.insert(newCity);
        +39        log.info("New city: {}", newCity);
        +40        mapper.findAll().forEach(x -> log.info("{}", x));
        +41      };
        +42    }
        +43  
        +44  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html new file mode 100644 index 0000000..390c35e --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.velocity + + + +

        org.mybatis.spring.nativex.sample.velocity

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html new file mode 100644 index 0000000..ab33533 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/velocity/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.velocity + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.velocity

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/City.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/City.html new file mode 100644 index 0000000..0be9f86 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/City.html @@ -0,0 +1,82 @@ + + + +City xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.xml;
        +17  
        +18  public class City {
        +19  
        +20    private Integer id;
        +21    private String name;
        +22    private String state;
        +23    private String country;
        +24  
        +25    public City(Integer id, String name, String state, String country) {
        +26      this.id = id;
        +27      this.name = name;
        +28      this.state = state;
        +29      this.country = country;
        +30    }
        +31  
        +32    public Integer getId() {
        +33      return id;
        +34    }
        +35  
        +36    public void setId(Integer id) {
        +37      this.id = id;
        +38    }
        +39  
        +40    public String getName() {
        +41      return name;
        +42    }
        +43  
        +44    public void setName(String name) {
        +45      this.name = name;
        +46    }
        +47  
        +48    public String getState() {
        +49      return state;
        +50    }
        +51  
        +52    public void setState(String state) {
        +53      this.state = state;
        +54    }
        +55  
        +56    public String getCountry() {
        +57      return country;
        +58    }
        +59  
        +60    public void setCountry(String country) {
        +61      this.country = country;
        +62    }
        +63  
        +64    @Override
        +65    public String toString() {
        +66      return "City{" + "id=" + id + ", name='" + name + '\'' + ", state='" + state + '\'' + ", country='" + country + '\''
        +67          + '}';
        +68    }
        +69  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html new file mode 100644 index 0000000..e2d458b --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/CityMapper.html @@ -0,0 +1,42 @@ + + + +CityMapper xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.xml;
        +17  
        +18  import java.util.Collection;
        +19  
        +20  import org.apache.ibatis.annotations.Mapper;
        +21  
        +22  @Mapper
        +23  public interface CityMapper {
        +24  
        +25    void insert(City city);
        +26  
        +27    Collection<City> findAll();
        +28  
        +29  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html new file mode 100644 index 0000000..62cfa94 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/MybatisSpringNativeSampleApplication.html @@ -0,0 +1,57 @@ + + + +MybatisSpringNativeSampleApplication xref + + + +
        +1   /*
        +2    *    Copyright 2022 the original author or authors.
        +3    *
        +4    *    Licensed under the Apache License, Version 2.0 (the "License");
        +5    *    you may not use this file except in compliance with the License.
        +6    *    You may obtain a copy of the License at
        +7    *
        +8    *       https://www.apache.org/licenses/LICENSE-2.0
        +9    *
        +10   *    Unless required by applicable law or agreed to in writing, software
        +11   *    distributed under the License is distributed on an "AS IS" BASIS,
        +12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        +13   *    See the License for the specific language governing permissions and
        +14   *    limitations under the License.
        +15   */
        +16  package org.mybatis.spring.nativex.sample.xml;
        +17  
        +18  import org.slf4j.Logger;
        +19  import org.slf4j.LoggerFactory;
        +20  import org.springframework.boot.ApplicationRunner;
        +21  import org.springframework.boot.SpringApplication;
        +22  import org.springframework.boot.autoconfigure.SpringBootApplication;
        +23  import org.springframework.context.annotation.Bean;
        +24  
        +25  @SpringBootApplication
        +26  public class MybatisSpringNativeSampleApplication {
        +27  
        +28    private static final Logger log = LoggerFactory.getLogger("ApLog");
        +29  
        +30    public static void main(String[] args) {
        +31      SpringApplication.run(MybatisSpringNativeSampleApplication.class, args);
        +32    }
        +33  
        +34    @Bean
        +35    ApplicationRunner runner(CityMapper mapper) {
        +36      return args -> {
        +37        City newCity = new City(null, "NYC", "NY", "USA");
        +38        mapper.insert(newCity);
        +39        log.info("New city: {}", newCity);
        +40        mapper.findAll().forEach(x -> log.info("{}", x));
        +41      };
        +42    }
        +43  
        +44  }
        +
        +
        + + + diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html new file mode 100644 index 0000000..afc3ee4 --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/package-frame.html @@ -0,0 +1,27 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.xml + + + +

        org.mybatis.spring.nativex.sample.xml

        +
        +

        Classes

        + +
        + + \ No newline at end of file diff --git a/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html new file mode 100644 index 0000000..47be44f --- /dev/null +++ b/zh_CN/xref/org/mybatis/spring/nativex/sample/xml/package-summary.html @@ -0,0 +1,117 @@ + + + + + + + mybatis-spring-native 0.1.0-SNAPSHOT Reference Package org.mybatis.spring.nativex.sample.xml + + + + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        Package org.mybatis.spring.nativex.sample.xml

        +
        +
        + +
        + +
        + + + + +
        mybatis-spring-native 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/overview-frame.html b/zh_CN/xref/overview-frame.html new file mode 100644 index 0000000..12d44d1 --- /dev/null +++ b/zh_CN/xref/overview-frame.html @@ -0,0 +1,24 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + +

        mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference

        + +
        +

        Packages

        + +
        +

         

        + + + diff --git a/zh_CN/xref/overview-summary.html b/zh_CN/xref/overview-summary.html new file mode 100644 index 0000000..214472b --- /dev/null +++ b/zh_CN/xref/overview-summary.html @@ -0,0 +1,92 @@ + + + + + + + mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference + + + +
        + + + + +
        mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
        +
        + + +
        +

        mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference

        +
        +
        + + + + + + + + + + + + +
        Packages 
        Package
        + org.mybatis.spring.nativex +
        +
        + +
        + + + + +
        mybatis-spring-native-extensions 0.1.0-SNAPSHOT Reference
        +
        + + + + + \ No newline at end of file diff --git a/zh_CN/xref/stylesheet.css b/zh_CN/xref/stylesheet.css new file mode 100644 index 0000000..9e10f29 --- /dev/null +++ b/zh_CN/xref/stylesheet.css @@ -0,0 +1,626 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} + +/* JXR style sheet */ +a.jxr_linenumber:link { + color: #00f; +} + +a.jxr_linenumber:visited { + color: #00a; +} + +a.jxr_linenumber:active, a.jxr_linenumber:hover { + color: #f30 !important; +} + +em.comment { + color: #390; +} + +.string { + color: #009; +} + +#overview { + padding: 2px; + font-size: 90%; + font-family: Helvetica, Arial, sans-serif; +} + +hr { + color: #000; +} + +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} +