Spring Boot CLI - Quick Guide



Spring Boot CLI - Overview

The Spring Boot CLI is a Command Line Interface for Spring Boot. It can be used for a quick start with Spring. It can run Groovy scripts which means that a developer need not write boilerplate code; all that is needed is focus on business logic. Spring Boot CLI is the fastest way to create a Spring-based application.

Features

In this section, we will look at the different features of Spring Boot CL −

  • It provides an interface to run and test Spring Boot Application from command prompt.

  • It internally use Spring Boot Starter and Spring Boot AutoConfigurate components in order to resolve all dependencies and executes the application.

  • It contains Groovy compiler and Grape Dependency Manager.

  • It supports Groovy Scripts without external Groovy installation.

  • It adds Spring Boot defaults and resolve all dependencies automatically.

Spring Boot CLI - Environment Setup

Spring is a Java-based framework; hence, we need to set up JDK first. Following are the steps needed to setup Spring Boot CLI along with JDK installation.

Step 1 Setup Java Development Kit (JDK)

You can download the latest version of SDK from Oracle's Java site − Java SE Downloads. You will find instructions for installing JDK in downloaded files, follow the given instructions to install and configure the setup. Finally set PATH and JAVA_HOME environment variables to refer to the directory that contains java and javac, typically java_install_dir/bin and java_install_dir respectively.

If you are running Windows and have installed the JDK in C:\jdk-11.0.11, you would have to put the following line in your C:\autoexec.bat file.

set PATH=C:\jdk-11.0.11;%PATH% 
set JAVA_HOME=C:\jdk-11.0.11 

Alternatively, on Windows NT/2000/XP, you will have to right-click on My Computer, select Properties → Advanced → Environment Variables. Then, you will have to update the PATH value and click the OK button.

On Unix (Solaris, Linux, etc.), if the SDK is installed in /usr/local/jdk-11.0.11 and you use the C shell, you will have to put the following into your .cshrc file.

setenv PATH /usr/local/jdk-11.0.11/bin:$PATH 
setenv JAVA_HOME /usr/local/jdk-11.0.11

Step 2 - Install Spring Boot CLI

You can download the latest version of Spring Boot CLI API as ZIP archive from https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/. Once you download the installation, unpack the zip distribution into a convenient location. For example, in E:\Test\spring-boot-cli-2.6.3 on Windows, or /usr/local/spring-boot-cli-2.6.3 on Linux/Unix.

Make sure you set your CLASSPATH variable on this directory properly otherwise you will face a problem while running your application.

Or set the path in command prompt temporarily to run the spring boot application as shown below −

E:/Test/> set path=E:\Test\spring-boot-cli-2.6.3-bin\spring-2.6.3\bin;%PATH%

Step 3 - Verify installation

Run the following command on command prompt to verify the installation −

E:/Test/> spring --version

It should print the following output confirming the successful installation −

Spring CLI v2.6.3

Spring Boot CLI - Hello World Example

In this example, we'll create a Spring Boot + MVC + Rest based Web application.

Step 1: Create source Folder

Create a folder FirstApplication in E:\Test folder.

Step 2: Create Source File

Create FirstApplication.groovy file in E:\Test folder with following source code.

@RestController
class FirstApplication {
   @RequestMapping("/")
   String welcome() {
      "Welcome to TutorialsPoint.Com"
   }
}

Step 3: Run the application

Type the following command

E:/Test/> spring run FirstApplication.groovy

Now Spring Boot CLI will come into action, download required dependencies, run the embedded tomcat, deploy the application and start it. You can see the following output on console.

E:\Test>spring run FirstApplication.groovy
Resolving dependencies...............................

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.6.3)

2022-02-03 11:12:42.683  INFO 6956 --- [       runner-0] o.s.boot.SpringApplication               : Starting application using Java 11.0.11 on DESKTOP-86KD9FC with PID 6956 (started by intel in F:\Test)
2022-02-03 11:12:42.710  INFO 6956 --- [       runner-0] o.s.boot.SpringApplication               : No active profile set, falling back to default profiles: default
2022-02-03 11:12:45.110  INFO 6956 --- [       runner-0] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2022-02-03 11:12:45.138  INFO 6956 --- [       runner-0] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2022-02-03 11:12:45.139  INFO 6956 --- [       runner-0] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.56]
2022-02-03 11:12:45.229  INFO 6956 --- [       runner-0] org.apache.catalina.loader.WebappLoader  : Unknown class loader [org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader@8646db9] of class [class org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader]
2022-02-03 11:12:45.333  INFO 6956 --- [       runner-0] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2022-02-03 11:12:45.333  INFO 6956 --- [       runner-0] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2124 ms
2022-02-03 11:12:46.901  INFO 6956 --- [       runner-0] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2022-02-03 11:12:46.930  INFO 6956 --- [       runner-0] o.s.boot.SpringApplication               : Started application in 5.416 seconds (JVM running for 49.049)
2022-02-03 11:13:48.910  INFO 6956 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-02-03 11:13:48.912  INFO 6956 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2022-02-03 11:13:48.915  INFO 6956 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 3 ms

Step 4: Browse the application in Browser

Our spring based rest application is now ready. Open url as "http://localhost:8080/" and you will see the following output.

Welcome to TutorialsPoint.Com

Points to consider

Following actions are taken by Spring CLI.

  • All dependency JARs are downloaded for the first time only.

  • Spring CLI automatically detects which dependency JARs are to be downloaded based on the classes and annotations used in code.

  • Finally it compiles the code, deploy the war on a embedded tomcat, start embedded tomcat server on the default port 8080.

"grab" Dependency Deduction

Standard Groovy codebase contains a @Grab annotation so that dependencies on third-party libraries can be declared. Using @Grab annotation, Grape Dependency Manager downloads jar in similar fashion as that of Maven/Gradle without any build tool. Spring Boot attempts to deduce the required libraries based on code. For example, use of @RestController tells that "Tomcat" and "Spring MVC" libraries are to be grabbed.

Grab Hints

Following table details the hints that Spring Boot uses to download third party libraries −

Sr.No. Hint & Dependency to Download/Link
1

JdbcTemplate, NamedParameterJdbcTemplate, DataSource

JDBC Application

2

@EnableJms

JMS Application

3

@EnableCaching

Caching abstraction

4

@Test

JUnit

5

@EnableRabbit

RabbitMQ

6

@EnableReactor

Project Reactor

7

extends Specification

Spock test

8

@EnableBatchProcessing

Spring Batch

9

@MessageEndpoint, @EnableIntegrationPatterns

Spring Integration

10

@EnableDeviceResolver

Spring Mobile

11

@Controller, @RestController, @EnableWebMvc

Spring MVC + Embedded Tomcat

12

@EnableWebSecurity

Spring Security

13

@EnableTransactionManagement

Spring Transaction Management

"grab" Co-ordinates Deduction

We can specify a dependency using @Grab annotation even without specifying group or version. For example,

@Grab('antlr')

Now Spring Boot CLI will download 2.7.7 version of antlr as it is present in Spring Boot's default dependency metadata for 2.6.3 version. Spring Boot maintains all dependency versions by default which are provided in its CLI, Maven dependency management and Gradle plugin. Whenever we declare a dependency of any of those artifacts present in efault dependency metadata without declaring a version, the version listed in its table will be used.

Following table shows all the dependencies and their versions included in the default metadata for Spring Boot CLI 2.6.3 version.

