File: junit-platform-surefire-provider.gradle

package info (click to toggle)
junit5 5.3.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 7,676 kB
  • sloc: java: 59,560; xml: 559; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
description = 'JUnit Platform Surefire Provider'

dependencies {
	api(project(':junit-platform-launcher'))
	implementation("org.apache.maven.surefire:surefire-api:${surefireVersion}")
	implementation("org.apache.maven.surefire:common-java5:${surefireVersion}")

	testImplementation(project(':junit-jupiter-api'))
	testImplementation(project(':junit-platform-runner'))
	testImplementation(project(':junit-jupiter-engine'))
}

jar {
	manifest {
		attributes(
			'Automatic-Module-Name': 'org.junit.platform.surefire.provider'
		)
	}
}