forked from ExpediaGroup/avro-compatibility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
81 lines (73 loc) · 2.74 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.hotels</groupId>
<artifactId>hotels-oss-parent</artifactId>
<version>4.0.1</version>
</parent>
<groupId>com.hotels</groupId>
<artifactId>avro-compatibility</artifactId>
<version>2.1.2-SNAPSHOT</version>
<name>Avro compatibility API</name>
<description>A user friendly API for checking for and reporting on Avro schema incompatibilities.</description>
<inceptionYear>2017</inceptionYear>
<scm>
<connection>scm:git:https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/HotelsDotCom/avro-compatibility.git</connection>
<developerConnection>scm:git:https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/HotelsDotCom/avro-compatibility.git</developerConnection>
<url>https://github.com/HotelsDotCom/avro-compatibility</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Elliot West</name>
<id>teabot</id>
<email>[email protected]</email>
<timezone>0</timezone>
<organization>Hotels.com</organization>
<organizationUrl>http://hotels.com</organizationUrl>
</developer>
</developers>
<properties>
<jdk.version>1.7</jdk.version>
<avro.version>1.8.2</avro.version>
</properties>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<scope>compile</scope>
<version>${avro.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.12</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license.maven.plugin.version}</version>
<configuration>
<!-- excluding files that don't need a header update -->
<excludes>
<exclude>src/main/java/patched/org/apache/avro/package-info.java</exclude>
<exclude>src/main/java/patched/org/apache/avro/SchemaCompatibility.java</exclude>
<exclude>src/test/java/com/hotels/avro/compatibility/CompatibilityTest.java</exclude>
<exclude>src/test/java/patched/org/apache/avro/*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>