Appendix E. The Executable Jar Format

The spring-boot-loader modules lets Spring Boot support executable jar and war files. If you use the Maven plugin or the Gradle plugin, executable jars are automatically generated, and you generally do not need to know the details of how they work.

If you need to create executable jars from a different build system or if you are just curious about the underlying technology, this section provides some background.

E.1 Nested JARs

Java does not provide any standard way to load nested jar files (that is, jar files that are themselves contained within a jar). This can be problematic if you need to distribute a self-contained application that can be run from the command line without unpacking.

To solve this problem, many developers use “shaded” jars. A shaded jar packages all classes, from all jars, into a single “uber jar”. The problem with shaded jars is that it becomes hard to see which libraries are actually in your application. It can also be problematic if the same filename is used (but with different content) in multiple jars. Spring Boot takes a different approach and lets you actually nest jars directly.

E.1.1 The Executable Jar File Structure

Spring Boot Loader-compatible jar files should be structured in the following way:

example.jar
 |
 +-META-INF
 |  +-MANIFEST.MF
 +-org
 |  +-springframework
 |     +-boot
 |        +-loader
 |           +-<spring boot loader classes>
 +-BOOT-INF
    +-classes
    |  +-mycompany
    |     +-project
    |        +-YourClasses.class
    +-lib
       +-dependency1.jar
       +-dependency2.jar

Application classes should be placed in a nested BOOT-INF/classes directory. Dependencies should be placed in a nested BOOT-INF/lib directory.

E.1.2 The Executable War File Structure

Spring Boot Loader-compatible war files should be structured in the following way:

example.war
 |
 +-META-INF
 |  +-MANIFEST.MF
 +-org
 |  +-springframework
 |     +-boot
 |        +-loader
 |           +-<spring boot loader classes>
 +-WEB-INF
    +-classes
    |  +-com
    |     +-mycompany
    |        +-project
    |           +-YourClasses.class
    +-lib
    |  +-dependency1.jar
    |  +-dependency2.jar
    +-lib-provided
       +-servlet-api.jar
       +-dependency3.jar

Dependencies should be placed in a nested WEB-INF/lib directory. Any dependencies that are required when running embedded but are not required when deploying to a traditional web container should be placed in WEB-INF/lib-provided.

E.2 Spring Boot’s “JarFile” Class

The core class used to support loading nested jars is org.springframework.boot.loader.jar.JarFile. It lets you load jar content from a standard jar file or from nested child jar data. When first loaded, the location of each JarEntry is mapped to a physical file offset of the outer jar, as shown in the following example:

myapp.jar
+-------------------+-------------------------+
| /BOOT-INF/classes | /BOOT-INF/lib/mylib.jar |
|+-----------------+||+-----------+----------+|
||     A.class      |||  B.class  |  C.class ||
|+-----------------+||+-----------+----------+|
+-------------------+-------------------------+
 ^                    ^           ^
 0063                 3452        3980

The preceding example shows how A.class can be found in /BOOT-INF/classes in myapp.jar at position 0063. B.class from the nested jar can actually be found in myapp.jar at position 3452, and C.class is at position 3980.

Armed with this information, we can load specific nested entries by seeking to the appropriate part of the outer jar. We do not need to unpack the archive, and we do not need to read all entry data into memory.

E.2.1 Compatibility with the Standard Java “JarFile”

Spring Boot Loader strives to remain compatible with existing code and libraries. org.springframework.boot.loader.jar.JarFile extends from java.util.jar.JarFile and should work as a drop-in replacement. The getURL() method returns a URL that opens a connection compatible with java.net.JarURLConnection and can be used with Java’s URLClassLoader.

E.3 Launching Executable Jars

The org.springframework.boot.loader.Launcher class is a special bootstrap class that is used as an executable jar’s main entry point. It is the actual Main-Class in your jar file, and it is used to setup an appropriate URLClassLoader and ultimately call your main() method.

There are three launcher subclasses (JarLauncher, WarLauncher, and PropertiesLauncher). Their purpose is to load resources (.class files and so on.) from nested jar files or war files in directories (as opposed to those explicitly on the classpath). In the case of JarLauncher and WarLauncher, the nested paths are fixed. JarLauncher looks in BOOT-INF/lib/, and WarLauncher looks in WEB-INF/lib/ and WEB-INF/lib-provided/. You can add extra jars in those locations if you want more. The PropertiesLauncher looks in BOOT-INF/lib/ in your application archive by default, but you can add additional locations by setting an environment variable called LOADER_PATH or loader.path in loader.properties (which is a comma-separated list of directories, archives, or directories within archives).

E.3.1 Launcher Manifest

You need to specify an appropriate Launcher as the Main-Class attribute of META-INF/MANIFEST.MF. The actual class that you want to launch (that is, the class that contains a main method) should be specified in the Start-Class attribute.

The following example shows a typical MANIFEST.MF for an executable jar file:

Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.mycompany.project.MyApplication

For a war file, it would be as follows:

Main-Class: org.springframework.boot.loader.WarLauncher
Start-Class: com.mycompany.project.MyApplication
[Note]Note

You need not specify Class-Path entries in your manifest file. The classpath is deduced from the nested jars.

E.3.2 Exploded Archives

Certain PaaS implementations may choose to unpack archives before they run. For example, Cloud Foundry operates this way. You can run an unpacked archive by starting the appropriate launcher, as follows:

$ unzip -q myapp.jar
$ java org.springframework.boot.loader.JarLauncher

E.4 PropertiesLauncher Features

PropertiesLauncher has a few special features that can be enabled with external properties (System properties, environment variables, manifest entries, or loader.properties). The following table describes these properties:

KeyPurpose

loader.path

Comma-separated Classpath, such as lib,${HOME}/app/lib. Earlier entries take precedence, like a regular -classpath on the javac command line.

loader.home

Used to resolve relative paths in loader.path. For example, given loader.path=lib, then ${loader.home}/lib is a classpath location (along with all jar files in that directory). This property is also used to locate a loader.properties file, as in the following example /opt/app It defaults to ${user.dir}.

loader.args

Default arguments for the main method (space separated).

loader.main

Name of main class to launch (for example, com.app.Application).

loader.config.name

Name of properties file (for example, launcher) It defaults to loader.

loader.config.location

Path to properties file (for example, classpath:loader.properties). It defaults to loader.properties.

loader.system

Boolean flag to indicate that all properties should be added to System properties It defaults to false.

When specified as environment variables or manifest entries, the following names should be used:

KeyManifest entryEnvironment variable

