|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | + ~ contributor license agreements. See the NOTICE file distributed with |
| 5 | + ~ this work for additional information regarding copyright ownership. |
| 6 | + ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | + ~ (the "License"); you may not use this file except in compliance with |
| 8 | + ~ the License. You may obtain a copy of the License at |
| 9 | + ~ |
| 10 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + ~ |
| 12 | + ~ Unless required by applicable law or agreed to in writing, software |
| 13 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + ~ See the License for the specific language governing permissions and |
| 16 | + ~ limitations under the License. |
| 17 | +--> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <parent> |
| 23 | + <groupId>org.apache.xtable</groupId> |
| 24 | + <artifactId>xtable</artifactId> |
| 25 | + <version>0.2.0-SNAPSHOT</version> |
| 26 | + </parent> |
| 27 | + |
| 28 | + <artifactId>xtable-service</artifactId> |
| 29 | + |
| 30 | + <dependencyManagement> |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 34 | + <artifactId>${quarkus.platform.artifact-id}</artifactId> |
| 35 | + <version>${quarkus.platform.version}</version> |
| 36 | + <type>pom</type> |
| 37 | + <scope>import</scope> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.antlr</groupId> |
| 41 | + <artifactId>antlr4-runtime</artifactId> |
| 42 | + <version>${antlr4.version}</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.scala-lang</groupId> |
| 46 | + <artifactId>scala-reflect</artifactId> |
| 47 | + <version>${scala.version}</version> |
| 48 | + </dependency> |
| 49 | + </dependencies> |
| 50 | + </dependencyManagement> |
| 51 | + |
| 52 | + <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>org.apache.xtable</groupId> |
| 55 | + <artifactId>xtable-core_${scala.binary.version}</artifactId> |
| 56 | + <version>${project.version}</version> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <groupId>org.apache.hadoop</groupId> |
| 61 | + <artifactId>hadoop-aws</artifactId> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <!-- Spark --> |
| 65 | + <dependency> |
| 66 | + <groupId>org.apache.spark</groupId> |
| 67 | + <artifactId>spark-core_${scala.binary.version}</artifactId> |
| 68 | + <scope>provided</scope> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.apache.spark</groupId> |
| 72 | + <artifactId>spark-sql_${scala.binary.version}</artifactId> |
| 73 | + <scope>provided</scope> |
| 74 | + </dependency> |
| 75 | + |
| 76 | + <dependency> |
| 77 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 78 | + <artifactId>jackson-annotations</artifactId> |
| 79 | + <version>${jackson.version}</version> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 83 | + <artifactId>jackson-databind</artifactId> |
| 84 | + <version>${jackson.version}</version> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + <dependency> |
| 88 | + <groupId>io.quarkus</groupId> |
| 89 | + <artifactId>quarkus-arc</artifactId> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>io.quarkus</groupId> |
| 93 | + <artifactId>quarkus-resteasy-reactive</artifactId> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>io.quarkus</groupId> |
| 97 | + <artifactId>quarkus-resteasy-reactive-jackson</artifactId> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>io.rest-assured</groupId> |
| 101 | + <artifactId>rest-assured</artifactId> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <!-- Junit --> |
| 106 | + <dependency> |
| 107 | + <groupId>org.junit.jupiter</groupId> |
| 108 | + <artifactId>junit-jupiter-api</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.junit.jupiter</groupId> |
| 113 | + <artifactId>junit-jupiter-params</artifactId> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>org.junit.jupiter</groupId> |
| 118 | + <artifactId>junit-jupiter-engine</artifactId> |
| 119 | + <scope>test</scope> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>org.junit.platform</groupId> |
| 123 | + <artifactId>junit-platform-commons</artifactId> |
| 124 | + <version>${junit.platform.runner.version}</version> |
| 125 | + <scope>test</scope> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>org.junit.platform</groupId> |
| 129 | + <artifactId>junit-platform-engine</artifactId> |
| 130 | + <version>${junit.platform.runner.version}</version> |
| 131 | + <scope>test</scope> |
| 132 | + </dependency> |
| 133 | + |
| 134 | + <!-- Mockito --> |
| 135 | + <dependency> |
| 136 | + <groupId>org.mockito</groupId> |
| 137 | + <artifactId>mockito-core</artifactId> |
| 138 | + <scope>test</scope> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>org.mockito</groupId> |
| 142 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 143 | + <scope>test</scope> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>org.openjdk.jol</groupId> |
| 147 | + <artifactId>jol-core</artifactId> |
| 148 | + <version>${jol.core.version}</version> |
| 149 | + <scope>runtime</scope> |
| 150 | + </dependency> |
| 151 | + |
| 152 | + </dependencies> |
| 153 | + <build> |
| 154 | + <plugins> |
| 155 | + <plugin> |
| 156 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 157 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 158 | + <version>${quarkus.platform.version}</version> |
| 159 | + <extensions>true</extensions> |
| 160 | + <executions> |
| 161 | + <execution> |
| 162 | + <goals> |
| 163 | + <goal>build</goal> |
| 164 | + <goal>generate-code</goal> |
| 165 | + <goal>generate-code-tests</goal> |
| 166 | + </goals> |
| 167 | + </execution> |
| 168 | + </executions> |
| 169 | + </plugin> |
| 170 | + </plugins> |
| 171 | + </build> |
| 172 | + |
| 173 | + |
| 174 | +</project> |
0 commit comments