Skip to content

Commit eb50304

Browse files
authored
Rename service and library modules (#61)
* rename modules and add description
1 parent cc220b1 commit eb50304

File tree

89 files changed

+21
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+21
-10
lines changed

application/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ plugins {
55
id("org.springframework.boot")
66
}
77

8+
description = "Standard configuration of standalone version of MQTT Broker"
9+
810
dependencies {
9-
implementation projects.service
11+
implementation projects.coreService
1012
implementation libs.rlib.logger.slf4j
1113
implementation libs.springboot.starter.core
1214
implementation libs.springboot.starter.log4j2

service/build.gradle renamed to core-service/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ plugins {
44
id("groovy")
55
}
66

7+
description = "Provides interfaces and minimal implementation of all required services for MQTT Broker"
8+
79
dependencies {
810
api projects.network
911

1012
testImplementation projects.testSupport
11-
testImplementation libs.rlib.logger.impl
1213
testImplementation testFixtures(projects.network)
1314
}

0 commit comments

Comments
 (0)