Group Id Artifact Id Version
antlrantlr2.7.7
ch.qos.logbacklogback-access1.2.10
ch.qos.logbacklogback-classic1.2.10
ch.qos.logbacklogback-core1.2.10
com.atomikostransactions-jdbc4.0.6
com.atomikostransactions-jms4.0.6
com.atomikostransactions-jta4.0.6
com.couchbase.clientjava-client3.2.4
com.datastax.ossjava-driver-core4.13.0
com.datastax.ossjava-driver-core-shaded4.13.0
com.datastax.ossjava-driver-mapper-processor4.13.0
com.datastax.ossjava-driver-mapper-runtime4.13.0
com.datastax.ossjava-driver-metrics-micrometer4.13.0
com.datastax.ossjava-driver-metrics-microprofile4.13.0
com.datastax.ossjava-driver-query-builder4.13.0
com.datastax.ossjava-driver-shaded-guava25.1-jre-graal-sub-1
com.datastax.ossjava-driver-test-infra4.13.0
com.datastax.ossnative-protocol1.5.0
com.fasterxmlclassmate1.5.1
com.fasterxml.jackson.corejackson-annotations2.13.1
com.fasterxml.jackson.corejackson-core2.13.1
com.fasterxml.jackson.corejackson-databind2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-avro2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-cbor2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-csv2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-ion2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-properties2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-protobuf2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-smile2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-toml2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-xml2.13.1
com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.13.1
com.fasterxml.jackson.datatypejackson-datatype-eclipse-collections2.13.1
com.fasterxml.jackson.datatypejackson-datatype-guava2.13.1
com.fasterxml.jackson.datatypejackson-datatype-hibernate42.13.1
com.fasterxml.jackson.datatypejackson-datatype-hibernate52.13.1
com.fasterxml.jackson.datatypejackson-datatype-hibernate5-jakarta2.13.1
com.fasterxml.jackson.datatypejackson-datatype-hppc2.13.1
com.fasterxml.jackson.datatypejackson-datatype-jakarta-jsonp2.13.1
com.fasterxml.jackson.datatypejackson-datatype-jaxrs2.13.1
com.fasterxml.jackson.datatypejackson-datatype-jdk82.13.1
com.fasterxml.jackson.datatypejackson-datatype-joda2.13.1
com.fasterxml.jackson.datatypejackson-datatype-joda-money2.13.1
com.fasterxml.jackson.datatypejackson-datatype-json-org2.13.1
com.fasterxml.jackson.datatypejackson-datatype-jsr3102.13.1
com.fasterxml.jackson.datatypejackson-datatype-jsr3532.13.1
com.fasterxml.jackson.datatypejackson-datatype-pcollections2.13.1
com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-base2.13.1
com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-cbor-provider2.13.1
com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-json-provider2.13.1
com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-smile-provider2.13.1
com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-xml-provider2.13.1
com.fasterxml.jackson.jakarta.rsjackson-jakarta-rs-yaml-provider2.13.1
com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.13.1
com.fasterxml.jackson.jaxrsjackson-jaxrs-cbor-provider2.13.1
com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.13.1
com.fasterxml.jackson.jaxrsjackson-jaxrs-smile-provider2.13.1
com.fasterxml.jackson.jaxrsjackson-jaxrs-xml-provider2.13.1
com.fasterxml.jackson.jaxrsjackson-jaxrs-yaml-provider2.13.1
com.fasterxml.jackson.jrjackson-jr-all2.13.1
com.fasterxml.jackson.jrjackson-jr-annotation-support2.13.1
com.fasterxml.jackson.jrjackson-jr-objects2.13.1
com.fasterxml.jackson.jrjackson-jr-retrofit22.13.1
com.fasterxml.jackson.jrjackson-jr-stree2.13.1
com.fasterxml.jackson.modulejackson-module-afterburner2.13.1
com.fasterxml.jackson.modulejackson-module-blackbird2.13.1
com.fasterxml.jackson.modulejackson-module-guice2.13.1
com.fasterxml.jackson.modulejackson-module-jakarta-xmlbind-annotations2.13.1
com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.13.1
com.fasterxml.jackson.modulejackson-module-jsonSchema2.13.1
com.fasterxml.jackson.modulejackson-module-kotlin2.13.1
com.fasterxml.jackson.modulejackson-module-mrbean2.13.1
com.fasterxml.jackson.modulejackson-module-no-ctor-deser2.13.1
com.fasterxml.jackson.modulejackson-module-osgi2.13.1
com.fasterxml.jackson.modulejackson-module-parameter-names2.13.1
com.fasterxml.jackson.modulejackson-module-paranamer2.13.1
com.fasterxml.jackson.modulejackson-module-scala_2.112.13.1
com.fasterxml.jackson.modulejackson-module-scala_2.122.13.1
com.fasterxml.jackson.modulejackson-module-scala_2.132.13.1
com.fasterxml.jackson.modulejackson-module-scala_32.13.1
com.github.ben-manes.caffeinecaffeine2.9.3
com.github.ben-manes.caffeineguava2.9.3
com.github.ben-manes.caffeinejcache2.9.3
com.github.ben-manes.caffeinesimulator2.9.3
com.github.mxab.thymeleaf.extrasthymeleaf-extras-data-attribute2.0.1
com.google.appengineappengine-api-1.0-sdk1.9.93
com.google.cloudcloud-spanner-r2dbc1.1.0
com.google.code.gsongson2.8.9
com.h2databaseh21.4.200
com.hazelcasthazelcast4.2.4
com.hazelcasthazelcast-hibernate522.2.1
com.hazelcasthazelcast-hibernate532.2.1
com.hazelcasthazelcast-spring4.2.4
com.ibm.db2jcc11.5.7.0
com.jayway.jsonpathjson-path2.6.0
com.jayway.jsonpathjson-path-assert2.6.0
com.microsoft.sqlservermssql-jdbc9.4.1.jre8
com.oracle.database.haons21.3.0.0
com.oracle.database.hasimplefan21.3.0.0
com.oracle.database.jdbcojdbc1121.3.0.0
com.oracle.database.jdbcojdbc11-production21.3.0.0
com.oracle.database.jdbcojdbc821.3.0.0
com.oracle.database.jdbcojdbc8-production21.3.0.0
com.oracle.database.jdbcrsi21.3.0.0
com.oracle.database.jdbcucp21.3.0.0
com.oracle.database.jdbcucp1121.3.0.0
com.oracle.database.jdbc.debugojdbc11-debug21.3.0.0
com.oracle.database.jdbc.debugojdbc11-observability-debug21.3.0.0
com.oracle.database.jdbc.debugojdbc11_g21.3.0.0
com.oracle.database.jdbc.debugojdbc11dms_g21.3.0.0
com.oracle.database.jdbc.debugojdbc8-debug21.3.0.0
com.oracle.database.jdbc.debugojdbc8-observability-debug21.3.0.0
com.oracle.database.jdbc.debugojdbc8_g21.3.0.0
com.oracle.database.jdbc.debugojdbc8dms_g21.3.0.0
com.oracle.database.nlsorai18n21.3.0.0
com.oracle.database.observabilitydms21.3.0.0
com.oracle.database.observabilityojdbc11-observability21.3.0.0
com.oracle.database.observabilityojdbc11dms21.3.0.0
com.oracle.database.observabilityojdbc8-observability21.3.0.0
com.oracle.database.observabilityojdbc8dms21.3.0.0
com.oracle.database.r2dbcoracle-r2dbc0.1.0
com.oracle.database.securityoraclepki21.3.0.0
com.oracle.database.securityosdt_cert21.3.0.0
com.oracle.database.securityosdt_core21.3.0.0
com.oracle.database.xmlxdb21.3.0.0
com.oracle.database.xmlxmlparserv221.3.0.0
com.querydslquerydsl-apt5.0.0
com.querydslquerydsl-codegen5.0.0
com.querydslquerydsl-codegen-utils5.0.0
com.querydslquerydsl-collections5.0.0
com.querydslquerydsl-core5.0.0
com.querydslquerydsl-guava5.0.0
com.querydslquerydsl-hibernate-search5.0.0
com.querydslquerydsl-jdo5.0.0
com.querydslquerydsl-jpa5.0.0
com.querydslquerydsl-jpa-codegen5.0.0
com.querydslquerydsl-kotlin5.0.0
com.querydslquerydsl-kotlin-codegen5.0.0
com.querydslquerydsl-lucene35.0.0
com.querydslquerydsl-lucene45.0.0
com.querydslquerydsl-lucene55.0.0
com.querydslquerydsl-mongodb5.0.0
com.querydslquerydsl-scala5.0.0
com.querydslquerydsl-spatial5.0.0
com.querydslquerydsl-sql5.0.0
com.querydslquerydsl-sql-codegen5.0.0
com.querydslquerydsl-sql-spatial5.0.0
com.querydslquerydsl-sql-spring5.0.0
com.rabbitmqamqp-client5.13.1
com.rabbitmqstream-client0.4.0
com.samskivertjmustache1.15
com.sendgridsendgrid-java4.7.6
com.squareup.okhttp3logging-interceptor3.14.9
com.squareup.okhttp3mockwebserver3.14.9
com.squareup.okhttp3okcurl3.14.9
com.squareup.okhttp3okhttp3.14.9
com.squareup.okhttp3okhttp-dnsoverhttps3.14.9
com.squareup.okhttp3okhttp-sse3.14.9
com.squareup.okhttp3okhttp-testing-support3.14.9
com.squareup.okhttp3okhttp-tls3.14.9
com.squareup.okhttp3okhttp-urlconnection3.14.9
com.sun.activationjakarta.activation1.2.2
com.sun.mailjakarta.mail1.6.7
com.sun.xml.messaging.saajsaaj-impl1.5.3
com.unboundidunboundid-ldapsdk4.0.14
com.zaxxerHikariCP4.0.3
commons-codeccommons-codec1.15
commons-poolcommons-pool1.6
de.flapdoodle.embedde.flapdoodle.embed.mongo3.0.0
dev.mikur2dbc-mysql0.8.2.RELEASE
io.dropwizard.metricsmetrics-annotation4.2.7
io.dropwizard.metricsmetrics-caffeine4.2.7
io.dropwizard.metricsmetrics-caffeine34.2.7
io.dropwizard.metricsmetrics-collectd4.2.7
io.dropwizard.metricsmetrics-core4.2.7
io.dropwizard.metricsmetrics-ehcache4.2.7
io.dropwizard.metricsmetrics-graphite4.2.7
io.dropwizard.metricsmetrics-healthchecks4.2.7
io.dropwizard.metricsmetrics-httpasyncclient4.2.7
io.dropwizard.metricsmetrics-httpclient4.2.7
io.dropwizard.metricsmetrics-httpclient54.2.7
io.dropwizard.metricsmetrics-jakarta-servlet4.2.7
io.dropwizard.metricsmetrics-jakarta-servlets4.2.7
io.dropwizard.metricsmetrics-jcache4.2.7
io.dropwizard.metricsmetrics-jdbi4.2.7
io.dropwizard.metricsmetrics-jdbi34.2.7
io.dropwizard.metricsmetrics-jersey24.2.7
io.dropwizard.metricsmetrics-jersey34.2.7
io.dropwizard.metricsmetrics-jetty104.2.7
io.dropwizard.metricsmetrics-jetty114.2.7
io.dropwizard.metricsmetrics-jetty94.2.7
io.dropwizard.metricsmetrics-jmx4.2.7
io.dropwizard.metricsmetrics-json4.2.7
io.dropwizard.metricsmetrics-jvm4.2.7
io.dropwizard.metricsmetrics-log4j24.2.7
io.dropwizard.metricsmetrics-logback4.2.7
io.dropwizard.metricsmetrics-servlet4.2.7
io.dropwizard.metricsmetrics-servlets4.2.7
io.lettucelettuce-core6.1.6.RELEASE
io.micrometermicrometer-core1.8.2
io.micrometermicrometer-jersey21.8.2
io.micrometermicrometer-registry-appoptics1.8.2
io.micrometermicrometer-registry-atlas1.8.2
io.micrometermicrometer-registry-azure-monitor1.8.2
io.micrometermicrometer-registry-cloudwatch1.8.2
io.micrometermicrometer-registry-cloudwatch21.8.2
io.micrometermicrometer-registry-datadog1.8.2
io.micrometermicrometer-registry-dynatrace1.8.2
io.micrometermicrometer-registry-elastic1.8.2
io.micrometermicrometer-registry-ganglia1.8.2
io.micrometermicrometer-registry-graphite1.8.2
io.micrometermicrometer-registry-health1.8.2
io.micrometermicrometer-registry-humio1.8.2
io.micrometermicrometer-registry-influx1.8.2
io.micrometermicrometer-registry-jmx1.8.2
io.micrometermicrometer-registry-kairos1.8.2
io.micrometermicrometer-registry-new-relic1.8.2
io.micrometermicrometer-registry-opentsdb1.8.2
io.micrometermicrometer-registry-prometheus1.8.2
io.micrometermicrometer-registry-signalfx1.8.2
io.micrometermicrometer-registry-stackdriver1.8.2
io.micrometermicrometer-registry-statsd1.8.2
io.micrometermicrometer-registry-wavefront1.8.2
io.micrometermicrometer-test1.8.2
io.nettynetty-all4.1.73.Final
io.nettynetty-buffer4.1.73.Final
io.nettynetty-codec4.1.73.Final
io.nettynetty-codec-dns4.1.73.Final
io.nettynetty-codec-haproxy4.1.73.Final
io.nettynetty-codec-http4.1.73.Final
io.nettynetty-codec-http24.1.73.Final
io.nettynetty-codec-memcache4.1.73.Final
io.nettynetty-codec-mqtt4.1.73.Final
io.nettynetty-codec-redis4.1.73.Final
io.nettynetty-codec-smtp4.1.73.Final
io.nettynetty-codec-socks4.1.73.Final
io.nettynetty-codec-stomp4.1.73.Final
io.nettynetty-codec-xml4.1.73.Final
io.nettynetty-common4.1.73.Final
io.nettynetty-dev-tools4.1.73.Final
io.nettynetty-example4.1.73.Final
io.nettynetty-handler4.1.73.Final
io.nettynetty-handler-proxy4.1.73.Final
io.nettynetty-resolver4.1.73.Final
io.nettynetty-resolver-dns4.1.73.Final
io.nettynetty-resolver-dns-classes-macos4.1.73.Final
io.nettynetty-resolver-dns-native-macos4.1.73.Final
io.nettynetty-tcnative2.0.46.Final
io.nettynetty-tcnative-boringssl-static2.0.46.Final
io.nettynetty-tcnative-classes2.0.46.Final
io.nettynetty-transport4.1.73.Final
io.nettynetty-transport-classes-epoll4.1.73.Final
io.nettynetty-transport-classes-kqueue4.1.73.Final
io.nettynetty-transport-native-epoll4.1.73.Final
io.nettynetty-transport-native-kqueue4.1.73.Final
io.nettynetty-transport-native-unix-common4.1.73.Final
io.nettynetty-transport-rxtx4.1.73.Final
io.nettynetty-transport-sctp4.1.73.Final
io.nettynetty-transport-udt4.1.73.Final
io.projectreactorreactor-core3.4.14
io.projectreactorreactor-test3.4.14
io.projectreactorreactor-tools3.4.14
io.projectreactor.addonsreactor-adapter3.4.6
io.projectreactor.addonsreactor-extra3.4.6
io.projectreactor.addonsreactor-pool0.2.7
io.projectreactor.kafkareactor-kafka1.3.9
io.projectreactor.kotlinreactor-kotlin-extensions1.1.5
io.projectreactor.nettyreactor-netty1.0.15
io.projectreactor.nettyreactor-netty-core1.0.15
io.projectreactor.nettyreactor-netty-http1.0.15
io.projectreactor.nettyreactor-netty-http-brave1.0.15
io.projectreactor.rabbitmqreactor-rabbitmq1.5.4
io.prometheussimpleclient0.12.0
io.prometheussimpleclient_caffeine0.12.0
io.prometheussimpleclient_common0.12.0
io.prometheussimpleclient_dropwizard0.12.0
io.prometheussimpleclient_graphite_bridge0.12.0
io.prometheussimpleclient_guava0.12.0
io.prometheussimpleclient_hibernate0.12.0
io.prometheussimpleclient_hotspot0.12.0
io.prometheussimpleclient_httpserver0.12.0
io.prometheussimpleclient_jetty0.12.0
io.prometheussimpleclient_jetty_jdk80.12.0
io.prometheussimpleclient_log4j0.12.0
io.prometheussimpleclient_log4j20.12.0
io.prometheussimpleclient_logback0.12.0
io.prometheussimpleclient_pushgateway0.12.0
io.prometheussimpleclient_servlet0.12.0
io.prometheussimpleclient_servlet_jakarta0.12.0
io.prometheussimpleclient_spring_boot0.12.0
io.prometheussimpleclient_spring_web0.12.0
io.prometheussimpleclient_tracer_otel0.12.0
io.prometheussimpleclient_tracer_otel_agent0.12.0
io.prometheussimpleclient_vertx0.12.0
io.r2dbcr2dbc-h20.8.5.RELEASE
io.r2dbcr2dbc-mssql0.8.8.RELEASE
io.r2dbcr2dbc-pool0.8.8.RELEASE
io.r2dbcr2dbc-postgresql0.8.11.RELEASE
io.r2dbcr2dbc-proxy0.8.8.RELEASE
io.r2dbcr2dbc-spi0.8.6.RELEASE
io.reactivexrxjava1.3.8
io.reactivexrxjava-reactive-streams1.2.1
io.reactivex.rxjava2rxjava2.2.21
io.rest-assuredjson-path4.4.0
io.rest-assuredjson-schema-validator4.4.0
io.rest-assuredrest-assured4.4.0
io.rest-assuredscala-support4.4.0
io.rest-assuredspring-mock-mvc4.4.0
io.rest-assuredspring-web-test-client4.4.0
io.rest-assuredxml-path4.4.0
io.rsocketrsocket-core1.1.1
io.rsocketrsocket-load-balancer1.1.1
io.rsocketrsocket-micrometer1.1.1
io.rsocketrsocket-test1.1.1
io.rsocketrsocket-transport-local1.1.1
io.rsocketrsocket-transport-netty1.1.1
io.spring.gradledependency-management-plugin1.0.11.RELEASE
io.undertowundertow-core2.2.14.Final
io.undertowundertow-servlet2.2.14.Final
io.undertowundertow-websockets-jsr2.2.14.Final
jakarta.activationjakarta.activation-api1.2.2
jakarta.annotationjakarta.annotation-api1.3.5
jakarta.jmsjakarta.jms-api2.0.3
jakarta.jsonjakarta.json-api1.1.6
jakarta.json.bindjakarta.json.bind-api1.0.2
jakarta.mailjakarta.mail-api1.6.7
jakarta.management.j2eejakarta.management.j2ee-api1.1.4
jakarta.persistencejakarta.persistence-api2.2.3
jakarta.servletjakarta.servlet-api4.0.4
jakarta.servlet.jsp.jstljakarta.servlet.jsp.jstl-api1.2.7
jakarta.transactionjakarta.transaction-api1.3.3
jakarta.validationjakarta.validation-api2.0.2
jakarta.websocketjakarta.websocket-api1.1.2
jakarta.ws.rsjakarta.ws.rs-api2.1.6
jakarta.xml.bindjakarta.xml.bind-api2.3.3
jakarta.xml.soapjakarta.xml.soap-api1.4.2
jakarta.xml.wsjakarta.xml.ws-api2.3.3
javax.activationjavax.activation-api1.2.0
javax.annotationjavax.annotation-api1.3.2
javax.cachecache-api1.1.1
javax.jmsjavax.jms-api2.0.1
javax.jsonjavax.json-api1.1.4
javax.json.bindjavax.json.bind-api1.0
javax.mailjavax.mail-api1.6.2
javax.moneymoney-api1.1
javax.persistencejavax.persistence-api2.2
javax.servletjavax.servlet-api4.0.1
javax.servletjstl1.2
javax.transactionjavax.transaction-api1.3
javax.validationvalidation-api2.0.1.Final
javax.websocketjavax.websocket-api1.1
javax.xml.bindjaxb-api2.3.1
javax.xml.wsjaxws-api2.3.1
jaxenjaxen1.2.0
junitjunit4.13.2
mysqlmysql-connector-java8.0.28
net.bytebuddybyte-buddy1.11.22
net.bytebuddybyte-buddy-agent1.11.22
net.minidevjson-smart2.4.7
net.sf.ehcacheehcache2.10.9.2
net.sourceforge.htmlunithtmlunit2.54.0
net.sourceforge.jtdsjtds1.3.1
net.sourceforge.nekohtmlnekohtml1.9.22
nz.net.ultraq.thymeleafthymeleaf-layout-dialect3.0.0
org.apache.activemqactivemq-amqp5.16.3
org.apache.activemqactivemq-blueprint5.16.3
org.apache.activemqactivemq-broker5.16.3
org.apache.activemqactivemq-camel5.16.3
org.apache.activemqactivemq-client5.16.3
org.apache.activemqactivemq-console5.16.3
org.apache.activemqactivemq-http5.16.3
org.apache.activemqactivemq-jaas5.16.3
org.apache.activemqactivemq-jdbc-store5.16.3
org.apache.activemqactivemq-jms-pool5.16.3
org.apache.activemqactivemq-kahadb-store5.16.3
org.apache.activemqactivemq-karaf5.16.3
org.apache.activemqactivemq-leveldb-store5.16.3
org.apache.activemqactivemq-log4j-appender5.16.3
org.apache.activemqactivemq-mqtt5.16.3
org.apache.activemqactivemq-openwire-generator5.16.3
org.apache.activemqactivemq-openwire-legacy5.16.3
org.apache.activemqactivemq-osgi5.16.3
org.apache.activemqactivemq-partition5.16.3
org.apache.activemqactivemq-pool5.16.3
org.apache.activemqactivemq-ra5.16.3
org.apache.activemqactivemq-run5.16.3
org.apache.activemqactivemq-runtime-config5.16.3
org.apache.activemqactivemq-shiro5.16.3
org.apache.activemqactivemq-spring5.16.3
org.apache.activemqactivemq-stomp5.16.3
org.apache.activemqactivemq-web5.16.3
org.apache.activemqartemis-amqp-protocol2.19.0
org.apache.activemqartemis-commons2.19.0
org.apache.activemqartemis-core-client2.19.0
org.apache.activemqartemis-jms-client2.19.0
org.apache.activemqartemis-jms-server2.19.0
org.apache.activemqartemis-journal2.19.0
org.apache.activemqartemis-selector2.19.0
org.apache.activemqartemis-server2.19.0
org.apache.activemqartemis-service-extensions2.19.0
org.apache.commonscommons-dbcp22.9.0
org.apache.commonscommons-lang33.12.0
org.apache.commonscommons-pool22.11.1
org.apache.derbyderby10.14.2.0
org.apache.derbyderbyclient10.14.2.0
org.apache.httpcomponentsfluent-hc4.5.13
org.apache.httpcomponentshttpasyncclient4.1.5
org.apache.httpcomponentshttpclient4.5.13
org.apache.httpcomponentshttpclient-cache4.5.13
org.apache.httpcomponentshttpclient-osgi4.5.13
org.apache.httpcomponentshttpclient-win4.5.13
org.apache.httpcomponentshttpcore4.4.15
org.apache.httpcomponentshttpcore-nio4.4.15
org.apache.httpcomponentshttpmime4.5.13
org.apache.httpcomponents.client5httpclient55.1.2
org.apache.httpcomponents.client5httpclient5-cache5.1.2
org.apache.httpcomponents.client5httpclient5-fluent5.1.2
org.apache.httpcomponents.client5httpclient5-win5.1.2
org.apache.httpcomponents.core5httpcore55.1.3
org.apache.httpcomponents.core5httpcore5-h25.1.3
org.apache.httpcomponents.core5httpcore5-reactive5.1.3
org.apache.johnzonjohnzon-core1.2.15
org.apache.johnzonjohnzon-jaxrs1.2.15
org.apache.johnzonjohnzon-jsonb1.2.15
org.apache.johnzonjohnzon-jsonb-extras1.2.15
org.apache.johnzonjohnzon-jsonschema1.2.15
org.apache.johnzonjohnzon-mapper1.2.15
org.apache.johnzonjohnzon-websocket1.2.15
org.apache.kafkaconnect-api3.0.0
org.apache.kafkaconnect-basic-auth-extension3.0.0
org.apache.kafkaconnect-file3.0.0
org.apache.kafkaconnect-json3.0.0
org.apache.kafkaconnect-runtime3.0.0
org.apache.kafkaconnect-transforms3.0.0
org.apache.kafkakafka-clients3.0.0
org.apache.kafkakafka-log4j-appender3.0.0
org.apache.kafkakafka-metadata3.0.0
org.apache.kafkakafka-streams3.0.0
org.apache.kafkakafka-streams-scala_2.123.0.0
org.apache.kafkakafka-streams-scala_2.133.0.0
org.apache.kafkakafka-streams-test-utils3.0.0
org.apache.kafkakafka-tools3.0.0
org.apache.kafkakafka_2.123.0.0
org.apache.kafkakafka_2.133.0.0
org.apache.logging.log4jlog4j-1.2-api2.17.1
org.apache.logging.log4jlog4j-api2.17.1
org.apache.logging.log4jlog4j-appserver2.17.1
org.apache.logging.log4jlog4j-cassandra2.17.1
org.apache.logging.log4jlog4j-core2.17.1
org.apache.logging.log4jlog4j-couchdb2.17.1
org.apache.logging.log4jlog4j-docker2.17.1
org.apache.logging.log4jlog4j-flume-ng2.17.1
org.apache.logging.log4jlog4j-iostreams2.17.1
org.apache.logging.log4jlog4j-jcl2.17.1
org.apache.logging.log4jlog4j-jmx-gui2.17.1
org.apache.logging.log4jlog4j-jpa2.17.1
org.apache.logging.log4jlog4j-jpl2.17.1
org.apache.logging.log4jlog4j-jul2.17.1
org.apache.logging.log4jlog4j-kubernetes2.17.1
org.apache.logging.log4jlog4j-layout-template-json2.17.1
org.apache.logging.log4jlog4j-liquibase2.17.1
org.apache.logging.log4jlog4j-mongodb32.17.1
org.apache.logging.log4jlog4j-mongodb42.17.1
org.apache.logging.log4jlog4j-slf4j-impl2.17.1
org.apache.logging.log4jlog4j-slf4j18-impl2.17.1
org.apache.logging.log4jlog4j-spring-boot2.17.1
org.apache.logging.log4jlog4j-spring-cloud-config-client2.17.1
org.apache.logging.log4jlog4j-taglib2.17.1
org.apache.logging.log4jlog4j-to-slf4j2.17.1
org.apache.logging.log4jlog4j-web2.17.1
org.apache.solrsolr-analysis-extras8.8.2
org.apache.solrsolr-analytics8.8.2
org.apache.solrsolr-cell8.8.2
org.apache.solrsolr-core8.8.2
org.apache.solrsolr-dataimporthandler8.8.2
org.apache.solrsolr-dataimporthandler-extras8.8.2
org.apache.solrsolr-langid8.8.2
org.apache.solrsolr-ltr8.8.2
org.apache.solrsolr-solrj8.8.2
org.apache.solrsolr-test-framework8.8.2
org.apache.solrsolr-velocity8.8.2
org.apache.tomcattomcat-annotations-api9.0.56
org.apache.tomcattomcat-jdbc9.0.56
org.apache.tomcattomcat-jsp-api9.0.56
org.apache.tomcat.embedtomcat-embed-core9.0.56
org.apache.tomcat.embedtomcat-embed-el9.0.56
org.apache.tomcat.embedtomcat-embed-jasper9.0.56
org.apache.tomcat.embedtomcat-embed-websocket9.0.56
org.aspectjaspectjrt1.9.7
org.aspectjaspectjtools1.9.7
org.aspectjaspectjweaver1.9.7
org.assertjassertj-core3.21.0
org.awaitilityawaitility4.1.1
org.awaitilityawaitility-groovy4.1.1
org.awaitilityawaitility-kotlin4.1.1
org.awaitilityawaitility-scala4.1.1
org.codehaus.groovygroovy3.0.9
org.codehaus.groovygroovy-ant3.0.9
org.codehaus.groovygroovy-astbuilder3.0.9
org.codehaus.groovygroovy-bsf3.0.9
org.codehaus.groovygroovy-cli-commons3.0.9
org.codehaus.groovygroovy-cli-picocli3.0.9
org.codehaus.groovygroovy-console3.0.9
org.codehaus.groovygroovy-datetime3.0.9
org.codehaus.groovygroovy-dateutil3.0.9
org.codehaus.groovygroovy-docgenerator3.0.9
org.codehaus.groovygroovy-groovydoc3.0.9
org.codehaus.groovygroovy-groovysh3.0.9
org.codehaus.groovygroovy-jaxb3.0.9
org.codehaus.groovygroovy-jmx3.0.9
org.codehaus.groovygroovy-json3.0.9
org.codehaus.groovygroovy-jsr2233.0.9
org.codehaus.groovygroovy-macro3.0.9
org.codehaus.groovygroovy-nio3.0.9
org.codehaus.groovygroovy-servlet3.0.9
org.codehaus.groovygroovy-sql3.0.9
org.codehaus.groovygroovy-swing3.0.9
org.codehaus.groovygroovy-templates3.0.9
org.codehaus.groovygroovy-test3.0.9
org.codehaus.groovygroovy-test-junit53.0.9
org.codehaus.groovygroovy-testng3.0.9
org.codehaus.groovygroovy-xml3.0.9
org.codehaus.groovygroovy-yaml3.0.9
org.codehaus.janinocommons-compiler3.1.6
org.codehaus.janinocommons-compiler-jdk3.1.6
org.codehaus.janinojanino3.1.6
org.eclipse.jettyapache-jsp9.4.44.v20210927
org.eclipse.jettyapache-jstl9.4.44.v20210927
org.eclipse.jettyinfinispan-common9.4.44.v20210927
org.eclipse.jettyinfinispan-embedded-query9.4.44.v20210927
org.eclipse.jettyinfinispan-remote-query9.4.44.v20210927
org.eclipse.jettyjetty-alpn-client9.4.44.v20210927
org.eclipse.jettyjetty-alpn-conscrypt-client9.4.44.v20210927
org.eclipse.jettyjetty-alpn-conscrypt-server9.4.44.v20210927
org.eclipse.jettyjetty-alpn-java-client9.4.44.v20210927
org.eclipse.jettyjetty-alpn-java-server9.4.44.v20210927
org.eclipse.jettyjetty-alpn-openjdk8-client9.4.44.v20210927
org.eclipse.jettyjetty-alpn-openjdk8-server9.4.44.v20210927
org.eclipse.jettyjetty-alpn-server9.4.44.v20210927
org.eclipse.jettyjetty-annotations9.4.44.v20210927
org.eclipse.jettyjetty-ant9.4.44.v20210927
org.eclipse.jettyjetty-client9.4.44.v20210927
org.eclipse.jettyjetty-continuation9.4.44.v20210927
org.eclipse.jettyjetty-deploy9.4.44.v20210927
org.eclipse.jettyjetty-distribution9.4.44.v20210927
org.eclipse.jettyjetty-hazelcast9.4.44.v20210927
org.eclipse.jettyjetty-home9.4.44.v20210927
org.eclipse.jettyjetty-http9.4.44.v20210927
org.eclipse.jettyjetty-http-spi9.4.44.v20210927
org.eclipse.jettyjetty-io9.4.44.v20210927
org.eclipse.jettyjetty-jaas9.4.44.v20210927
org.eclipse.jettyjetty-jaspi9.4.44.v20210927
org.eclipse.jettyjetty-jmx9.4.44.v20210927
org.eclipse.jettyjetty-jndi9.4.44.v20210927
org.eclipse.jettyjetty-nosql9.4.44.v20210927
org.eclipse.jettyjetty-openid9.4.44.v20210927
org.eclipse.jettyjetty-plus9.4.44.v20210927
org.eclipse.jettyjetty-proxy9.4.44.v20210927
org.eclipse.jettyjetty-quickstart9.4.44.v20210927
org.eclipse.jettyjetty-reactive-httpclient1.1.10
org.eclipse.jettyjetty-rewrite9.4.44.v20210927
org.eclipse.jettyjetty-security9.4.44.v20210927
org.eclipse.jettyjetty-server9.4.44.v20210927
org.eclipse.jettyjetty-servlet9.4.44.v20210927
org.eclipse.jettyjetty-servlets9.4.44.v20210927
org.eclipse.jettyjetty-spring9.4.44.v20210927
org.eclipse.jettyjetty-unixsocket9.4.44.v20210927
org.eclipse.jettyjetty-util9.4.44.v20210927
org.eclipse.jettyjetty-util-ajax9.4.44.v20210927
org.eclipse.jettyjetty-webapp9.4.44.v20210927
org.eclipse.jettyjetty-xml9.4.44.v20210927
org.eclipse.jetty.fcgifcgi-client9.4.44.v20210927
org.eclipse.jetty.fcgifcgi-server9.4.44.v20210927
org.eclipse.jetty.gcloudjetty-gcloud-session-manager9.4.44.v20210927
org.eclipse.jetty.http2http2-client9.4.44.v20210927
org.eclipse.jetty.http2http2-common9.4.44.v20210927
org.eclipse.jetty.http2http2-hpack9.4.44.v20210927
org.eclipse.jetty.http2http2-http-client-transport9.4.44.v20210927
org.eclipse.jetty.http2http2-server9.4.44.v20210927
org.eclipse.jetty.memcachedjetty-memcached-sessions9.4.44.v20210927
org.eclipse.jetty.orbitjavax.servlet.jsp2.2.0.v201112011158
org.eclipse.jetty.osgijetty-httpservice9.4.44.v20210927
org.eclipse.jetty.osgijetty-osgi-boot9.4.44.v20210927
org.eclipse.jetty.osgijetty-osgi-boot-jsp9.4.44.v20210927
org.eclipse.jetty.osgijetty-osgi-boot-warurl9.4.44.v20210927
org.eclipse.jetty.websocketjavax-websocket-client-impl9.4.44.v20210927
org.eclipse.jetty.websocketjavax-websocket-server-impl9.4.44.v20210927
org.eclipse.jetty.websocketwebsocket-api9.4.44.v20210927
org.eclipse.jetty.websocketwebsocket-client9.4.44.v20210927
org.eclipse.jetty.websocketwebsocket-common9.4.44.v20210927
org.eclipse.jetty.websocketwebsocket-server9.4.44.v20210927
org.eclipse.jetty.websocketwebsocket-servlet9.4.44.v20210927
org.ehcacheehcache3.9.9
org.ehcacheehcache-clustered3.9.9
org.ehcacheehcache-transactions3.9.9
org.elasticsearchelasticsearch7.15.2
org.elasticsearch.clientelasticsearch-rest-client7.15.2
org.elasticsearch.clientelasticsearch-rest-client-sniffer7.15.2
org.elasticsearch.clientelasticsearch-rest-high-level-client7.15.2
org.elasticsearch.clienttransport7.15.2
org.elasticsearch.distribution.integ-test-zipelasticsearch7.15.2
org.elasticsearch.plugintransport-netty4-client7.15.2
org.firebirdsql.jdbcjaybird4.0.5.java8
org.firebirdsql.jdbcjaybird-jdk184.0.5.java8
org.flywaydbflyway-core8.0.5
org.freemarkerfreemarker2.3.31
org.glassfishjakarta.el3.0.4
org.glassfish.jaxbcodemodel2.3.5
org.glassfish.jaxbcodemodel-annotation-compiler2.3.5
org.glassfish.jaxbjaxb-jxc2.3.5
org.glassfish.jaxbjaxb-runtime2.3.5
org.glassfish.jaxbjaxb-xjc2.3.5
org.glassfish.jaxbtxw22.3.5
org.glassfish.jaxbtxwc22.3.5
org.glassfish.jaxbxsom2.3.5
org.glassfish.jersey.bundlesjaxrs-ri2.35
org.glassfish.jersey.connectorsjersey-apache-connector2.35
org.glassfish.jersey.connectorsjersey-grizzly-connector2.35
org.glassfish.jersey.connectorsjersey-helidon-connector2.35
org.glassfish.jersey.connectorsjersey-jdk-connector2.35
org.glassfish.jersey.connectorsjersey-jetty-connector2.35
org.glassfish.jersey.connectorsjersey-netty-connector2.35
org.glassfish.jersey.containersjersey-container-grizzly2-http2.35
org.glassfish.jersey.containersjersey-container-grizzly2-servlet2.35
org.glassfish.jersey.containersjersey-container-jdk-http2.35
org.glassfish.jersey.containersjersey-container-jetty-http2.35
org.glassfish.jersey.containersjersey-container-jetty-servlet2.35
org.glassfish.jersey.containersjersey-container-netty-http2.35
org.glassfish.jersey.containersjersey-container-servlet2.35
org.glassfish.jersey.containersjersey-container-servlet-core2.35
org.glassfish.jersey.containersjersey-container-simple-http2.35
org.glassfish.jersey.containers.glassfishjersey-gf-ejb2.35
org.glassfish.jersey.corejersey-client2.35
org.glassfish.jersey.corejersey-common2.35
org.glassfish.jersey.corejersey-server2.35
org.glassfish.jersey.extjersey-bean-validation2.35
org.glassfish.jersey.extjersey-declarative-linking2.35
org.glassfish.jersey.extjersey-entity-filtering2.35
org.glassfish.jersey.extjersey-metainf-services2.35
org.glassfish.jersey.extjersey-mvc2.35
org.glassfish.jersey.extjersey-mvc-bean-validation2.35
org.glassfish.jersey.extjersey-mvc-freemarker2.35
org.glassfish.jersey.extjersey-mvc-jsp2.35
org.glassfish.jersey.extjersey-mvc-mustache2.35
org.glassfish.jersey.extjersey-proxy-client2.35
org.glassfish.jersey.extjersey-servlet-portability2.35
org.glassfish.jersey.extjersey-spring42.35
org.glassfish.jersey.extjersey-spring52.35
org.glassfish.jersey.extjersey-wadl-doclet2.35
org.glassfish.jersey.ext.cdijersey-cdi-rs-inject2.35
org.glassfish.jersey.ext.cdijersey-cdi1x2.35
org.glassfish.jersey.ext.cdijersey-cdi1x-ban-custom-hk2-binding2.35
org.glassfish.jersey.ext.cdijersey-cdi1x-servlet2.35
org.glassfish.jersey.ext.cdijersey-cdi1x-transaction2.35
org.glassfish.jersey.ext.cdijersey-cdi1x-validation2.35
org.glassfish.jersey.ext.cdijersey-weld2-se2.35
org.glassfish.jersey.ext.microprofilejersey-mp-config2.35
org.glassfish.jersey.ext.microprofilejersey-mp-rest-client2.35
org.glassfish.jersey.ext.rxjersey-rx-client-guava2.35
org.glassfish.jersey.ext.rxjersey-rx-client-rxjava2.35
org.glassfish.jersey.ext.rxjersey-rx-client-rxjava22.35
org.glassfish.jersey.injectjersey-cdi2-se2.35
org.glassfish.jersey.injectjersey-hk22.35
org.glassfish.jersey.mediajersey-media-jaxb2.35
org.glassfish.jersey.mediajersey-media-json-binding2.35
org.glassfish.jersey.mediajersey-media-json-jackson2.35
org.glassfish.jersey.mediajersey-media-json-jettison2.35
org.glassfish.jersey.mediajersey-media-json-processing2.35
org.glassfish.jersey.mediajersey-media-kryo2.35
org.glassfish.jersey.mediajersey-media-moxy2.35
org.glassfish.jersey.mediajersey-media-multipart2.35
org.glassfish.jersey.mediajersey-media-sse2.35
org.glassfish.jersey.securityoauth1-client2.35
org.glassfish.jersey.securityoauth1-server2.35
org.glassfish.jersey.securityoauth1-signature2.35
org.glassfish.jersey.securityoauth2-client2.35
org.glassfish.jersey.test-frameworkjersey-test-framework-core2.35
org.glassfish.jersey.test-frameworkjersey-test-framework-util2.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-bundle2.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-external2.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-grizzly22.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-inmemory2.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jdk-http2.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-jetty2.35
org.glassfish.jersey.test-framework.providersjersey-test-framework-provider-simple2.35
org.glassfish.webjakarta.servlet.jsp.jstl1.2.6
org.hamcresthamcrest2.2
org.hamcresthamcrest-core2.2
org.hamcresthamcrest-library2.2
org.hibernatehibernate-c3p05.6.4.Final
org.hibernatehibernate-core5.6.4.Final
org.hibernatehibernate-ehcache5.6.4.Final
org.hibernatehibernate-entitymanager5.6.4.Final
org.hibernatehibernate-envers5.6.4.Final
org.hibernatehibernate-hikaricp5.6.4.Final
org.hibernatehibernate-java85.6.4.Final
org.hibernatehibernate-jcache5.6.4.Final
org.hibernatehibernate-jpamodelgen5.6.4.Final
org.hibernatehibernate-micrometer5.6.4.Final
org.hibernatehibernate-proxool5.6.4.Final
org.hibernatehibernate-spatial5.6.4.Final
org.hibernatehibernate-testing5.6.4.Final
org.hibernatehibernate-vibur5.6.4.Final
org.hibernate.validatorhibernate-validator6.2.0.Final
org.hibernate.validatorhibernate-validator-annotation-processor6.2.0.Final
org.hsqldbhsqldb2.5.2
org.infinispaninfinispan-anchored-keys12.1.11.Final
org.infinispaninfinispan-api12.1.11.Final
org.infinispaninfinispan-cachestore-jdbc12.1.11.Final
org.infinispaninfinispan-cachestore-jpa12.1.11.Final
org.infinispaninfinispan-cachestore-remote12.1.11.Final
org.infinispaninfinispan-cachestore-rocksdb12.1.11.Final
org.infinispaninfinispan-cdi-common12.1.11.Final
org.infinispaninfinispan-cdi-embedded12.1.11.Final
org.infinispaninfinispan-cdi-remote12.1.11.Final
org.infinispaninfinispan-checkstyle12.1.11.Final
org.infinispaninfinispan-cli-client12.1.11.Final
org.infinispaninfinispan-client-hotrod12.1.11.Final
org.infinispaninfinispan-client-rest12.1.11.Final
org.infinispaninfinispan-cloudevents-integration12.1.11.Final
org.infinispaninfinispan-clustered-counter12.1.11.Final
org.infinispaninfinispan-clustered-lock12.1.11.Final
org.infinispaninfinispan-commons12.1.11.Final
org.infinispaninfinispan-commons-test12.1.11.Final
org.infinispaninfinispan-component-annotations12.1.11.Final
org.infinispaninfinispan-component-processor12.1.11.Final
org.infinispaninfinispan-console0.14.3.Final
org.infinispaninfinispan-core12.1.11.Final
org.infinispaninfinispan-extended-statistics12.1.11.Final
org.infinispaninfinispan-hibernate-cache-commons12.1.11.Final
org.infinispaninfinispan-hibernate-cache-spi12.1.11.Final
org.infinispaninfinispan-hibernate-cache-v5112.1.11.Final
org.infinispaninfinispan-hibernate-cache-v5312.1.11.Final
org.infinispaninfinispan-jboss-marshalling12.1.11.Final
org.infinispaninfinispan-jcache12.1.11.Final
org.infinispaninfinispan-jcache-commons12.1.11.Final
org.infinispaninfinispan-jcache-remote12.1.11.Final
org.infinispaninfinispan-key-value-store-client12.1.11.Final
org.infinispaninfinispan-marshaller-kryo12.1.11.Final
org.infinispaninfinispan-marshaller-kryo-bundle12.1.11.Final
org.infinispaninfinispan-marshaller-protostuff12.1.11.Final
org.infinispaninfinispan-marshaller-protostuff-bundle12.1.11.Final
org.infinispaninfinispan-multimap12.1.11.Final
org.infinispaninfinispan-objectfilter12.1.11.Final
org.infinispaninfinispan-persistence-soft-index12.1.11.Final
org.infinispaninfinispan-query12.1.11.Final
org.infinispaninfinispan-query-core12.1.11.Final
org.infinispaninfinispan-query-dsl12.1.11.Final
org.infinispaninfinispan-remote-query-client12.1.11.Final
org.infinispaninfinispan-remote-query-server12.1.11.Final
org.infinispaninfinispan-scripting12.1.11.Final
org.infinispaninfinispan-server-core12.1.11.Final
org.infinispaninfinispan-server-hotrod12.1.11.Final
org.infinispaninfinispan-server-memcached12.1.11.Final
org.infinispaninfinispan-server-rest12.1.11.Final
org.infinispaninfinispan-server-router12.1.11.Final
org.infinispaninfinispan-server-runtime12.1.11.Final
org.infinispaninfinispan-server-testdriver-core12.1.11.Final
org.infinispaninfinispan-server-testdriver-junit412.1.11.Final
org.infinispaninfinispan-server-testdriver-junit512.1.11.Final
org.infinispaninfinispan-spring-boot-starter-embedded12.1.11.Final
org.infinispaninfinispan-spring-boot-starter-remote12.1.11.Final
org.infinispaninfinispan-spring5-common12.1.11.Final
org.infinispaninfinispan-spring5-embedded12.1.11.Final
org.infinispaninfinispan-spring5-remote12.1.11.Final
org.infinispaninfinispan-tasks12.1.11.Final
org.infinispaninfinispan-tasks-api12.1.11.Final
org.infinispaninfinispan-tools12.1.11.Final
org.infinispan.protostreamprotostream4.4.1.Final
org.infinispan.protostreamprotostream-processor4.4.1.Final
org.infinispan.protostreamprotostream-types4.4.1.Final
org.influxdbinfluxdb-java2.22
org.jboss.loggingjboss-logging3.4.3.Final
org.jdomjdom22.0.6.1
org.jetbrains.kotlinkotlin-compiler1.6.10
org.jetbrains.kotlinkotlin-compiler-embeddable1.6.10
org.jetbrains.kotlinkotlin-daemon-client1.6.10
org.jetbrains.kotlinkotlin-main-kts1.6.10
org.jetbrains.kotlinkotlin-osgi-bundle1.6.10
org.jetbrains.kotlinkotlin-reflect1.6.10
org.jetbrains.kotlinkotlin-script-runtime1.6.10
org.jetbrains.kotlinkotlin-script-util1.6.10
org.jetbrains.kotlinkotlin-scripting-common1.6.10
org.jetbrains.kotlinkotlin-scripting-ide-services1.6.10
org.jetbrains.kotlinkotlin-scripting-jvm1.6.10
org.jetbrains.kotlinkotlin-scripting-jvm-host1.6.10
org.jetbrains.kotlinkotlin-stdlib1.6.10
org.jetbrains.kotlinkotlin-stdlib-common1.6.10
org.jetbrains.kotlinkotlin-stdlib-jdk71.6.10
org.jetbrains.kotlinkotlin-stdlib-jdk81.6.10
org.jetbrains.kotlinkotlin-stdlib-js1.6.10
org.jetbrains.kotlinkotlin-test1.6.10
org.jetbrains.kotlinkotlin-test-annotations-common1.6.10
org.jetbrains.kotlinkotlin-test-common1.6.10
org.jetbrains.kotlinkotlin-test-js1.6.10
org.jetbrains.kotlinkotlin-test-junit1.6.10
org.jetbrains.kotlinkotlin-test-junit51.6.10
org.jetbrains.kotlinkotlin-test-testng1.6.10
org.jetbrains.kotlinxkotlinx-coroutines-android1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-core1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-core-jvm1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-debug1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-guava1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-javafx1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-jdk81.5.2
org.jetbrains.kotlinxkotlinx-coroutines-jdk91.5.2
org.jetbrains.kotlinxkotlinx-coroutines-play-services1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-reactive1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-reactor1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-rx21.5.2
org.jetbrains.kotlinxkotlinx-coroutines-rx31.5.2
org.jetbrains.kotlinxkotlinx-coroutines-slf4j1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-swing1.5.2
org.jetbrains.kotlinxkotlinx-coroutines-test1.5.2
org.jolokiajolokia-core1.7.1
org.jooqjooq3.14.15
org.jooqjooq-codegen3.14.15
org.jooqjooq-kotlin3.14.15
org.jooqjooq-meta3.14.15
org.junit.jupiterjunit-jupiter5.8.2
org.junit.jupiterjunit-jupiter-api5.8.2
org.junit.jupiterjunit-jupiter-engine5.8.2
org.junit.jupiterjunit-jupiter-migrationsupport5.8.2
org.junit.jupiterjunit-jupiter-params5.8.2
org.junit.platformjunit-platform-commons1.8.2
org.junit.platformjunit-platform-console1.8.2
org.junit.platformjunit-platform-engine1.8.2
org.junit.platformjunit-platform-jfr1.8.2
org.junit.platformjunit-platform-launcher1.8.2
org.junit.platformjunit-platform-reporting1.8.2
org.junit.platformjunit-platform-runner1.8.2
org.junit.platformjunit-platform-suite1.8.2
org.junit.platformjunit-platform-suite-api1.8.2
org.junit.platformjunit-platform-suite-commons1.8.2
org.junit.platformjunit-platform-suite-engine1.8.2
org.junit.platformjunit-platform-testkit1.8.2
org.junit.vintagejunit-vintage-engine5.8.2
org.jvnet.mimepullmimepull1.9.15
org.liquibaseliquibase-core4.5.0
org.mariadbr2dbc-mariadb1.0.3
org.mariadb.jdbcmariadb-java-client2.7.5
org.messaginghubpooled-jms1.2.3
org.mockitomockito-core4.0.0
org.mockitomockito-inline4.0.0
org.mockitomockito-junit-jupiter4.0.0
org.mongodbbson4.4.1
org.mongodbmongodb-driver-core4.4.1
org.mongodbmongodb-driver-legacy4.4.1
org.mongodbmongodb-driver-reactivestreams4.4.1
org.mongodbmongodb-driver-sync4.4.1
org.mortbay.jasperapache-el9.0.52
org.neo4j.driverneo4j-java-driver4.4.2
org.postgresqlpostgresql42.3.1
org.projectlomboklombok1.18.22
org.quartz-schedulerquartz2.3.2
org.quartz-schedulerquartz-jobs2.3.2
org.reactivestreamsreactive-streams1.0.3
org.seleniumhq.seleniumhtmlunit-driver2.54.0
org.seleniumhq.seleniumselenium-api3.141.59
org.seleniumhq.seleniumselenium-chrome-driver3.141.59
org.seleniumhq.seleniumselenium-edge-driver3.141.59
org.seleniumhq.seleniumselenium-firefox-driver3.141.59
org.seleniumhq.seleniumselenium-ie-driver3.141.59
org.seleniumhq.seleniumselenium-java3.141.59
org.seleniumhq.seleniumselenium-opera-driver3.141.59
org.seleniumhq.seleniumselenium-remote-driver3.141.59
org.seleniumhq.seleniumselenium-safari-driver3.141.59
org.seleniumhq.seleniumselenium-support3.141.59
org.skyscreamerjsonassert1.5.0
org.slf4jjcl-over-slf4j1.7.33
org.slf4jjul-to-slf4j1.7.33
org.slf4jlog4j-over-slf4j1.7.33
org.slf4jslf4j-api1.7.33
org.slf4jslf4j-ext1.7.33
org.slf4jslf4j-jcl1.7.33
org.slf4jslf4j-jdk141.7.33
org.slf4jslf4j-log4j121.7.33
org.slf4jslf4j-nop1.7.33
org.slf4jslf4j-simple1.7.33
org.springframeworkspring-aop5.3.15
org.springframeworkspring-aspects5.3.15
org.springframeworkspring-beans5.3.15
org.springframeworkspring-context5.3.15
org.springframeworkspring-context-indexer5.3.15
org.springframeworkspring-context-support5.3.15
org.springframeworkspring-core5.3.15
org.springframeworkspring-expression5.3.15
org.springframeworkspring-instrument5.3.15
org.springframeworkspring-jcl5.3.15
org.springframeworkspring-jdbc5.3.15
org.springframeworkspring-jms5.3.15
org.springframeworkspring-messaging5.3.15
org.springframeworkspring-orm5.3.15
org.springframeworkspring-oxm5.3.15
org.springframeworkspring-r2dbc5.3.15
org.springframeworkspring-test5.3.15
org.springframeworkspring-tx5.3.15
org.springframeworkspring-web5.3.15
org.springframeworkspring-webflux5.3.15
org.springframeworkspring-webmvc5.3.15
org.springframeworkspring-websocket5.3.15
org.springframework.amqpspring-amqp2.4.2
org.springframework.amqpspring-rabbit2.4.2
org.springframework.amqpspring-rabbit-junit2.4.2
org.springframework.amqpspring-rabbit-stream2.4.2
org.springframework.amqpspring-rabbit-test2.4.2
org.springframework.batchspring-batch-core4.3.4
org.springframework.batchspring-batch-infrastructure4.3.4
org.springframework.batchspring-batch-integration4.3.4
org.springframework.batchspring-batch-test4.3.4
org.springframework.bootspring-boot2.6.3
org.springframework.bootspring-boot-actuator2.6.3
org.springframework.bootspring-boot-actuator-autoconfigure2.6.3
org.springframework.bootspring-boot-autoconfigure2.6.3
org.springframework.bootspring-boot-autoconfigure-processor2.6.3
org.springframework.bootspring-boot-buildpack-platform2.6.3
org.springframework.bootspring-boot-configuration-metadata2.6.3
org.springframework.bootspring-boot-configuration-processor2.6.3
org.springframework.bootspring-boot-devtools2.6.3
org.springframework.bootspring-boot-jarmode-layertools2.6.3
org.springframework.bootspring-boot-loader2.6.3
org.springframework.bootspring-boot-loader-tools2.6.3
org.springframework.bootspring-boot-properties-migrator2.6.3
org.springframework.bootspring-boot-starter2.6.3
org.springframework.bootspring-boot-starter-activemq2.6.3
org.springframework.bootspring-boot-starter-actuator2.6.3
org.springframework.bootspring-boot-starter-amqp2.6.3
org.springframework.bootspring-boot-starter-aop2.6.3
org.springframework.bootspring-boot-starter-artemis2.6.3
org.springframework.bootspring-boot-starter-batch2.6.3
org.springframework.bootspring-boot-starter-cache2.6.3
org.springframework.bootspring-boot-starter-data-cassandra2.6.3
org.springframework.bootspring-boot-starter-data-cassandra-reactive2.6.3
org.springframework.bootspring-boot-starter-data-couchbase2.6.3
org.springframework.bootspring-boot-starter-data-couchbase-reactive2.6.3
org.springframework.bootspring-boot-starter-data-elasticsearch2.6.3
org.springframework.bootspring-boot-starter-data-jdbc2.6.3
org.springframework.bootspring-boot-starter-data-jpa2.6.3
org.springframework.bootspring-boot-starter-data-ldap2.6.3
org.springframework.bootspring-boot-starter-data-mongodb2.6.3
org.springframework.bootspring-boot-starter-data-mongodb-reactive2.6.3
org.springframework.bootspring-boot-starter-data-neo4j2.6.3
org.springframework.bootspring-boot-starter-data-r2dbc2.6.3
org.springframework.bootspring-boot-starter-data-redis2.6.3
org.springframework.bootspring-boot-starter-data-redis-reactive2.6.3
org.springframework.bootspring-boot-starter-data-rest2.6.3
org.springframework.bootspring-boot-starter-freemarker2.6.3
org.springframework.bootspring-boot-starter-groovy-templates2.6.3
org.springframework.bootspring-boot-starter-hateoas2.6.3
org.springframework.bootspring-boot-starter-integration2.6.3
org.springframework.bootspring-boot-starter-jdbc2.6.3
org.springframework.bootspring-boot-starter-jersey2.6.3
org.springframework.bootspring-boot-starter-jetty2.6.3
org.springframework.bootspring-boot-starter-jooq2.6.3
org.springframework.bootspring-boot-starter-json2.6.3
org.springframework.bootspring-boot-starter-jta-atomikos2.6.3
org.springframework.bootspring-boot-starter-log4j22.6.3
org.springframework.bootspring-boot-starter-logging2.6.3
org.springframework.bootspring-boot-starter-mail2.6.3
org.springframework.bootspring-boot-starter-mustache2.6.3
org.springframework.bootspring-boot-starter-oauth2-client2.6.3
org.springframework.bootspring-boot-starter-oauth2-resource-server2.6.3
org.springframework.bootspring-boot-starter-quartz2.6.3
org.springframework.bootspring-boot-starter-reactor-netty2.6.3
org.springframework.bootspring-boot-starter-rsocket2.6.3
org.springframework.bootspring-boot-starter-security2.6.3
org.springframework.bootspring-boot-starter-test2.6.3
org.springframework.bootspring-boot-starter-thymeleaf2.6.3
org.springframework.bootspring-boot-starter-tomcat2.6.3
org.springframework.bootspring-boot-starter-undertow2.6.3
org.springframework.bootspring-boot-starter-validation2.6.3
org.springframework.bootspring-boot-starter-web2.6.3
org.springframework.bootspring-boot-starter-web-services2.6.3
org.springframework.bootspring-boot-starter-webflux2.6.3
org.springframework.bootspring-boot-starter-websocket2.6.3
org.springframework.bootspring-boot-test2.6.3
org.springframework.bootspring-boot-test-autoconfigure2.6.3
org.springframework.dataspring-data-cassandra3.3.1
org.springframework.dataspring-data-commons2.6.1
org.springframework.dataspring-data-couchbase4.3.1
org.springframework.dataspring-data-elasticsearch4.3.1
org.springframework.dataspring-data-envers2.6.1
org.springframework.dataspring-data-geode2.6.1
org.springframework.dataspring-data-jdbc2.3.1
org.springframework.dataspring-data-jpa2.6.1
org.springframework.dataspring-data-keyvalue2.6.1
org.springframework.dataspring-data-ldap2.6.1
org.springframework.dataspring-data-mongodb3.3.1
org.springframework.dataspring-data-neo4j6.2.1
org.springframework.dataspring-data-r2dbc1.4.1
org.springframework.dataspring-data-redis2.6.1
org.springframework.dataspring-data-relational2.3.1
org.springframework.dataspring-data-rest-core3.6.1
org.springframework.dataspring-data-rest-hal-explorer3.6.1
org.springframework.dataspring-data-rest-webmvc3.6.1
org.springframework.hateoasspring-hateoas1.4.1
org.springframework.integrationspring-integration-amqp5.5.8
org.springframework.integrationspring-integration-core5.5.8
org.springframework.integrationspring-integration-event5.5.8
org.springframework.integrationspring-integration-feed5.5.8
org.springframework.integrationspring-integration-file5.5.8
org.springframework.integrationspring-integration-ftp5.5.8
org.springframework.integrationspring-integration-gemfire5.5.8
org.springframework.integrationspring-integration-groovy5.5.8
org.springframework.integrationspring-integration-http5.5.8
org.springframework.integrationspring-integration-ip5.5.8
org.springframework.integrationspring-integration-jdbc5.5.8
org.springframework.integrationspring-integration-jms5.5.8
org.springframework.integrationspring-integration-jmx5.5.8
org.springframework.integrationspring-integration-jpa5.5.8
org.springframework.integrationspring-integration-kafka5.5.8
org.springframework.integrationspring-integration-mail5.5.8
org.springframework.integrationspring-integration-mongodb5.5.8
org.springframework.integrationspring-integration-mqtt5.5.8
org.springframework.integrationspring-integration-r2dbc5.5.8
org.springframework.integrationspring-integration-redis5.5.8
org.springframework.integrationspring-integration-rmi5.5.8
org.springframework.integrationspring-integration-rsocket5.5.8
org.springframework.integrationspring-integration-scripting5.5.8
org.springframework.integrationspring-integration-security5.5.8
org.springframework.integrationspring-integration-sftp5.5.8
org.springframework.integrationspring-integration-stomp5.5.8
org.springframework.integrationspring-integration-stream5.5.8
org.springframework.integrationspring-integration-syslog5.5.8
org.springframework.integrationspring-integration-test5.5.8
org.springframework.integrationspring-integration-test-support5.5.8
org.springframework.integrationspring-integration-webflux5.5.8
org.springframework.integrationspring-integration-websocket5.5.8
org.springframework.integrationspring-integration-ws5.5.8
org.springframework.integrationspring-integration-xml5.5.8
org.springframework.integrationspring-integration-xmpp5.5.8
org.springframework.integrationspring-integration-zeromq5.5.8
org.springframework.integrationspring-integration-zookeeper5.5.8
org.springframework.kafkaspring-kafka2.8.2
org.springframework.kafkaspring-kafka-test2.8.2
org.springframework.ldapspring-ldap-core2.3.5.RELEASE
org.springframework.ldapspring-ldap-core-tiger2.3.5.RELEASE
org.springframework.ldapspring-ldap-ldif-batch2.3.5.RELEASE
org.springframework.ldapspring-ldap-ldif-core2.3.5.RELEASE
org.springframework.ldapspring-ldap-odm2.3.5.RELEASE
org.springframework.ldapspring-ldap-test2.3.5.RELEASE
org.springframework.restdocsspring-restdocs-asciidoctor2.0.6.RELEASE
org.springframework.restdocsspring-restdocs-core2.0.6.RELEASE
org.springframework.restdocsspring-restdocs-mockmvc2.0.6.RELEASE
org.springframework.restdocsspring-restdocs-restassured2.0.6.RELEASE
org.springframework.restdocsspring-restdocs-webtestclient2.0.6.RELEASE
org.springframework.retryspring-retry1.3.1
org.springframework.securityspring-security-acl5.6.1
org.springframework.securityspring-security-aspects5.6.1
org.springframework.securityspring-security-cas5.6.1
org.springframework.securityspring-security-config5.6.1
org.springframework.securityspring-security-core5.6.1
org.springframework.securityspring-security-crypto5.6.1
org.springframework.securityspring-security-data5.6.1
org.springframework.securityspring-security-ldap5.6.1
org.springframework.securityspring-security-messaging5.6.1
org.springframework.securityspring-security-oauth2-client5.6.1
org.springframework.securityspring-security-oauth2-core5.6.1
org.springframework.securityspring-security-oauth2-jose5.6.1
org.springframework.securityspring-security-oauth2-resource-server5.6.1
org.springframework.securityspring-security-openid5.6.1
org.springframework.securityspring-security-remoting5.6.1
org.springframework.securityspring-security-rsocket5.6.1
org.springframework.securityspring-security-saml2-service-provider5.6.1
org.springframework.securityspring-security-taglibs5.6.1
org.springframework.securityspring-security-test5.6.1
org.springframework.securityspring-security-web5.6.1
org.springframework.sessionspring-session-core2.6.1
org.springframework.sessionspring-session-data-geode2.6.0
org.springframework.sessionspring-session-data-mongodb2.6.1
org.springframework.sessionspring-session-data-redis2.6.1
org.springframework.sessionspring-session-hazelcast2.6.1
org.springframework.sessionspring-session-jdbc2.6.1
org.springframework.wsspring-ws-core3.1.2
org.springframework.wsspring-ws-security3.1.2
org.springframework.wsspring-ws-support3.1.2
org.springframework.wsspring-ws-test3.1.2
org.springframework.wsspring-xml3.1.2
org.thymeleafthymeleaf3.0.14.RELEASE
org.thymeleafthymeleaf-spring53.0.14.RELEASE
org.thymeleaf.extrasthymeleaf-extras-java8time3.0.4.RELEASE
org.thymeleaf.extrasthymeleaf-extras-springsecurity53.0.4.RELEASE
org.webjarswebjars-locator-core0.48
org.xerialsqlite-jdbc3.36.0.3
org.xmlunitxmlunit-assertj2.8.4
org.xmlunitxmlunit-core2.8.4
org.xmlunitxmlunit-legacy2.8.4
org.xmlunitxmlunit-matchers2.8.4
org.xmlunitxmlunit-placeholders2.8.4
org.yamlsnakeyaml1.29
redis.clientsjedis3.7.1
wsdl4jwsdl4j1.6.3

