Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 590 Bytes

File metadata and controls

22 lines (17 loc) · 590 Bytes

This project exists to easily integrate the maven build and release process with the gradle plugin: jooby-gradle-plugin.

It runs at the end of the build lifecycle to ensure dependencies are built before gradle plugin.

How to test locally

  • First fun mvn clean install -P gradlePluin
  • Previous step install plugin in .m2/repository
  • Creates a gradle project
  • Go to settings.gradle and add these lines
pluginManagement {
    repositories {
        mavenLocal()
        mavenCentral()
        gradlePluginPortal()
    }
}

rootProject.name = 'your project name'