File: module-test.gradle

package info (click to toggle)
mockito 3.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,068 kB
  • sloc: java: 48,664; xml: 48; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
plugins {
    id 'java'
}

if (JavaVersion.current() == JavaVersion.VERSION_1_8) {
    project.tasks.all { task -> task.enabled = false }
}

description = "Test suite for Java 9 modules with Mockito"

apply from: "$rootDir/gradle/dependencies.gradle"

dependencies {
    compile project.rootProject
    testCompile libraries.junit4
    testCompile libraries.assertj
}

tasks.javadoc.enabled = false

sourceCompatibility = 1.9
targetCompatibility = 1.9