Spring Boot CLI - Default Statements

Default Imports

Spring CLI automatically imports many libraries by default so that explicit imports are not required. Consider the following groovy script.

@RestController
class FirstApplication {
   @RequestMapping("/")
   String welcome() {
      "Welcome to TutorialsPoint.Com"
   }
}

Here import for @RestController, @RequestMapping annotations are already included by default by Spring Boot. We're not even require to use fully-qualified names. You can check by running the application.

Type the following command

E:/Test/> spring run FirstApplication.groovy

You can see the following output on console.

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.6.3)

2022-02-03 11:29:01.177  INFO 10668 --- [       runner-0] o.s.boot.SpringApplication               : Starting application using Java 11.0.11 on DESKTOP-86KD9FC with PID 10668 (started by intel in F:\Test)
2022-02-03 11:29:01.187  INFO 10668 --- [       runner-0] o.s.boot.SpringApplication               : No active profile set, falling back to default profiles: default
2022-02-03 11:29:03.555  INFO 10668 --- [       runner-0] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2022-02-03 11:29:03.591  INFO 10668 --- [       runner-0] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2022-02-03 11:29:03.592  INFO 10668 --- [       runner-0] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.56]
2022-02-03 11:29:03.659  INFO 10668 --- [       runner-0] org.apache.catalina.loader.WebappLoader  : Unknown class loader [org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader@8646db9] of class [class org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader]
2022-02-03 11:29:03.735  INFO 10668 --- [       runner-0] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2022-02-03 11:29:03.736  INFO 10668 --- [       runner-0] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2107 ms
2022-02-03 11:29:04.945  INFO 10668 --- [       runner-0] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2022-02-03 11:29:04.968  INFO 10668 --- [       runner-0] o.s.boot.SpringApplication               : Started application in 4.811 seconds (JVM running for 8.805)

