|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>com.facebook.presto</groupId> |
| 7 | + <artifactId>presto-root</artifactId> |
| 8 | + <version>0.294-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <groupId>com.facebook.presto.router</groupId> |
| 12 | + <artifactId>presto-plan-checker-router-plugin</artifactId> |
| 13 | + <version>0.294-SNAPSHOT</version> |
| 14 | + <packaging>jar</packaging> |
| 15 | + <name>presto-plan-checker-router-plugin</name> |
| 16 | + <description>Presto plan checker router plugin</description> |
| 17 | + |
| 18 | + <properties> |
| 19 | + <air.main.basedir>${project.parent.basedir}</air.main.basedir> |
| 20 | + <air.test.jvm.additional-arguments>-Xms4g -Xmx4g</air.test.jvm.additional-arguments> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>com.google.guava</groupId> |
| 26 | + <artifactId>guava</artifactId> |
| 27 | + </dependency> |
| 28 | + |
| 29 | + <dependency> |
| 30 | + <groupId>org.weakref</groupId> |
| 31 | + <artifactId>jmxutils</artifactId> |
| 32 | + </dependency> |
| 33 | + |
| 34 | + <dependency> |
| 35 | + <groupId>com.facebook.airlift</groupId> |
| 36 | + <artifactId>stats</artifactId> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>javax.servlet</groupId> |
| 41 | + <artifactId>javax.servlet-api</artifactId> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>com.facebook.airlift</groupId> |
| 46 | + <artifactId>configuration</artifactId> |
| 47 | + </dependency> |
| 48 | + |
| 49 | + <dependency> |
| 50 | + <groupId>io.airlift</groupId> |
| 51 | + <artifactId>slice</artifactId> |
| 52 | + <scope>provided</scope> |
| 53 | + </dependency> |
| 54 | + |
| 55 | + <dependency> |
| 56 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 57 | + <artifactId>jackson-annotations</artifactId> |
| 58 | + <scope>provided</scope> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <dependency> |
| 62 | + <groupId>io.airlift</groupId> |
| 63 | + <artifactId>units</artifactId> |
| 64 | + <scope>provided</scope> |
| 65 | + </dependency> |
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>org.openjdk.jol</groupId> |
| 69 | + <artifactId>jol-core</artifactId> |
| 70 | + <scope>provided</scope> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + <dependency> |
| 74 | + <groupId>com.facebook.airlift</groupId> |
| 75 | + <artifactId>bootstrap</artifactId> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>com.facebook.airlift</groupId> |
| 80 | + <artifactId>json</artifactId> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <dependency> |
| 84 | + <groupId>com.facebook.presto</groupId> |
| 85 | + <artifactId>presto-parser</artifactId> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + <dependency> |
| 89 | + <groupId>com.facebook.presto</groupId> |
| 90 | + <artifactId>presto-main-base</artifactId> |
| 91 | + </dependency> |
| 92 | + |
| 93 | + <dependency> |
| 94 | + <groupId>com.facebook.presto</groupId> |
| 95 | + <artifactId>presto-client</artifactId> |
| 96 | + </dependency> |
| 97 | + |
| 98 | + <dependency> |
| 99 | + <groupId>com.facebook.presto</groupId> |
| 100 | + <artifactId>presto-main</artifactId> |
| 101 | + </dependency> |
| 102 | + |
| 103 | + <dependency> |
| 104 | + <groupId>com.squareup.okhttp3</groupId> |
| 105 | + <artifactId>okhttp</artifactId> |
| 106 | + </dependency> |
| 107 | + |
| 108 | + <dependency> |
| 109 | + <groupId>com.google.inject</groupId> |
| 110 | + <artifactId>guice</artifactId> |
| 111 | + </dependency> |
| 112 | + |
| 113 | + <dependency> |
| 114 | + <groupId>javax.inject</groupId> |
| 115 | + <artifactId>javax.inject</artifactId> |
| 116 | + </dependency> |
| 117 | + |
| 118 | + <dependency> |
| 119 | + <groupId>com.facebook.drift</groupId> |
| 120 | + <artifactId>drift-api</artifactId> |
| 121 | + <scope>provided</scope> |
| 122 | + </dependency> |
| 123 | + |
| 124 | + <dependency> |
| 125 | + <groupId>com.facebook.airlift</groupId> |
| 126 | + <artifactId>log</artifactId> |
| 127 | + </dependency> |
| 128 | + |
| 129 | + <!-- Presto SPI --> |
| 130 | + <dependency> |
| 131 | + <groupId>com.facebook.presto</groupId> |
| 132 | + <artifactId>presto-spi</artifactId> |
| 133 | + <scope>provided</scope> |
| 134 | + </dependency> |
| 135 | + |
| 136 | + <dependency> |
| 137 | + <groupId>com.facebook.presto</groupId> |
| 138 | + <artifactId>presto-common</artifactId> |
| 139 | + <scope>provided</scope> |
| 140 | + </dependency> |
| 141 | + </dependencies> |
| 142 | + |
| 143 | + <!-- Build configurations --> |
| 144 | + <build> |
| 145 | + <plugins> |
| 146 | + <plugin> |
| 147 | + <groupId>com.facebook.presto</groupId> |
| 148 | + <artifactId>presto-maven-plugin</artifactId> |
| 149 | + <executions> |
| 150 | + <execution> |
| 151 | + <phase>validate</phase> |
| 152 | + <goals> |
| 153 | + <goal>check-spi-dependencies</goal> |
| 154 | + </goals> |
| 155 | + </execution> |
| 156 | + </executions> |
| 157 | + </plugin> |
| 158 | + <plugin> |
| 159 | + <groupId>ca.vanzyl.provisio.maven.plugins</groupId> |
| 160 | + <artifactId>provisio-maven-plugin</artifactId> |
| 161 | + <executions> |
| 162 | + <execution> |
| 163 | + <phase>package</phase> |
| 164 | + <goals> |
| 165 | + <goal>provision</goal> |
| 166 | + </goals> |
| 167 | + </execution> |
| 168 | + </executions> |
| 169 | + </plugin> |
| 170 | + <!-- Disable git-commit-id-plugin plugin to allow for running tests without |
| 171 | + a git checkout --> |
| 172 | + <plugin> |
| 173 | + <groupId>pl.project13.maven</groupId> |
| 174 | + <artifactId>git-commit-id-plugin</artifactId> |
| 175 | + <configuration> |
| 176 | + <skip>true</skip> |
| 177 | + </configuration> |
| 178 | + </plugin> |
| 179 | + <plugin> |
| 180 | + <groupId>org.basepom.maven</groupId> |
| 181 | + <artifactId>duplicate-finder-maven-plugin</artifactId> |
| 182 | + <configuration> |
| 183 | + <ignoredResourcePatterns> |
| 184 | + <ignoredResourcePattern>parquet.thrift</ignoredResourcePattern> |
| 185 | + <ignoredResourcePattern>about.html</ignoredResourcePattern> |
| 186 | + <ignoredResourcePattern>mozilla/public-suffix-list.txt</ignoredResourcePattern> |
| 187 | + <ignoredResourcePattern>iceberg-build.properties</ignoredResourcePattern> |
| 188 | + <ignoredResourcePattern>org.apache.avro.data/Json.avsc</ignoredResourcePattern> |
| 189 | + </ignoredResourcePatterns> |
| 190 | + <ignoredClassPatterns> |
| 191 | + <ignoredClassPattern>com.esotericsoftware.kryo.*</ignoredClassPattern> |
| 192 | + <ignoredClassPattern>com.esotericsoftware.minlog.Log</ignoredClassPattern> |
| 193 | + <ignoredClassPattern>com.esotericsoftware.reflectasm.*</ignoredClassPattern> |
| 194 | + <ignoredClassPattern>module-info</ignoredClassPattern> |
| 195 | + <ignoredClassPattern>META-INF.versions.9.module-info</ignoredClassPattern> |
| 196 | + <ignoredClassPattern>org.apache.avro.*</ignoredClassPattern> |
| 197 | + <ignoredClassPattern>com.github.benmanes.caffeine.*</ignoredClassPattern> |
| 198 | + <ignoredClassPattern>org.roaringbitmap.*</ignoredClassPattern> |
| 199 | + </ignoredClassPatterns> |
| 200 | + </configuration> |
| 201 | + </plugin> |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-surefire-plugin</artifactId> |
| 205 | + <configuration> |
| 206 | + <forkCount>1</forkCount> |
| 207 | + <reuseForks>false</reuseForks> |
| 208 | + <systemPropertyVariables> |
| 209 | + <PRESTO_SERVER>/root/project/build/debug/presto_cpp/main/presto_server</PRESTO_SERVER> |
| 210 | + </systemPropertyVariables> |
| 211 | + </configuration> |
| 212 | + </plugin> |
| 213 | + </plugins> |
| 214 | + </build> |
| 215 | +</project> |
0 commit comments