Skip to content

Commit

Permalink
[build-logic] Add Gradle Versions Plugin (com.github.ben-manes.versions)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowdalic committed Oct 24, 2024
1 parent e4ad9ad commit 1babf11
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GRADLE ?= ./gradlew

.PHONY: all
all: check codecov eclipse javadocAll sinttest
all: check codecov eclipse javadocAll sinttest show-dependency-updates

.PHONY: codecov
codecov:
Expand All @@ -24,3 +24,7 @@ sinttest:
javadocAll:
$(GRADLE) $@
echo "javadoc available at file://$(PWD)/build/javadoc/index.html"

.PHONY: show-dependency-updates
show-dependency-updates:
$(GRADLE) dependencyUpdates
1 change: 1 addition & 0 deletions build-logic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ dependencies {
implementation "me.champeau.jmh:jmh-gradle-plugin:0.7.2"
implementation "net.ltgt.gradle:gradle-errorprone-plugin:4.0.1"
implementation "ru.vyarus:gradle-animalsniffer-plugin:1.7.1"
implementation "com.github.ben-manes:gradle-versions-plugin:0.51.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins {
id 'maven-publish'
id 'net.ltgt.errorprone'
id 'signing'
id 'com.github.ben-manes.versions'

id 'jacoco-report-aggregation'
id 'test-report-aggregation'
Expand Down

0 comments on commit 1babf11

Please sign in to comment.