build: remove unused mqtt client dependency
This commit is contained in:
@@ -201,6 +201,20 @@ class MavenModuleProfileTest {
|
||||
.doesNotContain("| 消息队列 |");
|
||||
}
|
||||
|
||||
@Test
|
||||
void yutongMqttBuildSurfaceUsesOnlyPahoClient() throws Exception {
|
||||
Document pom = rootPom();
|
||||
|
||||
assertThat(hasProjectProperty(pom, "paho-mqtt.version"))
|
||||
.isTrue();
|
||||
assertThat(hasDependency(pom, "org.eclipse.paho", "org.eclipse.paho.client.mqttv3"))
|
||||
.isTrue();
|
||||
assertThat(hasProjectProperty(pom, "fusesource-mqtt.version"))
|
||||
.isFalse();
|
||||
assertThat(hasDependency(pom, "org.fusesource.mqtt-client", "mqtt-client"))
|
||||
.isFalse();
|
||||
}
|
||||
|
||||
@Test
|
||||
void productionDocsDoNotAdvertiseMemorySessionStore() throws Exception {
|
||||
String runbook = Files.readString(repositoryRoot()
|
||||
|
||||
6
pom.xml
6
pom.xml
@@ -148,7 +148,6 @@
|
||||
<micrometer.version>1.13.6</micrometer.version>
|
||||
<otel.version>1.42.1</otel.version>
|
||||
<paho-mqtt.version>1.2.5</paho-mqtt.version>
|
||||
<fusesource-mqtt.version>1.12</fusesource-mqtt.version>
|
||||
<taos-jdbcdriver.version>3.8.4</taos-jdbcdriver.version>
|
||||
<springdoc-openapi.version>2.8.17</springdoc-openapi.version>
|
||||
<lombok.version>1.18.34</lombok.version>
|
||||
@@ -353,11 +352,6 @@
|
||||
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
||||
<version>${paho-mqtt.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.fusesource.mqtt-client</groupId>
|
||||
<artifactId>mqtt-client</artifactId>
|
||||
<version>${fusesource-mqtt.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.taosdata.jdbc</groupId>
|
||||
<artifactId>taos-jdbcdriver</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user