diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 22 |
1 files changed, 22 insertions, 0 deletions
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 |