|
19 | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
20 | 20 | <groupId>io.streamnative.pulsar.handlers</groupId> |
21 | 21 | <artifactId>pulsar-protocol-handler-mqtt-parent</artifactId> |
22 | | - <version>4.2.0-SNAPSHOT</version> |
| 22 | + <version>4.3.0-SNAPSHOT</version> |
23 | 23 | <name>StreamNative :: Pulsar Protocol Handler :: MoP Parent</name> |
24 | 24 | <description>Parent for MQTT on Pulsar implemented using Pulsar Protocol Handler.</description> |
25 | 25 |
|
|
47 | 47 | </licenses> |
48 | 48 |
|
49 | 49 | <properties> |
50 | | - <lombok.version>1.18.22</lombok.version> |
51 | 50 | <mockito.version>2.22.0</mockito.version> |
52 | 51 | <testng.version>6.14.3</testng.version> |
53 | 52 | <awaitility.version>4.0.2</awaitility.version> |
54 | | - <pulsar.version>4.2.0-SNAPSHOT</pulsar.version> |
55 | | - <sn.bom.version>4.2.0-SNAPSHOT</sn.bom.version> |
| 53 | + <pulsar.version>4.3.0-SNAPSHOT</pulsar.version> |
| 54 | + <sn.bom.version>4.3.0-SNAPSHOT</sn.bom.version> |
56 | 55 | <log4j2.version>2.18.0</log4j2.version> |
57 | 56 | <fusesource.client.version>1.16</fusesource.client.version> |
58 | 57 | <hivemq.mqtt.client.version>1.2.2</hivemq.mqtt.client.version> |
|
72 | 71 | <spotbugs-maven-plugin.version>3.1.8</spotbugs-maven-plugin.version> |
73 | 72 | <maven-jacoco-plugin.version>0.8.7</maven-jacoco-plugin.version> |
74 | 73 | <opentelemetry.version>1.56.0</opentelemetry.version> |
| 74 | + <validation-api.version>2.0.1.Final</validation-api.version> |
| 75 | + <jersey.version>2.42</jersey.version> |
| 76 | + <swagger-annotations.version>1.6.15</swagger-annotations.version> |
| 77 | + <javax.ws.rs.version>2.1.1</javax.ws.rs.version> |
| 78 | + <conscrypt.version>2.5.2</conscrypt.version> |
75 | 79 | </properties> |
76 | 80 |
|
77 | 81 | <dependencies> |
|
131 | 135 | <artifactId>opentelemetry-sdk-extension-autoconfigure-spi</artifactId> |
132 | 136 | <version>${opentelemetry.version}</version> |
133 | 137 | </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>org.slf4j</groupId> |
| 140 | + <artifactId>slf4j-api</artifactId> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>org.apache.commons</groupId> |
| 144 | + <artifactId>commons-lang3</artifactId> |
| 145 | + </dependency> |
134 | 146 | </dependencies> |
135 | 147 |
|
136 | 148 | <dependencyManagement> |
|
198 | 210 | <source>${javac.source}</source> |
199 | 211 | <target>${javac.target}</target> |
200 | 212 | <useIncrementalCompilation>false</useIncrementalCompilation> |
201 | | - <annotationProcessorPaths> |
202 | | - <path> |
203 | | - <groupId>org.projectlombok</groupId> |
204 | | - <artifactId>lombok</artifactId> |
205 | | - <version>${lombok.version}</version> |
206 | | - </path> |
207 | | - </annotationProcessorPaths> |
208 | 213 | <compilerArgs> |
209 | 214 | <arg>-parameters</arg> |
210 | 215 | <!-- enable 'all' lint warnings with some exclusions --> |
|
0 commit comments