Skip to content

Commit

Permalink
chore(*): bumping dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
notthetup committed Oct 10, 2024
1 parent a010949 commit 4e15788
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
id 'groovy'
id 'maven-publish'
id 'signing'
id "com.github.ben-manes.versions" version "0.51.0"
}

defaultTasks 'jars'
Expand Down Expand Up @@ -38,16 +39,16 @@ repositories {
}

dependencies {
api 'org.codehaus.groovy:groovy:2.5.20'
api 'org.jline:jline:3.21.0'
api 'org.apache.commons:commons-lang3:3.12.0'
api 'commons-io:commons-io:2.11.0'
api 'org.codehaus.groovy:groovy:2.5.23'
api 'org.jline:jline:3.27.0'
api 'org.apache.commons:commons-lang3:3.17.0'
api 'commons-io:commons-io:2.17.0'
api 'uk.com.robust-it:cloning:1.9.12'
api 'org.eclipse.jetty:jetty-server:9.4.50.v20221201'
api 'org.eclipse.jetty:jetty-servlet:9.4.50.v20221201'
api 'org.eclipse.jetty:jetty-rewrite:9.4.50.v20221201'
api 'org.eclipse.jetty.websocket:websocket-server:9.4.50.v20221201'
api 'com.google.code.gson:gson:2.10'
api 'org.eclipse.jetty:jetty-server:9.4.56.v20240826'
api 'org.eclipse.jetty:jetty-servlet:9.4.56.v20240826'
api 'org.eclipse.jetty:jetty-rewrite:9.4.56.v20240826'
api 'org.eclipse.jetty.websocket:websocket-server:9.4.56.v20240826'
api 'com.google.code.gson:gson:2.11.0'
api 'com.fazecast:jSerialComm:2.9.3'
testImplementation 'junit:junit:4.13.2'
testImplementation 'net.jodah:concurrentunit:0.4.6'
Expand Down Expand Up @@ -222,3 +223,10 @@ publishing {
signing {
sign publishing.publications.mavenJava
}

tasks.named("dependencyUpdates").configure {
rejectVersionIf {
println "Checking $it.candidate.version against ${it.currentVersion}"
it.candidate.version.substring(0, it.candidate.version.indexOf(".")) != it.currentVersion.substring(0, it.currentVersion.indexOf("."))
}
}

0 comments on commit 4e15788

Please sign in to comment.