Search code examples
gradleplayorm

how to build playorm JARs


I am new to playorm and gradle. My goal is to get playorm compiled (especially play 2.1 plugin) and deployed to local nexus repository manager.

What gradle tasks should I invoke to do this?

I tried to run gradlew clean assemble - creates workspace*.jar in output/libs so I assume build part was done. How to get these artefacts renamed and uploaded to my nexus?

https://github.com/deanhiller/playorm


Solution

  • I created local.gradle and included it in build.gradle to create uploadArchives task using standard gradle upload procedure.

    build.gradle was modified in upstream version to include local.gradle if exists.