File tree 4 files changed +26
-0
lines changed
4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ buildscript {
3
3
maven { url ' https://repo.spring.io/plugins-release' }
4
4
}
5
5
dependencies {
6
+ classpath " com.github.ben-manes:gradle-versions-plugin:0.17.0"
6
7
classpath(" org.springframework.build.gradle:propdeps-plugin:0.0.7" )
7
8
classpath(' org.asciidoctor:asciidoctor-gradle-plugin:1.5.1' )
8
9
classpath(" io.spring.gradle:spring-io-plugin:0.0.6.RELEASE" )
@@ -33,6 +34,7 @@ allprojects {
33
34
apply plugin : ' idea'
34
35
apply plugin : ' eclipse'
35
36
apply plugin : ' java'
37
+ apply plugin : " com.github.ben-manes.versions"
36
38
37
39
group = " org.springframework.ldap"
38
40
Original file line number Diff line number Diff line change
1
+ releasenotes :
2
+ sections :
3
+ - title : " New Features"
4
+ emoji : " :star:"
5
+ labels : ["enhancement"]
6
+ - title : " Bug Fixes"
7
+ emoji : " :beetle:"
8
+ labels : ["bug", "regression"]
9
+ - title : " Dependency Upgrades"
10
+ emoji : " :hammer:"
11
+ labels : ["dependency-upgrade"]
12
+ - title : " Non-passive"
13
+ emoji : " :rewind:"
14
+ labels : ["breaks-passivity"]
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ VERSION=$1
4
+ until http -h --check-status --ignore-stdin https://repo1.maven.org/maven2/org/springframework/ldap/spring-ldap-core/$VERSION /; do sleep 10; clear; done ; spd-say " It is now uploaded"
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ rm -f build/updates.txt
3
+ ./gradlew dependencyUpdate -Drevision=release
4
+ find -name report.txt | xargs cat > build/updates.txt
5
+ echo " Updates...."
6
+ cat build/updates.txt | fgrep ' ->' | sort | uniq
You can’t perform that action at this time.
0 commit comments