Skip to content

Commit 206e7b1

Browse files
committed
fix: fat jar build
1 parent 6e54e0e commit 206e7b1

29 files changed

+25
-902
lines changed

backend/common/build.gradle

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,13 @@
11
plugins {
2-
id "java-library"
2+
id 'java-library'
33
id "maven-publish"
44
id "signing"
5-
id 'org.jetbrains.kotlin.jvm'
65
}
76

8-
9-
group 'com.github.kayjamlang'
10-
archivesBaseName = "backend-common"
11-
version '0.1.4-beta4'
12-
137
dependencies {
14-
api project(":core")
15-
api("commons-cli:commons-cli:1.9.0")
8+
api "commons-cli:commons-cli:1.9.0"
9+
implementation project(":core")
1610
implementation group: 'com.github.albfernandez', name: 'juniversalchardet', version: '2.4.0'
1711
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
18-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
1912
}
2013

21-
repositories {
22-
mavenCentral()
23-
}
24-
compileKotlin {
25-
}

backend/jvm/build.gradle

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
11
plugins {
2-
id "java-library"
2+
id 'java-library'
33
id "maven-publish"
44
id "signing"
55
}
66

7-
8-
group 'com.github.kayjamlang'
9-
archivesBaseName = "backend-jvm"
10-
version '0.1.4-beta4'
11-
127
dependencies {
138
implementation project(":core")
149
implementation project(":backend:common")
1510
implementation 'org.ow2.asm:asm:9.7.1'
1611
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
1712
testImplementation project(':core')
18-
}
19-
20-
repositories {
21-
mavenCentral()
22-
}
13+
}

backend/ts/build.gradle

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
plugins {
2-
id "java-library"
2+
id 'java-library'
33
id "maven-publish"
44
id "signing"
55
}
66

7-
8-
group 'com.github.kayjamlang'
9-
archivesBaseName = "backend-ts"
10-
version '0.1.4-beta4'
11-
127
dependencies {
138
implementation project(":core")
149
implementation project(":backend:common")
1510
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
1611
testImplementation project(':core')
17-
}
18-
19-
repositories {
20-
mavenCentral()
2112
}

0 commit comments

Comments
 (0)