O.O.
O.O.

Reputation: 2013

Alternatives to the Gradle Gretty Plugin

I’m trying to upgrade some old code that used the Jetty plugin in Gradle. I would like to upgrade the Gradle version beyond Gradle v3.5, but Gradle v4.0 and above has the Jetty plugin removed. Unfortunately, we are now required to use Gretty.

I’m using IntelliJ. My problems with the newer Gretty plugin are:

Upvotes: 0

Views: 1058

Answers (1)

Joakim Erdfelt
Joakim Erdfelt

Reputation: 49462

How about just skipping the Gretty plugin entirely and just using Unit testing?

See: https://stackoverflow.com/a/29759263/775715

Upvotes: 1

Related Questions