summaryrefslogtreecommitdiff
path: root/build.gradle
blob: b7d67aeaede39b715d19ea919a3d1bfc99151faa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'application'


mainClassName = 'wordsearchjava.Main'

repositories {
    mavenCentral()
}

dependencies {
    testImplementation     'junit:junit:4.13'
}

jar {
  manifest {
    attributes(
      'Main-Class': 'wordsearchjava.Main'
    )
  }
}