loader.path

Loader-Path

LOADER_PATH

loader.home

Loader-Home

LOADER_HOME

loader.args

Loader-Args

LOADER_ARGS

loader.main

Start-Class

LOADER_MAIN

loader.config.location

Loader-Config-Location

LOADER_CONFIG_LOCATION

loader.system

Loader-System

LOADER_SYSTEM

[Tip]Tip

Build plugins automatically move the Main-Class attribute to Start-Class when the fat jar is built. If you use that, specify the name of the class to launch by using the Main-Class attribute and leaving out Start-Class.

The following rules apply to working with PropertiesLauncher:

  • loader.properties is searched for in loader.home, then in the root of the classpath, and then in classpath:/BOOT-INF/classes. The first location where a file with that name exists is used.
  • loader.home is the directory location of an additional properties file (overriding the default) only when loader.config.location is not specified.
  • loader.path can contain directories (which are scanned recursively for jar and zip files), archive paths, a directory within an archive that is scanned for jar files (for example, dependencies.jar!/lib), or wildcard patterns (for the default JVM behavior). Archive paths can be relative to loader.home or anywhere in the file system with a jar:file: prefix.
  • loader.path (if empty) defaults to BOOT-INF/lib (meaning a local directory or a nested one if running from an archive). Because of this, PropertiesLauncher behaves the same as JarLauncher when no additional configuration is provided.
  • loader.path can not be used to configure the location of loader.properties (the classpath used to search for the latter is the JVM classpath when PropertiesLauncher is launched).
  • Placeholder replacement is done from System and environment variables plus the properties file itself on all values before use.
  • The search order for properties (where it makes sense to look in more than one place) is environment variables, system properties, loader.properties, the exploded archive manifest, and the archive manifest.

E.5 Executable Jar Restrictions

You need to consider the following restrictions when working with a Spring Boot Loader packaged application:

  • Zip entry compression: The ZipEntry for a nested jar must be saved by using the ZipEntry.STORED method. This is required so that we can seek directly to individual content within the nested jar. The content of the nested jar file itself can still be compressed, as can any other entries in the outer jar.
  • System classLoader: Launched applications should use Thread.getContextClassLoader() when loading classes (most libraries and frameworks do so by default). Trying to load nested jar classes with ClassLoader.getSystemClassLoader() fails. java.util.Logging always uses the system classloader. For this reason, you should consider a different logging implementation.

E.6 Alternative Single Jar Solutions

If the preceding restrictions mean that you cannot use Spring Boot Loader, consider the following alternatives:

  • Maven Shade Plugin
  • JarClassLoader
  • OneJar == Dependency versions The following table provides details of all of the dependency versions that are provided by Spring Boot in its CLI (Command Line Interface), Maven dependency management, and Gradle plugin. When you declare a dependency on one of these artifacts without declaring a version, the version listed in the table is used.
Group IDArtifact IDVersion

antlr

antlr

2.7.7

ch.qos.logback

logback-access

1.2.3

ch.qos.logback

logback-classic

1.2.3

ch.qos.logback

logback-core

1.2.3

com.atomikos

transactions-jdbc

4.0.4

com.atomikos

transactions-jms

4.0.4

com.atomikos

transactions-jta

4.0.4

com.couchbase.client

couchbase-spring-cache

2.1.0

com.couchbase.client

java-client

2.5.1

com.datastax.cassandra

cassandra-driver-core

3.3.0

com.datastax.cassandra

cassandra-driver-mapping

3.3.0

com.fasterxml

classmate

1.3.4

com.fasterxml.jackson.core

jackson-annotations

2.9.0

com.fasterxml.jackson.core

jackson-core

2.9.2

com.fasterxml.jackson.core

jackson-databind

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-avro

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-cbor

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-csv

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-ion

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-properties

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-protobuf

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-smile

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-xml

2.9.2

com.fasterxml.jackson.dataformat

jackson-dataformat-yaml

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-guava

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-hibernate3

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-hibernate4

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-hibernate5

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-hppc

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-jaxrs

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-jdk8

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-joda

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-json-org

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-jsr310

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-jsr353

2.9.2

com.fasterxml.jackson.datatype

jackson-datatype-pcollections

2.9.2

com.fasterxml.jackson.jaxrs

jackson-jaxrs-base

2.9.2

com.fasterxml.jackson.jaxrs

jackson-jaxrs-cbor-provider

2.9.2

com.fasterxml.jackson.jaxrs

jackson-jaxrs-json-provider

2.9.2

com.fasterxml.jackson.jaxrs

jackson-jaxrs-smile-provider

2.9.2

com.fasterxml.jackson.jaxrs

jackson-jaxrs-xml-provider

2.9.2

com.fasterxml.jackson.jaxrs

jackson-jaxrs-yaml-provider

2.9.2

com.fasterxml.jackson.jr

jackson-jr-all

2.9.2

com.fasterxml.jackson.jr

jackson-jr-objects

2.9.2

com.fasterxml.jackson.jr

jackson-jr-retrofit2

2.9.2

com.fasterxml.jackson.jr

jackson-jr-stree

2.9.2

com.fasterxml.jackson.module

jackson-module-afterburner

2.9.2

com.fasterxml.jackson.module

jackson-module-guice

2.9.2

com.fasterxml.jackson.module

jackson-module-jaxb-annotations

2.9.2

com.fasterxml.jackson.module

jackson-module-jsonSchema

2.9.2

com.fasterxml.jackson.module

jackson-module-kotlin

2.9.2

com.fasterxml.jackson.module

jackson-module-mrbean

2.9.2

com.fasterxml.jackson.module

jackson-module-osgi

2.9.2

com.fasterxml.jackson.module

jackson-module-parameter-names

2.9.2

com.fasterxml.jackson.module

jackson-module-paranamer

2.9.2

com.fasterxml.jackson.module

jackson-module-scala_2.10

2.9.2

com.fasterxml.jackson.module

jackson-module-scala_2.11

2.9.2

com.fasterxml.jackson.module

jackson-module-scala_2.12

2.9.2

com.github.ben-manes.caffeine

caffeine

2.6.0

com.github.mxab.thymeleaf.extras

thymeleaf-extras-data-attribute

2.0.1

com.google.appengine

appengine-api-1.0-sdk

1.9.59

com.google.code.gson

gson

2.8.2

com.googlecode.json-simple

json-simple

1.1.1

com.h2database

h2

1.4.196

com.hazelcast

hazelcast

3.9

com.hazelcast

hazelcast-client

3.9

com.hazelcast

