-
Notifications
You must be signed in to change notification settings - Fork 128
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
Comments
I have some trouble with the publish task on my build server. I will look to it next week and post an update. |
any luck so far? I'm having issues with the current 0.21.0. Thanks :) |
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 😬) |
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. |
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")
} |
@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 |
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?
The text was updated successfully, but these errors were encountered: