From f48a40d2ca5b3b36f7b353d5edcc3e682f00af29 Mon Sep 17 00:00:00 2001 From: Greg Brail Date: Mon, 17 Jun 2024 17:25:53 -0700 Subject: [PATCH] Change root project name to "rhino-root" VS Code (and maybe other IDEs) get very confused when the root project name matches the name of one of the subprojects. Name the root project "rhino-root" to avoid this conflict. --- gradle.properties | 2 +- settings.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index f1a0256cd9..2022349ffe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -rootProject.name=rhino +rootProject.name=rhino-root group=org.mozilla version=1.7.16-SNAPSHOT mavenSnapshotRepo=https://oss.sonatype.org/content/repositories/snapshots diff --git a/settings.gradle b/settings.gradle index 7f93453260..b4bacbc0be 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = 'rhino' +rootProject.name = 'rhino-root' include 'rhino', 'rhino-engine', 'rhino-tools', 'rhino-xml', 'rhino-all', 'examples', 'tests', 'benchmarks'