|
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> |
|
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