Automatic Main Method

We are not required to create standard main method for groovy script to initialize a spring application. It is automatically created for spring boot application.

Spring Boot CLI - Starter Thymeleaf Project

Let's create a sample Thymeleaf based project to demonstrate the capabilities of Spring CLI. Follow the below mentioned step to create a sample project.

Step Description
1 Create a Folder with a name TestApplication with subfolders templates and static.
2 Create message.groovy in TestApplication folder, message.html in templates folder, index.html in static folder as explained below.
3 Compile and run the application to verify the result of the implemented logic.

TestApplication/message.groovy

@Controller
@Grab('spring-boot-starter-thymeleaf')
class MessageController {
   @RequestMapping("/message")
   String getMessage(Model model) {
      String message = "Welcome to TutorialsPoint.Com!";
      model.addAttribute("message", message);
      return "message";
   }
}

TestApplication/templates/message.html

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
   <head> 
      <title>Spring Boot CLI Example</title> 
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
   </head>
   <body> 
      <p th:text="'Message: ' + ${message}" />
   </body>
</html> 

TestApplication/static/index.html

<!DOCTYPE HTML>
<html>
   <head> 
      <title>Spring Boot CLI Example</title> 
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
   </head>
   <body>
      <p>Go to <a href="/message">Message</a></p>
   </body>
