From 24de6d11908de79623255adbd4bc07d0fb9e0419 Mon Sep 17 00:00:00 2001 From: Dai MIKURUBE Date: Tue, 17 Sep 2024 18:22:26 +0900 Subject: [PATCH] Add comments in build.gradle --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 7b2d66f..83d913d 100644 --- a/build.gradle +++ b/build.gradle @@ -10,6 +10,12 @@ repositories { group = "org.embulk" version = "0.1.0-SNAPSHOT" +// The root project is a dummy Embulk plugin to be tested with ":embulk-junit5-api" and ":embulk-junit5-engine". +// +// src/main -- The main Embulk plugin code +// src/test -- The "unit tests" for the plugin code (normal JUnit 5 tests without any classpath hacks) +// src/embulkTest -- The "Embulk plugin tests" to run with ":embulk-junit5-api" and ":embulk-junit5-engine" + configurations { compileClasspath.resolutionStrategy.activateDependencyLocking() runtimeClasspath.resolutionStrategy.activateDependencyLocking()