From d28a61759609b32ae993777c9395f8edfa4953f3 Mon Sep 17 00:00:00 2001 From: Curly Bryce Date: Tue, 6 Apr 2021 13:19:26 -0600 Subject: initial netbeans tes commit --- build.gradle | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 build.gradle (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..f89305e --- /dev/null +++ b/build.gradle @@ -0,0 +1,22 @@ +apply plugin: 'java' +apply plugin: 'jacoco' +apply plugin: 'application' + + +mainClassName = 'wordsearchjava.Main' + +repositories { + mavenCentral() +} + +dependencies { + testImplementation 'junit:junit:4.13' +} + +java { + manifest { + attributes( + 'Main-Class': 'wordsearchjava.Main' + ) + } +} \ No newline at end of file -- cgit v1.2.3