</html> 

Run the application

Type the following command

E:/Test/TestApplication/> spring run *.groovy

Now Spring Boot CLI will come into action, download required dependencies, run the embedded tomcat, deploy the application and start it. You can see the following output on console.

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.6.3)

2022-02-03 11:36:33.362  INFO 10764 --- [       runner-0] o.s.boot.SpringApplication               : Starting application using Java 11.0.11 on DESKTOP-86KD9FC with PID 10764 (started by intel in E:\Test\TestApplication)
2022-02-03 11:36:33.372  INFO 10764 --- [       runner-0] o.s.boot.SpringApplication               : No active profile set, falling back to default profiles: default
2022-02-03 11:36:35.743  INFO 10764 --- [       runner-0] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2022-02-03 11:36:35.768  INFO 10764 --- [       runner-0] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2022-02-03 11:36:35.769  INFO 10764 --- [       runner-0] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.56]
2022-02-03 11:36:35.829  INFO 10764 --- [       runner-0] org.apache.catalina.loader.WebappLoader  : Unknown class loader [org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader@553a3d88] of class [class org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader]
2022-02-03 11:36:35.896  INFO 10764 --- [       runner-0] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2022-02-03 11:36:35.897  INFO 10764 --- [       runner-0] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2085 ms
2022-02-03 11:36:36.436  INFO 10764 --- [       runner-0] o.s.b.a.w.s.WelcomePageHandlerMapping    : Adding welcome page: class path resource [static/index.html]
2022-02-03 11:36:37.132  INFO 10764 --- [       runner-0] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2022-02-03 11:36:37.153  INFO 10764 --- [       runner-0] o.s.boot.SpringApplication               : Started application in 4.805 seconds (JVM running for 8.633)
2022-02-03 11:37:03.049  INFO 10764 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-02-03 11:37:03.049  INFO 10764 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2022-02-03 11:37:03.054  INFO 10764 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 3 ms

