1

I’m basically just trying to do what’s described in Maven - How to build multiple Independent Maven projects from one project. The accepted answer for that question describes how to use a Maven POM with pom packaging and a list of modules.

I need to do the same thing, but with Gradle. What I actually have is two separate projects which I currently have to cd into and build individually, and what I want to have is one directory (project) that contains the two projects and from which I can build them both at once. They’re not interdependent—they just generally will need to be built at the same time. Can this be done?

Community
  • 1
  • 1
Ben Klein
  • 1,719
  • 3
  • 18
  • 41

1 Answers1

0

One way would be to use (as Luke Daley suggests) Prezi Pride: https://github.com/prezi/pride.

See https://discuss.gradle.org/t/how-can-i-build-independent-projects-from-one-parent-directory/10632/2.

Ben Klein
  • 1,719
  • 3
  • 18
  • 41