Skip to content

Commit 0185706

Browse files
authored
Allow Gradle included builds to use a different group ID (#796)
When adding an included build to the Polaris main repo, the (Maven) group ID _must_ be different. This change allows sharing (symling) the `gradle.properties` file with an included build (#785 in this case).
1 parent 15032f2 commit 0185706

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
# specific language governing permissions and limitations
1717
# under the License.
1818
#
19-
group=org.apache.polaris
2019

2120
# enable the Gradle build cache
2221
org.gradle.caching=true

settings.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,7 @@ dependencyResolutionManagement {
7272
}
7373
}
7474

75-
gradle.beforeProject { version = baseVersion }
75+
gradle.beforeProject {
76+
version = baseVersion
77+
group = "org.apache.polaris"
78+
}

0 commit comments

Comments
 (0)