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

Any plans to publish 0.22.0 to Maven Central or Gradle Plugins? #453

Open
adil-hussain-84 opened this issue Apr 12, 2022 · 6 comments
Open

Comments

@adil-hussain-84
Copy link

I see in the CHANGELOG that there's a 0.22.0 release which supports Xcode 13.2.1.

Do you have any plans to publish this release to Maven Central or https://plugins.gradle.org/m2 any time soon?

@renep
Copy link
Contributor

renep commented Apr 14, 2022

I have some trouble with the publish task on my build server. I will look to it next week and post an update.

@thipokch
Copy link

thipokch commented Jul 28, 2022

any luck so far? I'm having issues with the current 0.21.0. Thanks :)

@renep
Copy link
Contributor

renep commented Jul 28, 2022

I did not find time yet to look into this. This has also no high priority for me, because the publish on my own server works fine. So when you use the method described in the Readme you will get the lastest version of the plugin: https://github.com/openbakery/gradle-xcodePlugin#usage

(This remindes me that I have to test it with Xcode 14-beta 😬)

@thipokch
Copy link

I'm actually experiment this plugin with Kotlin DSL and Xcode 14. I might fork this and just publish it for the peace of mind. It's a little bit easier and more consistent with my build setup too.

@thipokch
Copy link

thipokch commented Jul 29, 2022

Just realized that Gradle Plugin repo does not allow forks, so I just published it to jitpack

// build.gradle.kts

buildscript {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
        maven {
            url = uri("https://jitpack.io")
            // isAllowInsecureProtocol not required
        }
    }

    dependencies {
        classpath( "com.github.thipokch:gradle-xcodePlugin:0.22.2")
        ...
    }
}

plugins {
    id("org.openbakery.xcode-plugin")
}

@thipokch
Copy link

@renep Jitpack seems to work right out of the box. Here's where I published it https://jitpack.io/#thipokch/gradle-xcodePlugin. The only change I've made is added Maven Publish plugin to libxcode and libxcodetools as seen in commit 3241b78 . Jitpack just publish to maven local and take care of the rest.

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

No branches or pull requests

3 participants