mirai/mirai-console/tools/intellij-plugin/resources/fileTemplates/code/Plugin build.gradle.kts.ft
Him188 481973d5e6
New Project Wizard for IDEA 221 (#1979)
* NewProjectWizard

* dependencies and validations

* Implement checkers

* Implement project generator

* Add new template RunTerminal.run.xml for Run Configuration

* Set supported IDEA version to 221

* Fix localization

* Fix since-until

* Rearrange files
2022-04-20 17:03:10 +01:00

17 lines
374 B
Plaintext

plugins {
val kotlinVersion = "$KOTLIN_VERSION"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "$MIRAI_VERSION"
}
group = "$GROUP_ID"
version = "$VERSION"
repositories {
#if ($USE_PROXY_REPO) maven("https://maven.aliyun.com/repository/public") #end
mavenCentral()
}