linkedin / pygradle

Using Gradle to build Python projects
https://github.com/linkedin/pygradle
Apache License 2.0
588 stars 147 forks source link

Version 0.10.8 is not published on Gradle Plugins #306

Open jaredsburrows opened 5 years ago

jaredsburrows commented 5 years ago

Version 0.10.8 is not published on Gradle Plugins - see https://plugins.gradle.org/plugin/com.linkedin.python

shvilime commented 4 years ago

Dear @zvezdan, could you inform, are you planing to post the latest versions pygradle in gradle plugin repository? A lot of time has passed since version 0.9.11.

jaredsburrows commented 4 years ago

Any update on this?

filchristou commented 3 years ago

Hello. The latest update still remains 0.9.11: https://plugins.gradle.org/plugin/com.linkedin.python Are you planning to post the latest version in the Gradle plugin repository? Also, I can see that the project supports Gradle version 5, while currently, the Gradle version is on 7. And it seems that 0.9.11 is not working with Gradle 7. What are your plans for the future?

shvilime commented 3 years ago

It is possible to download last version of plugin from jcenter.

buildscript {
    repositories {
       jcenter()
    }
    dependencies {
        classpath "com.linkedin.pygradle:pygradle-plugin:0.12.10"
    }
}
apply plugin: "com.linkedin.python-pex"
SimY4 commented 2 years ago

now since jcenter is gone, are there any plans to re-publish this plugin to maven central?