diff --git a/base/build.gradle.kts b/base/build.gradle.kts index c7f25df..0400252 100644 --- a/base/build.gradle.kts +++ b/base/build.gradle.kts @@ -16,3 +16,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ + +// Dependencies +dependencies { + // OSHI + implementation("${property("dependencyOshiIdentifier") as String}:${property("dependencyOshiVersion") as String}") +} diff --git a/build.gradle.kts b/build.gradle.kts index bb625de..55c53e1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -99,9 +99,6 @@ allprojects { implementation("${property("dependencyKotlin_ReflectIdentifier") as String}:${property("dependencyKotlinVersion") as String}") implementation("${property("dependencyKotlin_DateTimeIdentifier") as String}:${property("dependencyKotlin_DateTimeVersion") as String}") - // OSHI - implementation("${property("dependencyOshiIdentifier") as String}:${property("dependencyOshiVersion") as String}") - // Unit testing // -> Kotlin testImplementation(kotlin("test"))