Browse the application in Browser

Our spring based rest application is now ready. Open url as "http://localhost:8080/" and you will see the following output.

Go to Message

Click on Message link and you will see the following output.

Message: Welcome to TutorialsPoint.Com!

Points to consider

Following actions are taken by Spring CLI.

  • @Grab('spring-boot-starter-thymeleaf') annotation directs CLI to download spring-boot-starter-thymeleaf 2.6.3 version.

  • Spring CLI automatically detects the version using its metadata as we've not specified any group id or version id here.

  • Finally it compiles the code, deploy the war on a embedded tomcat, start embedded tomcat server on the default port 8080.

Spring Boot CLI - Testing Application

In this chapter, we will test the sample project created in Hello World Example Chapter to demonstrate the testing capabilities of Spring CLI. Follow the steps listed in the table below to test the sample project −

Sr.No Step & Description
1 Create FirstApplication.groovy and TestFirstApplication.groovy in Test folder as explained below.
2 Compile and run the application to verify the result of the implemented logic.

FirstApplication/FirstApplication.groovy

@RestController
class FirstApplication {
   @RequestMapping("/")
   
   String welcome() {
      "Welcome to TutorialsPoint.Com"
   }
} 

FirstApplication/TestFirstApplication.groovy

class TestFirstApplication {
   @Test
   void welcomeTest() {
      assertEquals("Welcome to TutorialsPoint.Com", new FirstApplication().welcome())
   }
} 

