Skip to content

Bump com.gradle:develocity-maven-extension from 1.23.2 to 2.0 #820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ repositories {
}

dependencies {
compileOnly("org.apache.maven:maven-core:3.6.3") // intentionally compiling against an older version to preserve compatibility with older versions of Maven
compileOnly("com.gradle:develocity-maven-extension:1.23.2")
compileOnly("org.apache.maven:maven-core:3.6.3") {
because("compatibility with older versions of Maven is required")
}
compileOnly("com.gradle:gradle-enterprise-maven-extension:1.20.1") {
because("compatibility with older versions of the Gradle Enterprise Maven extension is required")
}
compileOnly("com.gradle:develocity-maven-extension:2.0")
implementation("com.gradle:develocity-maven-extension-adapters:1.0")
}

Expand Down