jooq-plugin
jooq-plugin copied to clipboard
updates docker-java version
The update is necessary for plugin to be able to work with docker sockets on the latest versions of macos. @szaffarano
@Rinat-Suleimanov Could you please merge this change :)
@szaffarano Could you please merge it :)
@Rinat-Suleimanov Could you please merge this change :)
I'd like to, but I can't (( @szaffarano If you don't have time to support the plugin, please share the access with me. I use it in all my projects so I can help with development.
I don't have access either to merge the PR
@adrianskrobaczrevolut ?
@adrianskrobaczrevolut could you please merge this mr?
@adrianskrobaczrevolut could you please merge this mr?
For anybody running into this in the meantime.
Groovy DSL:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.github.docker-java:docker-java-transport-okhttp'
constraints {
classpath('com.github.docker-java:docker-java-transport-okhttp:3.3.4') {
// https://github.com/revolut-engineering/jooq-plugin/pull/30
because 'Upgrade version to be compatible with latest Mac/Docker updates'
}
}
}
}
plugins {
id 'com.revolut.jooq-docker' version '0.3.9'
}
Kotlin DSL:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("com.github.docker-java:docker-java-transport-okhttp")
constraints {
classpath("com.github.docker-java:docker-java-transport-okhttp:3.3.4") {
// https://github.com/revolut-engineering/jooq-plugin/pull/30
because("Upgrade version to be compatible with latest Mac/Docker updates")
}
}
}
}
plugins {
id("com.revolut.jooq-docker") version "0.3.9"
}