Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PeratX committed Jul 23, 2021
1 parent 791623a commit 3c2b6e7
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ plugins {
}

group = "org.itxtech"
version = "1.1.0"
version = "1.2.0"
description = "MCL Addon 支持在 Mirai Console 中访问几乎所有 Mirai Console Loader 命令行指令,并带来更现代化的指令。"

kotlin {
sourceSets {
Expand All @@ -21,13 +22,14 @@ kotlin {

repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}

dependencies {
//compileOnly("org.itxtech:mcl:1.1.0")
implementation(files("libs/mcl.jar"))
compileOnly("org.jline:jline:3.15.0")
compileOnly("net.mamoe:mirai-console-terminal:2.7-M2")
implementation("org.itxtech:mirai-console-loader:1.2.0")
//Mirai Console Terminal Deps
implementation("net.mamoe:mirai-console-terminal:2.7-M2")
implementation("org.jline:jline:3.15.0")
}

mavenCentralPublish {
Expand All @@ -39,3 +41,8 @@ mavenCentralPublish {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}

tasks.withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}

0 comments on commit 3c2b6e7

Please sign in to comment.