Bop
This commit is contained in:
parent
e0a2a3c0b1
commit
a663271e16
8
.github/workflows/v2.yml
vendored
8
.github/workflows/v2.yml
vendored
@ -93,7 +93,7 @@ jobs:
|
||||
id: build-processer
|
||||
run: |
|
||||
chmod +x ./gradlew
|
||||
./gradlew :apps:processer:build --stacktrace --info
|
||||
./gradlew :apps:processer:build --info
|
||||
echo "Build completed"
|
||||
|
||||
|
||||
@ -137,9 +137,8 @@ jobs:
|
||||
- name: Build Converter module
|
||||
id: build-converter
|
||||
run: |
|
||||
cd apps/converter
|
||||
chmod +x ./gradlew
|
||||
./gradlew build
|
||||
./gradlew :apps:converter:build --info
|
||||
echo "Build completed"
|
||||
|
||||
|
||||
@ -183,9 +182,8 @@ jobs:
|
||||
- name: Build Coordinator module
|
||||
id: build-coordinator
|
||||
run: |
|
||||
cd apps/coordinator
|
||||
chmod +x ./gradlew
|
||||
./gradlew build
|
||||
./gradlew :apps:coordinator:build
|
||||
echo "Build completed"
|
||||
|
||||
|
||||
|
||||
@ -39,7 +39,6 @@ dependencies {
|
||||
implementation("io.github.microutils:kotlin-logging-jvm:2.0.11")
|
||||
implementation("com.google.code.gson:gson:2.8.9")
|
||||
implementation("org.json:json:20210307")
|
||||
implementation(project(mapOf("path" to ":shared")))
|
||||
|
||||
implementation("no.iktdev:exfl:0.0.13-SNAPSHOT")
|
||||
|
||||
@ -47,7 +46,8 @@ dependencies {
|
||||
implementation("com.github.vishna:watchservice-ktx:master-SNAPSHOT")
|
||||
implementation("com.github.pgreze:kotlin-process:1.4.1")
|
||||
|
||||
//implementation(project(mapOf("path" to ":shared:kafka")))
|
||||
//implementation(project(mapOf("path" to ":shared")))
|
||||
implementation(project(mapOf("path" to ":shared:kafka")))
|
||||
|
||||
implementation(project(mapOf("path" to ":shared:contract")))
|
||||
implementation(project(mapOf("path" to ":shared:common")))
|
||||
|
||||
@ -8,6 +8,7 @@ findProject(":apps:coordinator")?.name = "coordinator"
|
||||
findProject(":apps:converter")?.name = "converter"
|
||||
findProject(":apps:processer")?.name = "processer"
|
||||
|
||||
findProject(":shared")?.name = "shared"
|
||||
findProject(":shared:kafka")?.name = "kafka"
|
||||
findProject(":shared:contract")?.name = "contract"
|
||||
findProject(":shared:common")?.name = "common"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user