mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 02:12:58 +08:00
23 lines
488 B
Kotlin
23 lines
488 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
project.version = "0.0.4"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
compileOnly(project(":"))
|
|
|
|
implementation(libs.xodus.vfs)
|
|
implementation(libs.xodus.openAPI)
|
|
implementation(libs.xodus.environment)
|
|
implementation(libs.bip39)
|
|
implementation(libs.commons.compress)
|
|
}
|
|
|
|
|
|
ext.set("Termora-Plugin-Entry", "app.termora.plugins.migration.MigrationPlugin")
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|