Updated OS dep to fix class initialization issue

This commit is contained in:
Robinson 2023-01-03 22:06:54 +01:00
parent 9afe4b5c5e
commit 8a1a5e1950
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 5 additions and 2 deletions

View File

@ -14,7 +14,6 @@
* limitations under the License.
*/
import dorkbox.os.OS
import dorkbox.os.OSType
import java.time.Instant
///////////////////////////////
@ -34,6 +33,10 @@ plugins {
kotlin("jvm") version "1.7.21"
}
// TODO: check if there are any images. ONLY if there are images, then we set all menu entries to have image offsets.
// otherwise, menus will be left-aligned.
object Extras {
// set for the project
const val description = "Cross-platform SystemTray support for Swing/AWT, GtkStatusIcon, and AppIndicator on Java 8+"
@ -191,7 +194,7 @@ dependencies {
api("com.dorkbox:Executor:3.11")
api("com.dorkbox:Utilities:1.34")
api("com.dorkbox:Updates:1.1")
api("com.dorkbox:OS:1.2")
api("com.dorkbox:OS:1.3")
api("org.javassist:javassist:3.29.2-GA")