Run the application

To run the application, type the following command −

E:/Test/FirstApplication/> spring test FirstApplication.groovy TestFirstApplication.groovy

Now Spring Boot CLI will come into action, download the required dependencies, compile the source and test file and unit test the code. The following output will be generated on console −

Resolving dependencies........................................................
.
Time: 0.457

OK (1 test)

Important points

Consider the following points to understand the actions taken by Spring CLI −

  • The @Test annotation directs CLI to download JUnit 4.12 version.

  • Spring CLI automatically detects the version using its metadata, as we have not specified any dependency.

  • Finally, after code compilation, test the application.

Spring Boot CLI - Packaging Application

Spring boot CLI provides jar command in order to package a application as jar file. Let's test the sample project created in Starter Thymeleaf Project Chapter to demonstrate the packaging capabilities of Spring CLI. Follow the below mentioned step to package the sample project.

Package the application

Type the following command

E:/Test/TestApplication/> spring jar TestApplication.jar *.groovy 

Output

Now you can see two new files created in TestApplication folder.

  • TestApplication.jar − An executable jar file.

  • TestApplication.jar.original − Original jar file.

Include/Exclude

By default following directories are included along with their contents.

  • public

  • resources

  • static

  • templates

  • META-INF

By default following directories are excluded along with their contents.

  • repository

  • build

  • target

  • *.jar files

  • *.groovy files

