Updated version from 3.14 to 3.15

This commit is contained in:
nathan 2018-08-18 14:35:32 +02:00
parent 65a3bc58f8
commit 178bea2e18
3 changed files with 10 additions and 5 deletions

View File

@ -277,7 +277,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>SystemTray</artifactId> <artifactId>SystemTray</artifactId>
<version>3.14</version> <version>3.15</version>
</dependency> </dependency>
</dependencies> </dependencies>
```` ````
@ -288,7 +288,7 @@ Gradle Info
```` ````
dependencies { dependencies {
... ...
compile 'com.dorkbox:SystemTray:3.14' compile 'com.dorkbox:SystemTray:3.15'
} }
```` ````

View File

@ -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.description = 'Cross-platform SystemTray support for Swing/AWT, GtkStatusIcon, and AppIndicator on Java 6+'
project.group = 'com.dorkbox' project.group = 'com.dorkbox'
project.version = '3.14' project.version = '3.15'
project.ext.name = 'SystemTray' project.ext.name = 'SystemTray'
project.ext.url = 'https://git.dorkbox.com/dorkbox/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) // 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 // 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 'org.javassist:javassist:3.23.0-GA'
api 'net.java.dev.jna:jna:4.5.2' api 'net.java.dev.jna:jna:4.5.2'
@ -532,6 +532,11 @@ publishing {
} }
} }
nexusStaging {
username sonatypeUsername
password sonatypePassword
}
signing { signing {
required {hasProperty('sonatypeUsername')} required {hasProperty('sonatypeUsername')}
sign publishing.publications.SystemTray sign publishing.publications.SystemTray

View File

@ -1055,7 +1055,7 @@ class SystemTray {
*/ */
public static public static
String getVersion() { String getVersion() {
return "3.14"; return "3.15";
} }
/** /**