hazelcast-hibernate52

1.2.2

com.hazelcast

hazelcast-spring

3.9

com.jayway.jsonpath

json-path

2.4.0

com.jayway.jsonpath

json-path-assert

2.4.0

com.microsoft.sqlserver

mssql-jdbc

6.2.2.jre8

com.querydsl

querydsl-apt

4.1.4

com.querydsl

querydsl-collections

4.1.4

com.querydsl

querydsl-core

4.1.4

com.querydsl

querydsl-jpa

4.1.4

com.querydsl

querydsl-mongodb

4.1.4

com.samskivert

jmustache

1.13

com.sendgrid

sendgrid-java

4.1.2

com.sun.mail

javax.mail

1.6.0

com.timgroup

java-statsd-client

3.1.0

com.unboundid

unboundid-ldapsdk

4.0.1

com.zaxxer

HikariCP

2.7.2

commons-beanutils

commons-beanutils

1.9.3

commons-codec

commons-codec

1.11

commons-collections

commons-collections

3.2.2

commons-digester

commons-digester

2.1

commons-pool

commons-pool

1.6

de.flapdoodle.embed

de.flapdoodle.embed.mongo

2.0.0

dom4j

dom4j

1.6.1

io.dropwizard.metrics

metrics-annotation

3.2.5

io.dropwizard.metrics

metrics-core

3.2.5

io.dropwizard.metrics

metrics-ehcache

3.2.5

io.dropwizard.metrics

metrics-ganglia

3.2.5

io.dropwizard.metrics

metrics-graphite

3.2.5

io.dropwizard.metrics

metrics-healthchecks

3.2.5

io.dropwizard.metrics

metrics-httpasyncclient

3.2.5

io.dropwizard.metrics

metrics-jdbi

3.2.5

io.dropwizard.metrics

metrics-jersey

3.2.5

io.dropwizard.metrics

metrics-jersey2

3.2.5

io.dropwizard.metrics

metrics-jetty8

3.2.5

io.dropwizard.metrics

metrics-jetty9

3.2.5

io.dropwizard.metrics

metrics-jetty9-legacy

3.2.5

io.dropwizard.metrics

metrics-json

3.2.5

io.dropwizard.metrics

metrics-jvm

3.2.5

io.dropwizard.metrics

metrics-log4j

3.2.5

io.dropwizard.metrics

metrics-log4j2

3.2.5

io.dropwizard.metrics

metrics-logback

3.2.5

io.dropwizard.metrics

metrics-servlet

3.2.5

io.dropwizard.metrics

metrics-servlets

3.2.5

io.lettuce

lettuce-core

5.0.0.RELEASE

io.micrometer

micrometer-core

1.0.0-rc.3

io.micrometer

micrometer-registry-atlas

1.0.0-rc.3

io.micrometer

micrometer-registry-datadog

1.0.0-rc.3

io.micrometer

micrometer-registry-ganglia

1.0.0-rc.3

io.micrometer

micrometer-registry-graphite

1.0.0-rc.3

io.micrometer

micrometer-registry-influx

1.0.0-rc.3

io.micrometer

micrometer-registry-jmx

1.0.0-rc.3

io.micrometer

micrometer-registry-prometheus

1.0.0-rc.3

io.micrometer

micrometer-registry-statsd

1.0.0-rc.3

io.netty

netty-all

4.1.16.Final

io.netty

netty-buffer

4.1.16.Final

io.netty

netty-codec

4.1.16.Final

io.netty

netty-codec-dns

4.1.16.Final

io.netty

netty-codec-haproxy

4.1.16.Final

io.netty

netty-codec-http

4.1.16.Final

io.netty

netty-codec-http2

4.1.16.Final

io.netty

netty-codec-memcache

4.1.16.Final

io.netty

netty-codec-mqtt

4.1.16.Final

io.netty

netty-codec-redis

4.1.16.Final

io.netty

netty-codec-smtp

4.1.16.Final

io.netty

netty-codec-socks

4.1.16.Final

io.netty

netty-codec-stomp

4.1.16.Final

io.netty

netty-codec-xml

4.1.16.Final

io.netty

netty-common

4.1.16.Final

io.netty

netty-dev-tools

4.1.16.Final

io.netty

netty-example

4.1.16.Final

io.netty

netty-handler

4.1.16.Final

io.netty

netty-handler-proxy

4.1.16.Final

io.netty

netty-resolver

4.1.16.Final

io.netty

netty-resolver-dns

4.1.16.Final

io.netty

netty-transport

4.1.16.Final

io.netty

netty-transport-native-epoll

4.1.16.Final

io.netty

netty-transport-native-kqueue

4.1.16.Final

io.netty

netty-transport-native-unix-common

4.1.16.Final

io.netty

netty-transport-rxtx

4.1.16.Final

io.netty

netty-transport-sctp

4.1.16.Final

io.netty

netty-transport-udt

4.1.16.Final

io.projectreactor

reactor-core

3.1.1.RELEASE

io.projectreactor

reactor-test

3.1.1.RELEASE

io.projectreactor.addons

reactor-adapter

3.1.2.RELEASE

io.projectreactor.addons

reactor-extra

3.1.2.RELEASE

io.projectreactor.addons

reactor-logback

3.1.2.RELEASE

io.projectreactor.ipc

reactor-netty

0.7.1.RELEASE

io.projectreactor.kafka

reactor-kafka

1.0.0.RELEASE

io.reactivex

rxjava

1.3.3

io.reactivex

rxjava-reactive-streams

1.2.1

io.reactivex.rxjava2

rxjava

2.1.6

io.rest-assured

rest-assured

3.0.5

io.searchbox

jest

5.3.3

io.undertow

undertow-core

1.4.21.Final

io.undertow

undertow-servlet

1.4.21.Final

io.undertow

undertow-websockets-jsr

1.4.21.Final

javax.annotation

javax.annotation-api

1.3.1

javax.cache

cache-api

1.0.0

javax.jms

javax.jms-api

2.0.1

javax.json

javax.json-api

1.1.2

javax.json.bind

javax.json.bind-api

1.0

javax.mail

javax.mail-api

1.6.0

javax.servlet

javax.servlet-api

3.1.0

javax.servlet

jstl

1.2

javax.transaction

javax.transaction-api

1.2

javax.validation

validation-api

2.0.0.Final

jaxen

jaxen

1.1.6

joda-time

joda-time

2.9.9

junit

junit

4.12

mysql

mysql-connector-java

5.1.44

net.bytebuddy

byte-buddy

1.7.8

net.bytebuddy

byte-buddy-agent

1.7.8

net.java.dev.jna

jna

4.5.0

net.java.dev.jna

jna-platform

4.5.0

net.sf.ehcache

ehcache

2.10.4

net.sourceforge.htmlunit

htmlunit

2.27

net.sourceforge.jtds

jtds

1.3.1

net.sourceforge.nekohtml

nekohtml

1.9.22

nz.net.ultraq.thymeleaf

thymeleaf-layout-dialect

2.2.2

org.apache.activemq

activemq-amqp

5.15.2

org.apache.activemq

activemq-blueprint

5.15.2

org.apache.activemq

activemq-broker

5.15.2

org.apache.activemq

activemq-camel

5.15.2

org.apache.activemq

activemq-client

5.15.2

org.apache.activemq

activemq-console

5.15.2

org.apache.activemq

activemq-http

5.15.2

org.apache.activemq

activemq-jaas

5.15.2

org.apache.activemq

activemq-jdbc-store

5.15.2

org.apache.activemq

activemq-jms-pool

5.15.2

org.apache.activemq

activemq-kahadb-store

5.15.2

org.apache.activemq

activemq-karaf

5.15.2

org.apache.activemq

activemq-leveldb-store

5.15.2

org.apache.activemq

activemq-log4j-appender

5.15.2

org.apache.activemq

activemq-mqtt

5.15.2

org.apache.activemq

activemq-openwire-generator

5.15.2

org.apache.activemq

activemq-openwire-legacy

5.15.2

org.apache.activemq

activemq-osgi

5.15.2

org.apache.activemq

activemq-partition

5.15.2

org.apache.activemq

activemq-pool

5.15.2

org.apache.activemq

activemq-ra

5.15.2

org.apache.activemq

activemq-run

5.15.2

org.apache.activemq

activemq-runtime-config

5.15.2

org.apache.activemq

activemq-shiro

5.15.2

org.apache.activemq

activemq-spring

5.15.2

org.apache.activemq

activemq-stomp

5.15.2

org.apache.activemq

activemq-web

5.15.2

org.apache.activemq

artemis-amqp-protocol

2.3.0

org.apache.activemq

artemis-commons

2.3.0

org.apache.activemq

artemis-core-client

2.3.0

org.apache.activemq

artemis-jms-client

2.3.0

org.apache.activemq

artemis-jms-server

2.3.0

org.apache.activemq

artemis-journal

2.3.0

org.apache.activemq

artemis-native

2.3.0

org.apache.activemq

artemis-selector

2.3.0

org.apache.activemq

artemis-server

2.3.0

org.apache.activemq

artemis-service-extensions

2.3.0

org.apache.commons

commons-dbcp2

2.1.1

org.apache.commons

commons-lang3

3.6

org.apache.commons

commons-pool2

2.4.3

org.apache.derby

derby

10.14.1.0

org.apache.httpcomponents

httpasyncclient

4.1.3

org.apache.httpcomponents

httpclient

4.5.3

org.apache.httpcomponents

httpcore

4.4.8

org.apache.httpcomponents

httpcore-nio

4.4.8

org.apache.httpcomponents

httpmime

4.5.3

org.apache.johnzon

johnzon-jsonb

1.1.4

org.apache.logging.log4j

log4j-1.2-api

2.9.1

org.apache.logging.log4j

log4j-api

2.9.1

org.apache.logging.log4j

log4j-core

2.9.1

org.apache.logging.log4j

log4j-flume-ng

2.9.1

org.apache.logging.log4j

log4j-iostreams

2.9.1

org.apache.logging.log4j

log4j-jcl

2.9.1

org.apache.logging.log4j

log4j-jmx-gui

2.9.1

org.apache.logging.log4j

log4j-jul

2.9.1

org.apache.logging.log4j

log4j-liquibase

2.9.1

org.apache.logging.log4j

log4j-nosql

2.9.1

org.apache.logging.log4j

log4j-slf4j-impl

2.9.1

org.apache.logging.log4j

log4j-taglib

2.9.1

org.apache.logging.log4j

log4j-to-slf4j

2.9.1

org.apache.logging.log4j

log4j-web

2.9.1

org.apache.solr

solr-analysis-extras

6.6.2

org.apache.solr

solr-analytics

6.6.2

org.apache.solr

solr-cell

6.6.2

org.apache.solr

solr-clustering

6.6.2

org.apache.solr

solr-core

6.6.2

org.apache.solr

solr-dataimporthandler

6.6.2

org.apache.solr

solr-dataimporthandler-extras

6.6.2

org.apache.solr

solr-langid

6.6.2

org.apache.solr

solr-solrj

6.6.2

org.apache.solr

solr-test-framework

6.6.2

org.apache.solr

solr-uima

6.6.2

org.apache.solr

solr-velocity

6.6.2

org.apache.tomcat

tomcat-annotations-api

8.5.23

org.apache.tomcat

tomcat-catalina-jmx-remote

8.5.23

org.apache.tomcat

tomcat-jdbc

8.5.23

org.apache.tomcat

tomcat-jsp-api

8.5.23

org.apache.tomcat.embed

tomcat-embed-core

8.5.23

org.apache.tomcat.embed

tomcat-embed-el

8.5.23

org.apache.tomcat.embed

tomcat-embed-jasper

8.5.23

org.apache.tomcat.embed

tomcat-embed-websocket

8.5.23

org.aspectj

aspectjrt

1.8.12

org.aspectj

aspectjtools

1.8.12

org.aspectj

aspectjweaver

1.8.12

org.assertj

assertj-core

3.8.0

org.codehaus.btm

btm

2.1.4

org.codehaus.groovy

groovy

2.5.0-beta-1

org.codehaus.groovy

groovy-all

2.5.0-beta-1

org.codehaus.groovy

groovy-ant

2.5.0-beta-1

org.codehaus.groovy

groovy-bsf

2.5.0-beta-1

org.codehaus.groovy

groovy-console

2.5.0-beta-1

org.codehaus.groovy

groovy-docgenerator

2.5.0-beta-1

org.codehaus.groovy

groovy-groovydoc

2.5.0-beta-1

org.codehaus.groovy

groovy-groovysh

2.5.0-beta-1

org.codehaus.groovy

groovy-jmx

2.5.0-beta-1

org.codehaus.groovy

groovy-json

2.5.0-beta-1

org.codehaus.groovy

groovy-jsr223

2.5.0-beta-1

org.codehaus.groovy

groovy-nio

2.5.0-beta-1

org.codehaus.groovy

