File: opentest4j-reporting-01-gradle-compatibility.patch

package info (click to toggle)
jtreg8 8.1%2B1%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,584 kB
  • sloc: java: 408,868; xml: 8,266; sh: 1,960; ansic: 1,084; exp: 689; makefile: 383; javascript: 162; cpp: 120
file content (55 lines) | stat: -rw-r--r-- 1,207 bytes parent folder | download | duplicates (3)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Description: Rewrite the build system without Kotlin until Gradle is upgraded to a recent version
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- /dev/null
+++ b/opentest4j-reporting/build.gradle
@@ -0,0 +1,10 @@
+plugins {
+    id 'java'
+}
+
+allprojects {
+    apply plugin: 'java'
+}
+
+sourceCompatibility = "1.8"
+targetCompatibility = "1.8"
--- /dev/null
+++ b/opentest4j-reporting/events/build.gradle
@@ -0,0 +1,16 @@
+/*
+plugins {
+    `java-conventions`
+}
+*/
+
+sourceCompatibility = "1.8"
+targetCompatibility = "1.8"
+
+dependencies {
+    compile(project(":schema"))
+//    testImplementation(libs.archunit)
+//    testImplementation(libs.assertj.core)
+//    testImplementation(libs.junit.jupiter)
+//    testImplementation(libs.xmlunit.assertj)
+}
--- /dev/null
+++ b/opentest4j-reporting/settings.gradle
@@ -0,0 +1,17 @@
+rootProject.name = "open-test-reporting"
+/*
+dependencyResolutionManagement {
+    repositories {
+        mavenCentral()
+    }
+}
+*/
+
+//include("cli")
+//include("documentation")
+include("events")
+include("schema")
+//include("tooling")
+
+//enableFeaturePreview("VERSION_CATALOGS")
+//enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")