File: build.gradle

package info (click to toggle)
reactive-streams 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 968 kB
  • sloc: java: 8,413; xml: 30; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
description = 'reactive-streams-tck'
dependencies {
    compile group: 'org.testng', name: 'testng', version:'5.14.10'
    compile project(':reactive-streams')
    compile project(':reactive-streams-examples')
}

jar {
    manifest {
        attributes('Automatic-Module-Name': 'org.reactivestreams.tck')
    }
}

test.useTestNG()