summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 9d054c32ed5c959465f310e0bf39ab9fc85dcb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
    id "java"
    id "application"
}

java {
	sourceCompatibility = JavaVersion.VERSION_11
}

mainClassName = "org.unitConverter.converterGUI.UnitConverterGUI"

repositories {
    mavenCentral()
}

dependencies {
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
    testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

test {
  useJUnitPlatform()
  testLogging {
    events 'passed', 'skipped', 'failed'
  }
}

run {
}