You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refreshVersions {
// Usage: if you use versions catalog, you can put both files in the same folder
versionsPropertiesFile = file("gradle/versions.properties")
// See https://jmfayard.github.io/refreshVersions/gradle-buildsrcversions/
enableBuildSrcLibs()
// Use case: code we merge in main but is not ready for general consumption yet
featureFlags {
enable(LIBS)
disable(GRADLE_UPDATES)
}
// Define your own rules// See also: Simpler API for configuring simple rules https://github.com/jmfayard/refreshVersions/issues/580
extraArtifactVersionKeyRules("""org.apache.poi:poi(-*)^^^^^^.^^^""".trimIndent())
}