groovy-servlet

2.5.0-beta-1

org.codehaus.groovy

groovy-sql

2.5.0-beta-1

org.codehaus.groovy

groovy-swing

2.5.0-beta-1

org.codehaus.groovy

groovy-templates

2.5.0-beta-1

org.codehaus.groovy

groovy-test

2.5.0-beta-1

org.codehaus.groovy

groovy-testng

2.5.0-beta-1

org.codehaus.groovy

groovy-xml

2.5.0-beta-1

org.codehaus.janino

janino

3.0.7

org.eclipse.jetty

apache-jsp

9.4.7.v20170914

org.eclipse.jetty

apache-jstl

9.4.7.v20170914

org.eclipse.jetty

jetty-alpn-client

9.4.7.v20170914

org.eclipse.jetty

jetty-alpn-java-client

9.4.7.v20170914

org.eclipse.jetty

jetty-alpn-java-server

9.4.7.v20170914

org.eclipse.jetty

jetty-alpn-server

9.4.7.v20170914

org.eclipse.jetty

jetty-annotations

9.4.7.v20170914

org.eclipse.jetty

jetty-ant

9.4.7.v20170914

org.eclipse.jetty

jetty-client

9.4.7.v20170914

org.eclipse.jetty

jetty-continuation

9.4.7.v20170914

org.eclipse.jetty

jetty-deploy

9.4.7.v20170914

org.eclipse.jetty

jetty-hazelcast

9.4.7.v20170914

org.eclipse.jetty

jetty-http

9.4.7.v20170914

org.eclipse.jetty

jetty-http-spi

9.4.7.v20170914

org.eclipse.jetty

jetty-infinispan

9.4.7.v20170914

org.eclipse.jetty

jetty-io

9.4.7.v20170914

org.eclipse.jetty

jetty-jaas

9.4.7.v20170914

org.eclipse.jetty

jetty-jaspi

9.4.7.v20170914

org.eclipse.jetty

jetty-jmx

9.4.7.v20170914

org.eclipse.jetty

jetty-jndi

9.4.7.v20170914

org.eclipse.jetty

jetty-nosql

9.4.7.v20170914

org.eclipse.jetty

jetty-plus

9.4.7.v20170914

org.eclipse.jetty

jetty-proxy

9.4.7.v20170914

org.eclipse.jetty

jetty-quickstart

9.4.7.v20170914

org.eclipse.jetty

jetty-rewrite

9.4.7.v20170914

org.eclipse.jetty

jetty-runner

9.4.7.v20170914

org.eclipse.jetty

jetty-security

9.4.7.v20170914

org.eclipse.jetty

jetty-server

9.4.7.v20170914

org.eclipse.jetty

jetty-servlet

9.4.7.v20170914

org.eclipse.jetty

jetty-servlets

9.4.7.v20170914

org.eclipse.jetty

jetty-spring

9.4.7.v20170914

org.eclipse.jetty

jetty-start

9.4.7.v20170914

org.eclipse.jetty

jetty-unixsocket

9.4.7.v20170914

org.eclipse.jetty

jetty-util

9.4.7.v20170914

org.eclipse.jetty

jetty-util-ajax

9.4.7.v20170914

org.eclipse.jetty

jetty-webapp

9.4.7.v20170914

org.eclipse.jetty

jetty-xml

9.4.7.v20170914

org.eclipse.jetty.cdi

cdi-core

9.4.7.v20170914

org.eclipse.jetty.cdi

cdi-servlet

9.4.7.v20170914

org.eclipse.jetty.fcgi

fcgi-client

9.4.7.v20170914

org.eclipse.jetty.fcgi

fcgi-server

9.4.7.v20170914

org.eclipse.jetty.gcloud

jetty-gcloud-session-manager

9.4.7.v20170914

org.eclipse.jetty.http2

http2-client

9.4.7.v20170914

org.eclipse.jetty.http2

http2-common

9.4.7.v20170914

org.eclipse.jetty.http2

http2-hpack

9.4.7.v20170914

org.eclipse.jetty.http2

http2-http-client-transport

9.4.7.v20170914

org.eclipse.jetty.http2

http2-server

9.4.7.v20170914

org.eclipse.jetty.memcached

jetty-memcached-sessions

9.4.7.v20170914

org.eclipse.jetty.orbit

javax.servlet.jsp

2.2.0.v201112011158

org.eclipse.jetty.osgi

jetty-httpservice

9.4.7.v20170914

org.eclipse.jetty.osgi

jetty-osgi-boot

9.4.7.v20170914

org.eclipse.jetty.osgi

jetty-osgi-boot-jsp

9.4.7.v20170914

org.eclipse.jetty.osgi

jetty-osgi-boot-warurl

9.4.7.v20170914

org.eclipse.jetty.websocket

javax-websocket-client-impl

9.4.7.v20170914

org.eclipse.jetty.websocket

javax-websocket-server-impl

9.4.7.v20170914

org.eclipse.jetty.websocket

websocket-api

9.4.7.v20170914

org.eclipse.jetty.websocket

websocket-client

9.4.7.v20170914

org.eclipse.jetty.websocket

websocket-common

9.4.7.v20170914

org.eclipse.jetty.websocket

websocket-server

9.4.7.v20170914

org.eclipse.jetty.websocket

websocket-servlet

9.4.7.v20170914

org.ehcache

ehcache

3.4.0

org.ehcache

ehcache-clustered

3.4.0

org.ehcache

ehcache-transactions

3.4.0

org.elasticsearch

elasticsearch

5.5.3

org.elasticsearch.client

transport

5.5.3

org.elasticsearch.plugin

transport-netty4-client

5.5.3

org.firebirdsql.jdbc

jaybird-jdk17

3.0.2

org.firebirdsql.jdbc

jaybird-jdk18

3.0.2

org.flywaydb

flyway-core

4.2.0

org.freemarker

freemarker

2.3.27-incubating

org.glassfish

javax.el

3.0.0

org.glassfish.jersey.containers

jersey-container-servlet

2.26

org.glassfish.jersey.containers

jersey-container-servlet-core

2.26

org.glassfish.jersey.core

jersey-client

2.26

org.glassfish.jersey.core

jersey-common

2.26

org.glassfish.jersey.core

jersey-server

2.26

org.glassfish.jersey.ext

jersey-bean-validation

2.26

org.glassfish.jersey.ext

jersey-entity-filtering

2.26

org.glassfish.jersey.ext

jersey-spring4

2.26

org.glassfish.jersey.media

jersey-media-jaxb

2.26

org.glassfish.jersey.media

jersey-media-json-jackson

2.26

org.glassfish.jersey.media

jersey-media-multipart

2.26

org.hamcrest

hamcrest-core

1.3

org.hamcrest

hamcrest-library

1.3

org.hdrhistogram

HdrHistogram

2.1.10

org.hibernate

hibernate-c3p0

5.2.12.Final

org.hibernate

hibernate-core

5.2.12.Final

org.hibernate

hibernate-ehcache

5.2.12.Final

org.hibernate

hibernate-entitymanager

5.2.12.Final

org.hibernate

hibernate-envers

5.2.12.Final

org.hibernate

hibernate-hikaricp

5.2.12.Final

org.hibernate

hibernate-infinispan

5.2.12.Final

org.hibernate

hibernate-java8

5.2.12.Final

org.hibernate

hibernate-jcache

5.2.12.Final

org.hibernate

hibernate-jpamodelgen

5.2.12.Final

org.hibernate

hibernate-proxool

5.2.12.Final

org.hibernate

hibernate-spatial

5.2.12.Final

org.hibernate

hibernate-testing

5.2.12.Final

org.hibernate

hibernate-validator-annotation-processor

6.0.4.Final

org.hibernate.validator

hibernate-validator

6.0.4.Final

org.hsqldb

hsqldb

2.4.0

org.infinispan

infinispan-jcache

9.1.2.Final

org.infinispan

infinispan-spring4-common

9.1.2.Final

org.infinispan

infinispan-spring4-embedded

9.1.2.Final

org.influxdb

influxdb-java

2.7

org.javassist

javassist

3.22.0-CR2

org.jboss

jboss-transaction-spi

7.6.0.Final

org.jboss.logging

jboss-logging

3.3.1.Final

org.jboss.narayana.jta

jdbc

5.7.1.Final

org.jboss.narayana.jta

jms

5.7.1.Final

org.jboss.narayana.jta

jta

5.7.1.Final

org.jboss.narayana.jts

narayana-jts-integration

5.7.1.Final

org.jdom

jdom2

2.0.6

org.jetbrains.kotlin

kotlin-reflect

1.1.51

org.jetbrains.kotlin

kotlin-runtime

1.1.51

org.jetbrains.kotlin

kotlin-stdlib

1.1.51

org.jetbrains.kotlin

kotlin-stdlib-jre7

1.1.51

org.jetbrains.kotlin

kotlin-stdlib-jre8

1.1.51

org.jolokia

jolokia-core

1.3.7

org.jooq

jooq

3.10.1

org.jooq

jooq-codegen

3.10.1

org.jooq

jooq-meta

3.10.1

org.junit.jupiter

junit-jupiter-api

5.0.1

org.junit.jupiter

junit-jupiter-engine

5.0.1

org.liquibase

liquibase-core

3.5.3

org.mariadb.jdbc

mariadb-java-client

2.1.2

org.mockito

mockito-core

2.11.0

org.mockito

mockito-inline

2.11.0

org.mongodb

bson

3.5.0

org.mongodb

mongodb-driver

3.5.0

org.mongodb

mongodb-driver-async

3.5.0

org.mongodb

mongodb-driver-core

3.5.0

org.mongodb

mongodb-driver-reactivestreams

1.6.0

org.mongodb

mongo-java-driver

3.5.0

org.mortbay.jasper

apache-el

8.5.23

org.neo4j

neo4j-ogm-api

3.0.1

org.neo4j

neo4j-ogm-bolt-driver

3.0.1

org.neo4j

neo4j-ogm-core

3.0.1

org.neo4j

neo4j-ogm-http-driver

3.0.1

org.postgresql

postgresql

42.1.4

org.projectlombok

lombok

1.16.18

org.quartz-scheduler

quartz

2.3.0

org.reactivestreams

reactive-streams

1.0.1

org.seleniumhq.selenium

htmlunit-driver

2.27

org.seleniumhq.selenium

selenium-api

3.7.0

org.seleniumhq.selenium

selenium-chrome-driver

3.7.0

org.seleniumhq.selenium

selenium-firefox-driver

3.7.0

org.seleniumhq.selenium

selenium-ie-driver

3.7.0

org.seleniumhq.selenium

selenium-java

3.7.0

org.seleniumhq.selenium

selenium-remote-driver

3.7.0

org.seleniumhq.selenium

selenium-safari-driver

3.7.0

org.seleniumhq.selenium

selenium-support

3.7.0

org.skyscreamer

jsonassert

1.5.0

org.slf4j

jcl-over-slf4j

1.7.25

org.slf4j

jul-to-slf4j

1.7.25

org.slf4j

log4j-over-slf4j

1.7.25

org.slf4j

slf4j-api

1.7.25

org.slf4j

slf4j-ext

1.7.25

org.slf4j

slf4j-jcl

1.7.25

org.slf4j

slf4j-jdk14

1.7.25

org.slf4j

slf4j-log4j12

1.7.25

org.slf4j

slf4j-nop

1.7.25

org.slf4j

slf4j-simple

1.7.25

org.springframework

spring-aop

5.0.1.RELEASE

org.springframework

spring-aspects

5.0.1.RELEASE

org.springframework

spring-beans

5.0.1.RELEASE

org.springframework

spring-context

5.0.1.RELEASE

org.springframework

spring-context-indexer

5.0.1.RELEASE

org.springframework

spring-context-support

5.0.1.RELEASE

org.springframework

spring-core

5.0.1.RELEASE

org.springframework

spring-expression

5.0.1.RELEASE

org.springframework

spring-instrument

5.0.1.RELEASE

org.springframework

spring-jcl

5.0.1.RELEASE

org.springframework

spring-jdbc

5.0.1.RELEASE

org.springframework

spring-jms

5.0.1.RELEASE

org.springframework

spring-messaging

5.0.1.RELEASE

org.springframework

spring-orm

5.0.1.RELEASE

org.springframework

spring-oxm

5.0.1.RELEASE

org.springframework

spring-test

5.0.1.RELEASE

org.springframework

spring-tx

5.0.1.RELEASE

org.springframework

spring-web

5.0.1.RELEASE

org.springframework

spring-webflux

5.0.1.RELEASE

org.springframework

spring-webmvc

5.0.1.RELEASE

org.springframework

spring-websocket

5.0.1.RELEASE

org.springframework.amqp

spring-amqp

2.0.0.RELEASE

org.springframework.amqp

spring-rabbit

2.0.0.RELEASE

org.springframework.batch

spring-batch-core

