From b76889373a26b86fc41276ce5e2667ecbbc40219 Mon Sep 17 00:00:00 2001 From: Holger Friedrich Date: Sun, 1 Jun 2025 11:16:26 +0200 Subject: [PATCH] Add top dir marker for Maven 4 (#3203) This suppresses the warning about missing top level directory marker during build with Maven 4. The approach to add `.mvn` dir is the option to do it which does not impact our standard builds with Maven 3. Signed-off-by: Holger Friedrich --- .mvn/README | 1 + 1 file changed, 1 insertion(+) create mode 100644 .mvn/README diff --git a/.mvn/README b/.mvn/README new file mode 100644 index 000000000..bd829fe13 --- /dev/null +++ b/.mvn/README @@ -0,0 +1 @@ +required by Maven 4 to detect root dir; adding root=true to pom is not compatible with Maven 3