|
| 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 | + <parent> |
| 22 | + <artifactId>hudi-examples</artifactId> |
| 23 | + <groupId>org.apache.hudi</groupId> |
| 24 | + <version>0.11.0-SNAPSHOT</version> |
| 25 | + </parent> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
| 27 | + |
| 28 | + <artifactId>hudi-examples-common</artifactId> |
| 29 | + |
| 30 | + <properties> |
| 31 | + <main.basedir>${project.parent.basedir}</main.basedir> |
| 32 | + <checkstyle.skip>true</checkstyle.skip> |
| 33 | + </properties> |
| 34 | + |
| 35 | + <build> |
| 36 | + <resources> |
| 37 | + <resource> |
| 38 | + <directory>src/main/resources</directory> |
| 39 | + </resource> |
| 40 | + </resources> |
| 41 | + |
| 42 | + <plugins> |
| 43 | + <plugin> |
| 44 | + <groupId>net.alchim31.maven</groupId> |
| 45 | + <artifactId>scala-maven-plugin</artifactId> |
| 46 | + <executions> |
| 47 | + <execution> |
| 48 | + <id>scala-compile-first</id> |
| 49 | + <phase>process-resources</phase> |
| 50 | + <goals> |
| 51 | + <goal>add-source</goal> |
| 52 | + <goal>compile</goal> |
| 53 | + </goals> |
| 54 | + </execution> |
| 55 | + </executions> |
| 56 | + </plugin> |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.maven.plugins</groupId> |
| 59 | + <artifactId>maven-compiler-plugin</artifactId> |
| 60 | + <executions> |
| 61 | + <execution> |
| 62 | + <phase>compile</phase> |
| 63 | + <goals> |
| 64 | + <goal>compile</goal> |
| 65 | + </goals> |
| 66 | + </execution> |
| 67 | + </executions> |
| 68 | + </plugin> |
| 69 | + <plugin> |
| 70 | + <groupId>org.apache.maven.plugins</groupId> |
| 71 | + <artifactId>maven-jar-plugin</artifactId> |
| 72 | + <executions> |
| 73 | + <execution> |
| 74 | + <goals> |
| 75 | + <goal>test-jar</goal> |
| 76 | + </goals> |
| 77 | + <phase>test-compile</phase> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + <configuration> |
| 81 | + <skip>false</skip> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + <plugin> |
| 85 | + <groupId>org.apache.rat</groupId> |
| 86 | + <artifactId>apache-rat-plugin</artifactId> |
| 87 | + </plugin> |
| 88 | + </plugins> |
| 89 | + </build> |
| 90 | + |
| 91 | + <dependencies> |
| 92 | + <dependency> |
| 93 | + <groupId>org.apache.hudi</groupId> |
| 94 | + <artifactId>hudi-common</artifactId> |
| 95 | + <version>${project.version}</version> |
| 96 | + </dependency> |
| 97 | + |
| 98 | + <!-- Avro --> |
| 99 | + <dependency> |
| 100 | + <groupId>org.apache.avro</groupId> |
| 101 | + <artifactId>avro</artifactId> |
| 102 | + </dependency> |
| 103 | + |
| 104 | + <dependency> |
| 105 | + <groupId>org.apache.parquet</groupId> |
| 106 | + <artifactId>parquet-avro</artifactId> |
| 107 | + </dependency> |
| 108 | + </dependencies> |
| 109 | +</project> |
0 commit comments