Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dkorotych committed Mar 25, 2023
1 parent 90539d6 commit ebc639c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.gradle
@@ -1,7 +1,7 @@
plugins {
id("com.github.johnrengelman.shadow") version "8.1.0"
id("io.micronaut.application") version "3.7.6"
id("org.openrewrite.rewrite") version "5.38.0"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("io.micronaut.application") version "3.7.7"
id("org.openrewrite.rewrite") version "5.38.1"
id("com.github.ben-manes.versions") version "0.46.0"
}

Expand Down Expand Up @@ -81,6 +81,9 @@ dependencyUpdates {
if (candidate.version.contains("beta")) {
selection.reject("Plugin ${candidate.displayName} reject because is a beta release")
}
if (candidate.version.matches('.+-M\\d+$')) {
selection.reject("Dependency ${candidate.displayName} reject because is a milestone release")
}
}
}
}
Expand Down

0 comments on commit ebc639c

Please sign in to comment.