Custom Gradle Plugin as Standalone project

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 11

  • @madhes23
    @madhes23 4 ปีที่แล้ว +7

    This is one of the best resources on the internet for learning about standalone plugins. Thanks man!

  • @carlosmspk
    @carlosmspk 2 ปีที่แล้ว +1

    Hats off for an easy to reproduce, and minimalist example.
    Would love it if you could follow up with some common use cases, such as pushing artifacts to a remote database or something a bit more complex that most people probably could benefit from!

    • @MikesTechCorner
      @MikesTechCorner  2 ปีที่แล้ว

      Good suggestion. Thank you for watching

  • @noboddy_knows
    @noboddy_knows ปีที่แล้ว

    was struggling looking at the official documentation here is a nice explanation

    • @MikesTechCorner
      @MikesTechCorner  ปีที่แล้ว

      Thank you for watching and giving me feedback. :)

  • @strok777
    @strok777 ปีที่แล้ว +1

    Has anyone experienced that when exporting the plugin to a local repository the gradle.plugin container is not created but it is when exporting it to mavenLocal?

  • @aleksei4604
    @aleksei4604 3 ปีที่แล้ว +1

    Thanks for your tutorial
    For me it works such way
    pluginManagement {
    repositories {
    maven {
    mavenCentral()
    url = '...'
    }
    }
    }
    Because Gradle could not find org.codehaus in repo (url)

    • @MikesTechCorner
      @MikesTechCorner  2 ปีที่แล้ว

      Thanks for sharing!

    • @carlosmspk
      @carlosmspk 2 ปีที่แล้ว

      That's odd, it worked for me...