4.0.0.M5

org.springframework.batch

spring-batch-infrastructure

4.0.0.M5

org.springframework.batch

spring-batch-integration

4.0.0.M5

org.springframework.batch

spring-batch-test

4.0.0.M5

org.springframework.boot

spring-boot

2.0.0.M6

org.springframework.boot

spring-boot-actuator

2.0.0.M6

org.springframework.boot

spring-boot-actuator-autoconfigure

2.0.0.M6

org.springframework.boot

spring-boot-autoconfigure

2.0.0.M6

org.springframework.boot

spring-boot-autoconfigure-processor

2.0.0.M6

org.springframework.boot

spring-boot-configuration-metadata

2.0.0.M6

org.springframework.boot

spring-boot-configuration-processor

2.0.0.M6

org.springframework.boot

spring-boot-devtools

2.0.0.M6

org.springframework.boot

spring-boot-loader

2.0.0.M6

org.springframework.boot

spring-boot-loader-tools

2.0.0.M6

org.springframework.boot

spring-boot-starter

2.0.0.M6

org.springframework.boot

spring-boot-starter-activemq

2.0.0.M6

org.springframework.boot

spring-boot-starter-actuator

2.0.0.M6

org.springframework.boot

spring-boot-starter-amqp

2.0.0.M6

org.springframework.boot

spring-boot-starter-aop

2.0.0.M6

org.springframework.boot

spring-boot-starter-artemis

2.0.0.M6

org.springframework.boot

spring-boot-starter-batch

2.0.0.M6

org.springframework.boot

spring-boot-starter-cache

2.0.0.M6

org.springframework.boot

spring-boot-starter-cloud-connectors

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-cassandra

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-cassandra-reactive

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-couchbase

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-elasticsearch

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-jpa

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-ldap

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-mongodb

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-mongodb-reactive

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-neo4j

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-redis

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-redis-reactive

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-rest

2.0.0.M6

org.springframework.boot

spring-boot-starter-data-solr

2.0.0.M6

org.springframework.boot

spring-boot-starter-freemarker

2.0.0.M6

org.springframework.boot

spring-boot-starter-groovy-templates

2.0.0.M6

org.springframework.boot

spring-boot-starter-hateoas

2.0.0.M6

org.springframework.boot

spring-boot-starter-integration

2.0.0.M6

org.springframework.boot

spring-boot-starter-jdbc

2.0.0.M6

org.springframework.boot

spring-boot-starter-jersey

2.0.0.M6

org.springframework.boot

spring-boot-starter-jetty

2.0.0.M6

org.springframework.boot

spring-boot-starter-jooq

2.0.0.M6

org.springframework.boot

spring-boot-starter-json

2.0.0.M6

org.springframework.boot

spring-boot-starter-jta-atomikos

2.0.0.M6

org.springframework.boot

spring-boot-starter-jta-bitronix

2.0.0.M6

org.springframework.boot

spring-boot-starter-jta-narayana

2.0.0.M6

org.springframework.boot

spring-boot-starter-log4j2

2.0.0.M6

org.springframework.boot

spring-boot-starter-logging

2.0.0.M6

org.springframework.boot

spring-boot-starter-mail

2.0.0.M6

org.springframework.boot

spring-boot-starter-mustache

2.0.0.M6

org.springframework.boot

spring-boot-starter-quartz

2.0.0.M6

org.springframework.boot

spring-boot-starter-reactor-netty

2.0.0.M6

org.springframework.boot

spring-boot-starter-security

2.0.0.M6

org.springframework.boot

spring-boot-starter-social-facebook

2.0.0.M6

org.springframework.boot

spring-boot-starter-social-linkedin

2.0.0.M6

org.springframework.boot

spring-boot-starter-social-twitter

2.0.0.M6

org.springframework.boot

spring-boot-starter-test

2.0.0.M6

org.springframework.boot

spring-boot-starter-thymeleaf

2.0.0.M6

org.springframework.boot

spring-boot-starter-tomcat

2.0.0.M6

org.springframework.boot

spring-boot-starter-undertow

2.0.0.M6

org.springframework.boot

spring-boot-starter-validation

2.0.0.M6

org.springframework.boot

spring-boot-starter-web

2.0.0.M6

org.springframework.boot

spring-boot-starter-webflux

2.0.0.M6

org.springframework.boot

spring-boot-starter-web-services

2.0.0.M6

org.springframework.boot

spring-boot-starter-websocket

2.0.0.M6

org.springframework.boot

spring-boot-test

2.0.0.M6

org.springframework.boot

spring-boot-test-autoconfigure

2.0.0.M6

org.springframework.cloud

spring-cloud-cloudfoundry-connector

2.0.0.RELEASE

org.springframework.cloud

spring-cloud-connectors-core

2.0.0.RELEASE

org.springframework.cloud

spring-cloud-heroku-connector

2.0.0.RELEASE

org.springframework.cloud

spring-cloud-localconfig-connector

2.0.0.RELEASE

org.springframework.cloud

spring-cloud-spring-service-connector

2.0.0.RELEASE

org.springframework.data

spring-data-cassandra

2.0.1.RELEASE

org.springframework.data

spring-data-commons

2.0.1.RELEASE

org.springframework.data

spring-data-couchbase

3.0.1.RELEASE

org.springframework.data

spring-data-elasticsearch

3.0.1.RELEASE

org.springframework.data

spring-data-envers

2.0.1.RELEASE

org.springframework.data

spring-data-gemfire

2.0.1.RELEASE

org.springframework.data

spring-data-geode

2.0.1.RELEASE

org.springframework.data

spring-data-jpa

2.0.1.RELEASE

org.springframework.data

spring-data-keyvalue

2.0.1.RELEASE

org.springframework.data

spring-data-ldap

2.0.1.RELEASE

org.springframework.data

spring-data-mongodb

2.0.1.RELEASE

org.springframework.data

spring-data-mongodb-cross-store

2.0.1.RELEASE

org.springframework.data

spring-data-neo4j

5.0.1.RELEASE

org.springframework.data

spring-data-redis

2.0.1.RELEASE

org.springframework.data

spring-data-rest-core

3.0.1.RELEASE

org.springframework.data

spring-data-rest-hal-browser

3.0.1.RELEASE

org.springframework.data

spring-data-rest-webmvc

3.0.1.RELEASE

org.springframework.data

spring-data-solr

3.0.1.RELEASE

org.springframework.hateoas

spring-hateoas

0.24.0.RELEASE

org.springframework.integration

spring-integration-amqp

5.0.0.RC1

