X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/d8ef312b5f94bf297808dff199a1116746910201..fd16766f4a8746938713e12647bf7866067eff45:/build.gradle diff --git a/build.gradle b/build.gradle index c6cf9697..48b57a4f 100644 --- a/build.gradle +++ b/build.gradle @@ -2,12 +2,12 @@ apply plugin: 'java' apply plugin: 'application' apply plugin: 'eclipse' -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = JavaVersion.VERSION_11 +targetCompatibility = JavaVersion.VERSION_11 mainClassName = 'org.asamk.signal.Main' -version = '0.6.7' +version = '0.7.1' compileJava.options.encoding = 'UTF-8' @@ -17,11 +17,11 @@ repositories { } dependencies { - compile 'com.github.turasa:signal-service-java:2.15.3_unofficial_7' - compile 'org.bouncycastle:bcprov-jdk15on:1.64' - compile 'net.sourceforge.argparse4j:argparse4j:0.8.1' - compile 'com.github.hypfvieh:dbus-java:3.2.0' - compile 'org.slf4j:slf4j-nop:1.7.30' + implementation 'com.github.turasa:signal-service-java:2.15.3_unofficial_15' + implementation 'org.bouncycastle:bcprov-jdk15on:1.67' + implementation 'net.sourceforge.argparse4j:argparse4j:0.8.1' + implementation 'com.github.hypfvieh:dbus-java:3.2.4' + implementation 'org.slf4j:slf4j-nop:1.7.30' } jar { @@ -41,3 +41,36 @@ run { args Eval.me(appArgs) } } + +// Find any 3rd party libraries which have released new versions +// to the central Maven repo since we last upgraded. +task checkLibVersions { + doLast { + def checked = [:] + allprojects { + configurations.each { configuration -> + configuration.allDependencies.each { dependency -> + def version = dependency.version + if (!checked[dependency]) { + def group = dependency.group + def path = group.replace('.', '/') + def name = dependency.name + def url = "https://repo1.maven.org/maven2/$path/$name/maven-metadata.xml" + try { + def metadata = new XmlSlurper().parseText(url.toURL().text) + def newest = metadata.versioning.latest; + if ("$version" != "$newest") { + println "UPGRADE {\"group\": \"$group\", \"name\": \"$name\", \"current\": \"$version\", \"latest\": \"$newest\"}" + } + } catch (FileNotFoundException e) { + logger.debug "Unable to download $url: $e.message" + } catch (org.xml.sax.SAXParseException e) { + logger.debug "Unable to parse $url: $e.message" + } + checked[dependency] = true + } + } + } + } + } +}