All Downloads are FREE. Search and download functionalities are using the official Maven repository.

d.core.2024.8.0.source-code.Version.kt Maven / Gradle / Ivy

There is a newer version: 2024.9.2
Show newest version
package edu.illinois.cs.cs125.jeed.core

import java.util.Properties

val version = run {
    @Suppress("TooGenericExceptionCaught")
    try {
        val versionFile = object {}::class.java.getResource("/edu.illinois.cs.cs125.jeed.core.version")
        Properties().also { it.load(versionFile.openStream()) }["version"] as String
    } catch (e: Exception) {
        println(e)
        "unspecified"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy