Chris Doré
02/18/2025, 9:09 PMplatform(<dep>) (Gradle 2.8 to be precise), did Gradle properly work with importing boms? I'm working with an old build that I cannot upgrade. The POM of one of the deps contains:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>my.group</groupId>
<artifactId>myPlatform</artifactId>
<version>1.2.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
That platform contains a dependencyManagement element as expected, however the versions listed appear to have no influence on the resolved dep tree.
I cannot recall whether such an old Gradle version fully resolves dep management sections or not, and I'm not sure if I've got something broken in the build or if it's just the Gradle version.Justin Van Dort
02/18/2025, 9:14 PMChris Doré
02/18/2025, 9:27 PMVampire
02/18/2025, 10:42 PMJohn
02/21/2025, 5:18 PMVampire
02/21/2025, 6:27 PM