Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates docker-java version #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

rsolmano
Copy link

@rsolmano rsolmano commented May 30, 2023

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

Copy link
Contributor

@szaffarano szaffarano left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀

@upMKuhn
Copy link

upMKuhn commented Sep 25, 2023

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

@upMKuhn
Copy link

upMKuhn commented Sep 28, 2023

@szaffarano Could you please merge it :)

@rsolmano
Copy link
Author

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

@szaffarano
Copy link
Contributor

I don't have access either to merge the PR

@szaffarano
Copy link
Contributor

@adrianskrobaczrevolut ?

@upMKuhn
Copy link

upMKuhn commented Sep 29, 2023

@adrianskrobaczrevolut could you please merge this mr?

1 similar comment
@upMKuhn
Copy link

upMKuhn commented Oct 2, 2023

@adrianskrobaczrevolut could you please merge this mr?

@kriim
Copy link

kriim commented Nov 9, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants