123456789101112131415161718192021222324 |
- // Note: "common.gradle" in the root project contains additional initialization
- // for this project. This initialization is applied in the "build.gradle"
- // of the root project.
-
- // NetBeans will automatically add "run" and "debug" tasks relying on the
- // "mainClass" property. You may however define the property prior executing
- // tasks by passing a "-PmainClass=<QUALIFIED_CLASS_NAME>" argument.
- //
- // Note however, that you may define your own "run" and "debug" task if you
- // prefer. In this case NetBeans will not add these tasks but you may rely on
- // your own implementation.
- if (!hasProperty('mainClass')) {
- ext.mainClass = ''
- }
-
- dependencies {
- // TODO: Add dependencies here
- // but note that JUnit should have already been added in parent.gradle.
- // By default, only the Maven Central Repository is specified in
- // parent.gradle.
- //
- // You can read more about how to add dependency here:
- // http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:how_to_declare_your_dependencies
- }
|