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")
|