summaryrefslogtreecommitdiff
path: root/build.gradle
blob: f89305eeee19aff74816434ce36f8f52b9e59d55 (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'
}

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