Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ChAoSUnItY committed Dec 16, 2022
1 parent 0524713 commit 034d7aa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

plugins {
id("maven-publish")
id("java")
id("com.github.johnrengelman.shadow") version "7.1.2"
}

val commonVersion: String by properties

group = "chaos.unity.nenggao"
version = "1.4.0"
version = commonVersion

repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
commonVersion=1.4.1
4 changes: 3 additions & 1 deletion kotlinImpl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ plugins {
kotlin("jvm") version "1.7.20"
}

val commonVersion: String by project(":").properties

group = "chaos.unity.nenggao"
version = "1.4.0"
version = commonVersion

repositories {
mavenCentral()
Expand Down
4 changes: 3 additions & 1 deletion scalaImpl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ plugins {
scala
}

val commonVersion: String by properties

group = "chaos.unity.nenggao"
version = "1.4.0"
version = commonVersion

repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
rootProject.name = "Nenggao"

include("kotlinImpl")
include("scalaImpl")

0 comments on commit 034d7aa

Please sign in to comment.