forked from confluentinc/schema-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
167 lines (158 loc) · 6.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.confluent</groupId>
<artifactId>kafka-schema-registry-parent</artifactId>
<packaging>pom</packaging>
<version>3.2.0-SNAPSHOT</version>
<name>kafka-schema-registry-parent</name>
<organization>
<name>Confluent, Inc.</name>
<url>http://confluent.io</url>
</organization>
<url>http://confluent.io</url>
<description>
Schema Registry provides a RESTful interface for storing and retrieving versioned Avro
schemas for use with Kafka.
</description>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/confluentinc/schema-registry.git</connection>
<developerConnection>scm:git:git@github.com:confluentinc/schema-registry.git</developerConnection>
<url>https://github.com/confluentinc/schema-registry</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>core</module>
<module>client</module>
<module>avro-serializer</module>
<module>json-serializer</module>
<module>avro-converter</module>
<module>package-schema-registry</module>
<module>package-kafka-serde-tools</module>
<module>maven-plugin</module>
</modules>
<properties>
<jersey.version>2.19</jersey.version>
<confluent-common.version>3.2.0-SNAPSHOT</confluent-common.version>
<kafka.version>0.10.2.0-SNAPSHOT</kafka.version>
<kafka.scala.version>2.11</kafka.scala.version>
<log4j.version>1.7.6</log4j.version>
<restutils.version>3.2.0-SNAPSHOT</restutils.version>
<avro.version>1.7.7</avro.version>
<jackson.version>2.5.4</jackson.version>
<junit.version>4.12</junit.version>
<easymock.version>3.3.1</easymock.version>
<powermock.version>1.6.2</powermock.version>
<powermock.api.easymock.version>1.6.2</powermock.api.easymock.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-assembly.version>2.6</maven-assembly.version>
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
<bouncycastle.bcpkix.version>1.54</bouncycastle.bcpkix.version>
<apache.directory.server.version>2.0.0-M22</apache.directory.server.version>
<apache.directory.api.version>1.0.0-M33</apache.directory.api.version>
</properties>
<repositories>
<repository>
<id>confluent</id>
<name>Confluent</name>
<url>${confluent.maven.repo}</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>checkstyle/checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>false</failsOnError>
<failOnViolation>false</failOnViolation>
<includeResources>false</includeResources>
<includeTestResources>false</includeTestResources>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<argLine>-Djava.awt.headless=true</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>