ronif
ronif

Reputation: 805

How can I Invoke a Gradle script from Java?

I am looking for a Java API to invoke Gradle.

Something similar to what's available for Ant or Maven. Could not find such reference. Help..?

Upvotes: 1

Views: 137

Answers (1)

Peter Niederwieser
Peter Niederwieser

Reputation: 123910

You are looking for the Gradle Tooling API. See Embedding Gradle in the Gradle User Guide, and the samples in the full Gradle distribution.

Upvotes: 1

Related Questions