org.springframework.integration

spring-integration-core

5.0.0.RC1

org.springframework.integration

spring-integration-event

5.0.0.RC1

org.springframework.integration

spring-integration-feed

5.0.0.RC1

org.springframework.integration

spring-integration-file

5.0.0.RC1

org.springframework.integration

spring-integration-ftp

5.0.0.RC1

org.springframework.integration

spring-integration-gemfire

5.0.0.RC1

org.springframework.integration

spring-integration-groovy

5.0.0.RC1

org.springframework.integration

spring-integration-http

5.0.0.RC1

org.springframework.integration

spring-integration-ip

5.0.0.RC1

org.springframework.integration

spring-integration-jdbc

5.0.0.RC1

org.springframework.integration

spring-integration-jms

5.0.0.RC1

org.springframework.integration

spring-integration-jmx

5.0.0.RC1

org.springframework.integration

spring-integration-jpa

5.0.0.RC1

org.springframework.integration

spring-integration-mail

5.0.0.RC1

org.springframework.integration

spring-integration-mongodb

5.0.0.RC1

org.springframework.integration

spring-integration-mqtt

5.0.0.RC1

org.springframework.integration

spring-integration-redis

5.0.0.RC1

org.springframework.integration

spring-integration-rmi

5.0.0.RC1

org.springframework.integration

spring-integration-scripting

5.0.0.RC1

org.springframework.integration

spring-integration-security

5.0.0.RC1

org.springframework.integration

spring-integration-sftp

5.0.0.RC1

org.springframework.integration

spring-integration-stomp

5.0.0.RC1

org.springframework.integration

spring-integration-stream

5.0.0.RC1

org.springframework.integration

spring-integration-syslog

5.0.0.RC1

org.springframework.integration

spring-integration-test

5.0.0.RC1

org.springframework.integration

spring-integration-test-support

5.0.0.RC1

org.springframework.integration

spring-integration-twitter

5.0.0.RC1

org.springframework.integration

spring-integration-webflux

5.0.0.RC1

org.springframework.integration

spring-integration-websocket

5.0.0.RC1

org.springframework.integration

spring-integration-ws

5.0.0.RC1

org.springframework.integration

spring-integration-xml

5.0.0.RC1

org.springframework.integration

spring-integration-xmpp

5.0.0.RC1

org.springframework.integration

spring-integration-zookeeper

5.0.0.RC1

org.springframework.kafka

spring-kafka

2.0.0.RELEASE

org.springframework.kafka

spring-kafka-test

2.0.0.RELEASE

org.springframework.ldap

spring-ldap-core

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-core-tiger

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-ldif-batch

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-ldif-core

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-odm

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-test

2.3.2.RELEASE

org.springframework.plugin

spring-plugin-core

1.2.0.RELEASE

org.springframework.plugin

spring-plugin-metadata

1.2.0.RELEASE

org.springframework.restdocs

spring-restdocs-asciidoctor

2.0.0.RC1

org.springframework.restdocs

spring-restdocs-core

2.0.0.RC1

org.springframework.restdocs

spring-restdocs-mockmvc

2.0.0.RC1

org.springframework.restdocs

spring-restdocs-restassured

2.0.0.RC1

org.springframework.restdocs

spring-restdocs-webtestclient

2.0.0.RC1

org.springframework.retry

spring-retry

1.2.1.RELEASE

org.springframework.security

spring-security-acl

5.0.0.RC1

org.springframework.security

spring-security-aspects

5.0.0.RC1

org.springframework.security

spring-security-cas

5.0.0.RC1

org.springframework.security

spring-security-config

5.0.0.RC1

org.springframework.security

spring-security-core

5.0.0.RC1

org.springframework.security

spring-security-crypto

5.0.0.RC1

org.springframework.security

spring-security-data

5.0.0.RC1

org.springframework.security

spring-security-ldap

5.0.0.RC1

org.springframework.security

spring-security-messaging

5.0.0.RC1

org.springframework.security

spring-security-oauth2-client

5.0.0.RC1

org.springframework.security

spring-security-oauth2-core

5.0.0.RC1

org.springframework.security

spring-security-oauth2-jose

5.0.0.RC1

org.springframework.security

spring-security-openid

5.0.0.RC1

org.springframework.security

spring-security-remoting

5.0.0.RC1

org.springframework.security

spring-security-taglibs

5.0.0.RC1

org.springframework.security

spring-security-test

5.0.0.RC1

org.springframework.security

spring-security-web

5.0.0.RC1

org.springframework.session

spring-session-core

2.0.0.RC1

org.springframework.session

spring-session-data-mongodb

2.0.0.RC1

org.springframework.session

spring-session-data-redis

2.0.0.RC1

org.springframework.session

spring-session-hazelcast

2.0.0.RC1

org.springframework.session

spring-session-jdbc

2.0.0.RC1

org.springframework.social

spring-social-config

2.0.0.M4

org.springframework.social

spring-social-core

2.0.0.M4

org.springframework.social

spring-social-facebook

3.0.0.M3

org.springframework.social

spring-social-facebook-web

3.0.0.M3

org.springframework.social

spring-social-linkedin

2.0.0.M3

org.springframework.social

spring-social-security

2.0.0.M4

org.springframework.social

spring-social-twitter

2.0.0.M4

org.springframework.social

spring-social-web

2.0.0.M4

org.springframework.ws

spring-ws-core

3.0.0.RELEASE

org.springframework.ws

spring-ws-security

3.0.0.RELEASE

org.springframework.ws

spring-ws-support

3.0.0.RELEASE

org.springframework.ws

spring-ws-test

3.0.0.RELEASE

org.synchronoss.cloud

nio-multipart-parser

1.1.0

org.thymeleaf

thymeleaf

3.0.8.RELEASE

org.thymeleaf

thymeleaf-spring5

3.0.8.RELEASE

org.thymeleaf.extras

thymeleaf-extras-java8time

3.0.1.RELEASE

org.thymeleaf.extras

thymeleaf-extras-springsecurity4

3.0.2.RELEASE

org.webjars

hal-browser

3325375

org.webjars

webjars-locator

0.32-1

org.xerial

sqlite-jdbc

3.20.1

org.xmlunit

xmlunit-core

2.5.0

org.xmlunit

xmlunit-legacy

2.5.0

org.xmlunit

xmlunit-matchers

2.5.0

org.yaml

snakeyaml

1.19

redis.clients

jedis

2.9.0

wsdl4j

wsdl4j

1.6.3

xml-apis

xml-apis

1.4.01