English, asked by TbiaSamishta, 10 months ago

In Gradle, the java plugin searches for java production source code in the directory

Answers

Answered by Arslankincsem
1

Explanation:

Gradle is a general-purpose constructing tool. It can help in building up anything that you can care to implement in a build script. It is an out-of-the-box plugin. However, it doesn’t build unless you add the code to your build script so that it then understands it. Gradle ships with a number of different types of plugins. You can easily write your own and share them with anyone. One such plugin that offers this facility is the Java plugin. This plugin will add some task to a project that will compile and unit test the Java source code and then help to bundle it completely in a JAR file.

Similar questions