|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | + ~ or more contributor license agreements. See the NOTICE file |
| 5 | + ~ distributed with this work for additional information |
| 6 | + ~ regarding copyright ownership. The ASF licenses this file |
| 7 | + ~ to you under the Apache License, Version 2.0 (the |
| 8 | + ~ "License"); you may not use this file except in compliance |
| 9 | + ~ with the License. You may obtain a copy of the License at |
| 10 | + ~ |
| 11 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | + ~ |
| 13 | + ~ Unless required by applicable law or agreed to in writing, |
| 14 | + ~ software distributed under the License is distributed on an |
| 15 | + ~ "AS IS" BASIS, WITHOUT WARRA NTIES OR CONDITIONS OF ANY |
| 16 | + ~ KIND, either express or implied. See the License for the |
| 17 | + ~ specific language governing permissions and limitations |
| 18 | + ~ under the License. |
| 19 | + --> |
| 20 | + |
| 21 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <groupId>org.apache.druid.extensions.contrib</groupId> |
| 25 | + <artifactId>druid-rabbit-indexing-service</artifactId> |
| 26 | + <name>druid-rabbit-indexing-service</name> |
| 27 | + <description>druid-rabbit-indexing-service</description> |
| 28 | + |
| 29 | + <parent> |
| 30 | + <groupId>org.apache.druid</groupId> |
| 31 | + <artifactId>druid</artifactId> |
| 32 | + <version>30.0.0-SNAPSHOT</version> |
| 33 | + <relativePath>../../pom.xml</relativePath> |
| 34 | + </parent> |
| 35 | + |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>org.apache.druid</groupId> |
| 39 | + <artifactId>druid-indexing-service</artifactId> |
| 40 | + <version>${project.parent.version}</version> |
| 41 | + <scope>provided</scope> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.apache.druid</groupId> |
| 45 | + <artifactId>druid-processing</artifactId> |
| 46 | + <version>${project.parent.version}</version> |
| 47 | + <scope>provided</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.apache.druid</groupId> |
| 51 | + <artifactId>druid-server</artifactId> |
| 52 | + <version>${project.parent.version}</version> |
| 53 | + <scope>provided</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>io.netty</groupId> |
| 57 | + <artifactId>netty</artifactId> |
| 58 | + <version>3.10.6.Final</version> |
| 59 | + <scope>provided</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.google.code.findbugs</groupId> |
| 63 | + <artifactId>jsr305</artifactId> |
| 64 | + <scope>provided</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>commons-io</groupId> |
| 68 | + <artifactId>commons-io</artifactId> |
| 69 | + <scope>provided</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 73 | + <artifactId>jackson-annotations</artifactId> |
| 74 | + <scope>provided</scope> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>joda-time</groupId> |
| 78 | + <artifactId>joda-time</artifactId> |
| 79 | + <scope>provided</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>com.google.inject</groupId> |
| 83 | + <artifactId>guice</artifactId> |
| 84 | + <scope>provided</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 88 | + <artifactId>jackson-databind</artifactId> |
| 89 | + <scope>provided</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>javax.ws.rs</groupId> |
| 93 | + <artifactId>jsr311-api</artifactId> |
| 94 | + <scope>provided</scope> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>org.hamcrest</groupId> |
| 98 | + <artifactId>hamcrest-core</artifactId> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 103 | + <artifactId>jackson-core</artifactId> |
| 104 | + <scope>provided</scope> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>com.google.guava</groupId> |
| 108 | + <artifactId>guava</artifactId> |
| 109 | + <scope>provided</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>javax.validation</groupId> |
| 113 | + <artifactId>validation-api</artifactId> |
| 114 | + <scope>provided</scope> |
| 115 | + </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>com.rabbitmq</groupId> |
| 118 | + <artifactId>stream-client</artifactId> |
| 119 | + <version>0.15.0</version> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>jakarta.validation</groupId> |
| 123 | + <artifactId>jakarta.validation-api</artifactId> |
| 124 | + <version>2.0.2</version> |
| 125 | + <scope>provided</scope> |
| 126 | + </dependency> |
| 127 | + |
| 128 | + <!-- Tests --> |
| 129 | + <dependency> |
| 130 | + <groupId>junit</groupId> |
| 131 | + <artifactId>junit</artifactId> |
| 132 | + <scope>test</scope> |
| 133 | + </dependency> |
| 134 | + <dependency> |
| 135 | + <groupId>org.apache.druid</groupId> |
| 136 | + <artifactId>druid-processing</artifactId> |
| 137 | + <version>${project.parent.version}</version> |
| 138 | + <type>test-jar</type> |
| 139 | + <scope>test</scope> |
| 140 | + </dependency> |
| 141 | + <dependency> |
| 142 | + <groupId>org.apache.druid</groupId> |
| 143 | + <artifactId>druid-server</artifactId> |
| 144 | + <version>${project.parent.version}</version> |
| 145 | + <type>test-jar</type> |
| 146 | + <scope>test</scope> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.apache.druid</groupId> |
| 150 | + <artifactId>druid-indexing-service</artifactId> |
| 151 | + <version>${project.parent.version}</version> |
| 152 | + <type>test-jar</type> |
| 153 | + <scope>test</scope> |
| 154 | + </dependency> |
| 155 | + <dependency> |
| 156 | + <groupId>org.apache.curator</groupId> |
| 157 | + <artifactId>curator-test</artifactId> |
| 158 | + <scope>test</scope> |
| 159 | + </dependency> |
| 160 | + <dependency> |
| 161 | + <groupId>org.easymock</groupId> |
| 162 | + <artifactId>easymock</artifactId> |
| 163 | + <scope>test</scope> |
| 164 | + </dependency> |
| 165 | + <dependency> |
| 166 | + <groupId>org.assertj</groupId> |
| 167 | + <artifactId>assertj-core</artifactId> |
| 168 | + <scope>test</scope> |
| 169 | + </dependency> |
| 170 | + <dependency> |
| 171 | + <groupId>nl.jqno.equalsverifier</groupId> |
| 172 | + <artifactId>equalsverifier</artifactId> |
| 173 | + <scope>test</scope> |
| 174 | + </dependency> |
| 175 | + |
| 176 | + </dependencies> |
| 177 | + |
| 178 | +</project> |
0 commit comments