0 votes
in Gradle by
Which of the following is a valid Gradle project layout?

a) src/java/main

b) main/java/src

c) java/src/main

d) src/main/java

1 Answer

0 votes
by

Answer: d) src/main/java

reason: The valid Gradle project layout is src/main/java. It contains the main source code for the project.

...