From 178bea2e183fd516cc60b8bc4ff908c8925d8afc Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 18 Aug 2018 14:35:32 +0200 Subject: [PATCH] Updated version from 3.14 to 3.15 --- README.md | 4 ++-- build.gradle | 9 +++++++-- src/dorkbox/systemTray/SystemTray.java | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 832f423..e144296 100644 --- a/README.md +++ b/README.md @@ -277,7 +277,7 @@ Maven Info com.dorkbox SystemTray - 3.14 + 3.15 ```` @@ -288,7 +288,7 @@ Gradle Info ```` dependencies { ... - compile 'com.dorkbox:SystemTray:3.14' + compile 'com.dorkbox:SystemTray:3.15' } ```` diff --git a/build.gradle b/build.gradle index 36410f3..58e8f15 100644 --- a/build.gradle +++ b/build.gradle @@ -69,7 +69,7 @@ apply from: '../Utilities/scripts/gradle/swt.gradle' project.description = 'Cross-platform SystemTray support for Swing/AWT, GtkStatusIcon, and AppIndicator on Java 6+' project.group = 'com.dorkbox' -project.version = '3.14' +project.version = '3.15' project.ext.name = 'SystemTray' project.ext.url = 'https://git.dorkbox.com/dorkbox/SystemTray' @@ -227,7 +227,7 @@ dependencies { // our main dependencies are ALSO the same as the limited utilities (they are not automatically pulled in from other sourceSets) // needed by the utilities (custom since we don't want to include everything). IntelliJ includes everything, but our builds do not - api 'com.dorkbox:ShellExecutor:1.1+' + api 'com.dorkbox:ShellExecutor:1.1' api 'org.javassist:javassist:3.23.0-GA' api 'net.java.dev.jna:jna:4.5.2' @@ -532,6 +532,11 @@ publishing { } } +nexusStaging { + username sonatypeUsername + password sonatypePassword +} + signing { required {hasProperty('sonatypeUsername')} sign publishing.publications.SystemTray diff --git a/src/dorkbox/systemTray/SystemTray.java b/src/dorkbox/systemTray/SystemTray.java index 8ee6abb..c00d39e 100644 --- a/src/dorkbox/systemTray/SystemTray.java +++ b/src/dorkbox/systemTray/SystemTray.java @@ -1055,7 +1055,7 @@ class SystemTray { */ public static String getVersion() { - return "3.14"; + return "3.15"; } /**