snazy commented on code in PR #8065:
URL: https://github.com/apache/iceberg/pull/8065#discussion_r1269571553
##########
build.gradle:
##########
@@ -961,3 +965,18 @@ apply from: 'baseline.gradle'
apply from: 'deploy.gradle'
apply from: 'tasks.gradle'
+project(':iceberg-bom') {
+ apply plugin: 'java-platform'
+
+ dependencies {
+ constraints {
+ rootProject.allprojects.forEach {
+ if (it.name != 'iceberg-bom' && it != rootProject) {
+ add("api", project(it.path))
+ }
+ }
+ }
+ }
+
+ javaPlatform { allowDependencies() }
Review Comment:
Hm - that (was) necessary in Nessie at least. Interesting that it's no
longer necessary.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]