Using --include, we can include directories excluded otherwise. Using --exclude, we can exclude directories included otherwise.

Running the Executable Jar

Type the following command

E:/Test/TestApplication/> java -jar TestApplication.jar

You can see the following output on console.

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.6.3)

2022-02-03 11:47:42.298  INFO 8908 --- [           main] .b.c.a.PackagedSpringApplicationLauncher : Starting PackagedSpringApplicationLauncher using Java 11.0.11 on DESKTOP-86KD9FC with PID 8908 (E:\Test\TestApplication\TestApplication.jar started by intel in E:\Test\TestApplication)
2022-02-03 11:47:42.310  INFO 8908 --- [           main] .b.c.a.PackagedSpringApplicationLauncher : No active profile set, falling back to default profiles: default
2022-02-03 11:47:44.839  INFO 8908 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2022-02-03 11:47:44.863  INFO 8908 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2022-02-03 11:47:44.864  INFO 8908 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.56]
2022-02-03 11:47:44.958  INFO 8908 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2022-02-03 11:47:44.959  INFO 8908 --- [           main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1943 ms
2022-02-03 11:47:45.592  INFO 8908 --- [           main] o.s.b.a.w.s.WelcomePageHandlerMapping    : Adding welcome page: class path resource [static/index.html]
2022-02-03 11:47:46.492  INFO 8908 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2022-02-03 11:47:46.514  INFO 8908 --- [           main] .b.c.a.PackagedSpringApplicationLauncher : Started PackagedSpringApplicationLauncher in 5.295 seconds (JVM running for 6.089)

Browse the application in Browser

Our spring based rest application is now ready. Open url as "http://localhost:8080/" and you will see the following output.

Go to Message

Click on Message link and you will see the following output.

Message: Welcome to TutorialsPoint.Com!

Spring Boot CLI - Creating Project

Spring Boot CLI can be used to create a new project with maven as default build tool using init command. Maven will use https://start.spring.io service. In the following example, we will create a web application using thymeleaf. Go to E:\Test folder and type the following command −

E:/Test> spring init --dependencies = web,thymeleaf MavenApplication.zip

The above command will generate the following output −

Using service at https://start.spring.io
Content saved to MavenApplication.zip

Create Gradle project

We can create a Gradle based project as well by setting --build as gradle. To understand this in a better way, consider the example given below. Go to E:\Test folder and type the following command −

E:/Test> spring init --build = gradle 
--java-version = 1.8 --dependencies = web,thymeleaf 
--packaging = war GradleApplication.zip

The above command will generate the following output −

Using service at https://start.spring.io
Content saved to GradleApplication.zip

Spring Boot CLI - Using Shell

Spring Boot CLI provides a Shell interface to run the commands in which we can directly run the commands as shown below. Go to E:\Test folder and type the following command.

E:/Test> spring shell

You will see the following output.

←[1mSpring Boot←[m←[2m (v2.6.3)←[m
Hit TAB to complete. Type 'help' and hit RETURN for help, and 'exit' to quit.
$

Running commands in Shell.

Type the following and see the output.

version
Spring CLI v2.6.3

You can press tab to auto complete the commands and type exit to finish the shell console.

Testing the application in shell

Type the following and see the output.

$ exit
E:\Test\FirstApplication>
Advertisements