Skip to content

5.9.3

Compare
Choose a tag to compare
@xvik xvik released this 05 Nov 14:22
· 361 commits to master since this release
  • Update to dropwizard 2.1.9

NOTE: dropwizard-jdbi3 drops java 8 support in gradle because it leaks (through metrics-jdbi3) jdbi3 3.43.1, compiled for java 11, so, for java 8 compatibility, you'll have to manually force the correct version:

    implementation ('org.jdbi:jdbi3-core') {
        version { strictly '3.39.1' }
    }

(example project)