0 votes
in Gradle by
Which of the following is not a valid Gradle dependency configuration?

a) implementation

b) testImplementation

c) runtimeImplementation

d) deployImplementation

1 Answer

0 votes
by

Answer: d) deployImplementation

Explanation: There is no “deployImplementation” configuration in Gradle. The correct configuration is “implementation” for dependencies required for compilation and “testImplementation” for dependencies required for testing.

Related questions

0 votes
asked Apr 1 in Gradle by rajeshsharma
0 votes
asked Apr 1 in Gradle by rajeshsharma
...