jooq-plugin icon indicating copy to clipboard operation
jooq-plugin copied to clipboard

updates docker-java version

Open rsolmano opened this issue 1 year ago • 8 comments

The update is necessary for plugin to be able to work with docker sockets on the latest versions of macos. @szaffarano

rsolmano avatar May 30 '23 14:05 rsolmano

@Rinat-Suleimanov Could you please merge this change :)

upMKuhn avatar Sep 25 '23 18:09 upMKuhn

@szaffarano Could you please merge it :)

upMKuhn avatar Sep 28 '23 19:09 upMKuhn

@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.

rsolmano avatar Sep 28 '23 19:09 rsolmano

I don't have access either to merge the PR

szaffarano avatar Sep 29 '23 07:09 szaffarano

@adrianskrobaczrevolut ?

szaffarano avatar Sep 29 '23 07:09 szaffarano

@adrianskrobaczrevolut could you please merge this mr?

upMKuhn avatar Sep 29 '23 07:09 upMKuhn

@adrianskrobaczrevolut could you please merge this mr?

upMKuhn avatar Oct 02 '23 20:10 upMKuhn

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"
}

kriim avatar Nov 09 '23 16:11 kriim