openbakery / gradle-xcodePlugin

gradle plugin for building Xcode Projects for iOS, watchOS, macOS or tvOS
Apache License 2.0
455 stars 127 forks source link

Remove pegdown #431

Closed renep closed 2 years ago

renep commented 4 years ago

The reason is that in the gradle maven repo the pegdown is unknown, therefor applying the pluing with the default way does not work:

plugins {
  id "org.openbakery.xcode-plugin" version "0.20.0"
}

You need to apply the plugin this way:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
        mavenCentral()
  }
  dependencies {
    classpath "gradle.plugin.org.openbakery:plugin:0.20.0"
  }
}

apply plugin: "org.openbakery.xcode-plugin"