|
179 | 179 | </plugins>
|
180 | 180 | </build>
|
181 | 181 |
|
| 182 | + <dependencyManagement> |
| 183 | + <dependencies> |
| 184 | + <dependency> |
| 185 | + <groupId>org.apache.httpcomponents</groupId> |
| 186 | + <artifactId>httpclient</artifactId> |
| 187 | + <version>4.5.13</version> |
| 188 | + </dependency> |
| 189 | + </dependencies> |
| 190 | + </dependencyManagement> |
| 191 | + |
182 | 192 | <profiles>
|
183 | 193 | <profile>
|
184 | 194 | <id>standalone</id>
|
|
195 | 205 | </plugins>
|
196 | 206 | </build>
|
197 | 207 | </profile>
|
| 208 | + <profile> |
| 209 | + <id>one-for-all</id> |
| 210 | + <activation> |
| 211 | + <activeByDefault>true</activeByDefault> |
| 212 | + </activation> |
| 213 | + <dependencies> |
| 214 | + <dependency> |
| 215 | + <groupId>io.streamthoughts</groupId> |
| 216 | + <artifactId>kafka-connect-filepulse-amazons3-fs</artifactId> |
| 217 | + <version>${project.version}</version> |
| 218 | + </dependency> |
| 219 | + <dependency> |
| 220 | + <groupId>io.streamthoughts</groupId> |
| 221 | + <artifactId>kafka-connect-filepulse-azure-storage-fs</artifactId> |
| 222 | + <version>${project.version}</version> |
| 223 | + </dependency> |
| 224 | + <dependency> |
| 225 | + <groupId>io.streamthoughts</groupId> |
| 226 | + <artifactId>kafka-connect-filepulse-google-cloud-storage-fs</artifactId> |
| 227 | + <version>${project.version}</version> |
| 228 | + </dependency> |
| 229 | + <dependency> |
| 230 | + <groupId>io.streamthoughts</groupId> |
| 231 | + <artifactId>kafka-connect-filepulse-local-fs</artifactId> |
| 232 | + <version>${project.version}</version> |
| 233 | + </dependency> |
| 234 | + </dependencies> |
| 235 | + </profile> |
| 236 | + <profile> |
| 237 | + <id>aws</id> |
| 238 | + <dependencies> |
| 239 | + <dependency> |
| 240 | + <groupId>io.streamthoughts</groupId> |
| 241 | + <artifactId>kafka-connect-filepulse-amazons3-fs</artifactId> |
| 242 | + <version>${project.version}</version> |
| 243 | + </dependency> |
| 244 | + </dependencies> |
| 245 | + </profile> |
| 246 | + <profile> |
| 247 | + <id>gcs</id> |
| 248 | + <dependencies> |
| 249 | + <dependency> |
| 250 | + <groupId>io.streamthoughts</groupId> |
| 251 | + <artifactId>kafka-connect-filepulse-google-cloud-storage-fs</artifactId> |
| 252 | + <version>${project.version}</version> |
| 253 | + </dependency> |
| 254 | + </dependencies> |
| 255 | + </profile> |
| 256 | + <profile> |
| 257 | + <id>azure</id> |
| 258 | + <dependencies> |
| 259 | + <dependency> |
| 260 | + <groupId>io.streamthoughts</groupId> |
| 261 | + <artifactId>kafka-connect-filepulse-azure-storage-fs</artifactId> |
| 262 | + <version>${project.version}</version> |
| 263 | + </dependency> |
| 264 | + </dependencies> |
| 265 | + </profile> |
| 266 | + <profile> |
| 267 | + <id>local</id> |
| 268 | + <dependencies> |
| 269 | + <dependency> |
| 270 | + <groupId>io.streamthoughts</groupId> |
| 271 | + <artifactId>kafka-connect-filepulse-local-fs</artifactId> |
| 272 | + <version>${project.version}</version> |
| 273 | + </dependency> |
| 274 | + </dependencies> |
| 275 | + </profile> |
198 | 276 | </profiles>
|
199 |
| - |
200 |
| - <dependencyManagement> |
201 |
| - <dependencies> |
202 |
| - <dependency> |
203 |
| - <groupId>org.apache.httpcomponents</groupId> |
204 |
| - <artifactId>httpclient</artifactId> |
205 |
| - <version>4.5.13</version> |
206 |
| - </dependency> |
207 |
| - </dependencies> |
208 |
| - </dependencyManagement> |
209 |
| - |
210 | 277 | <dependencies>
|
211 | 278 | <dependency>
|
212 | 279 | <groupId>io.streamthoughts</groupId>
|
213 | 280 | <artifactId>kafka-connect-file-pulse-api</artifactId>
|
214 | 281 | <version>${project.version}</version>
|
215 | 282 | </dependency>
|
| 283 | + |
216 | 284 | <dependency>
|
217 | 285 | <groupId>io.streamthoughts</groupId>
|
218 | 286 | <artifactId>kafka-connect-file-pulse-filters</artifactId>
|
219 | 287 | <version>${project.version}</version>
|
220 | 288 | </dependency>
|
221 |
| - <dependency> |
222 |
| - <groupId>io.streamthoughts</groupId> |
223 |
| - <artifactId>kafka-connect-filepulse-local-fs</artifactId> |
224 |
| - <version>${project.version}</version> |
225 |
| - </dependency> |
226 |
| - <dependency> |
227 |
| - <groupId>io.streamthoughts</groupId> |
228 |
| - <artifactId>kafka-connect-filepulse-amazons3-fs</artifactId> |
229 |
| - <version>${project.version}</version> |
230 |
| - </dependency> |
231 |
| - <dependency> |
232 |
| - <groupId>io.streamthoughts</groupId> |
233 |
| - <artifactId>kafka-connect-filepulse-azure-storage-fs</artifactId> |
234 |
| - <version>${project.version}</version> |
235 |
| - </dependency> |
236 |
| - <dependency> |
237 |
| - <groupId>io.streamthoughts</groupId> |
238 |
| - <artifactId>kafka-connect-filepulse-google-cloud-storage-fs</artifactId> |
239 |
| - <version>${project.version}</version> |
240 |
| - </dependency> |
| 289 | + |
241 | 290 | <dependency>
|
242 | 291 | <groupId>org.apache.kafka</groupId>
|
243 | 292 | <artifactId>kafka-clients</artifactId>
|
244 | 293 | <scope>provided</scope>
|
245 | 294 | </dependency>
|
| 295 | + |
246 | 296 | <dependency>
|
247 | 297 | <groupId>org.apache.kafka</groupId>
|
248 | 298 | <artifactId>connect-api</artifactId>
|
249 | 299 | <scope>provided</scope>
|
250 | 300 | </dependency>
|
| 301 | + |
251 | 302 | <dependency>
|
252 | 303 | <groupId>commons-io</groupId>
|
253 | 304 | <artifactId>commons-io</artifactId>
|
254 | 305 | </dependency>
|
255 | 306 |
|
256 |
| - |
257 | 307 | <!-- START test dependencies-->
|
258 | 308 | <dependency>
|
259 | 309 | <groupId>junit</groupId>
|
|
283 | 333 | <groupId>io.rest-assured</groupId>
|
284 | 334 | <artifactId>json-path</artifactId>
|
285 | 335 | </dependency>
|
| 336 | + <dependency> |
| 337 | + <groupId>io.streamthoughts</groupId> |
| 338 | + <artifactId>kafka-connect-filepulse-local-fs</artifactId> |
| 339 | + <version>${project.version}</version> |
| 340 | + <scope>test</scope> |
| 341 | + </dependency> |
286 | 342 | <!-- END test dependencies-->
|
287 | 343 | </dependencies>
|
288 | 344 |
|
|
0 commit comments