Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 93 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<modules>
<module>kafka</module>
<module>spark</module>
<module>rest</module>
<module>hbase-connectors-assembly</module>
</modules>
<scm>
Expand Down Expand Up @@ -154,6 +155,16 @@
<glassfish.el.version>3.0.1-b08</glassfish.el.version>
<compat.module>hbase-hadoop2-compat</compat.module>
<dependency.locations.enabled>false</dependency.locations.enabled>
<jackson.version>2.10.1</jackson.version>
<jettison.version>1.3.8</jettison.version>
<glassfish.jsp.version>2.3.2</glassfish.jsp.version>
<kerby.version>1.0.1</kerby.version>
<mockito-core.version>2.28.2</mockito-core.version>
<findbugs-annotations.version>1.3.9-1</findbugs-annotations.version>
<bouncycastle.version>1.60</bouncycastle.version>
<htrace.version>4.2.0-incubating</htrace.version>
<maven.warbucks.version>1.1.0</maven.warbucks.version>
<external.protobuf.groupid>com.google.protobuf</external.protobuf.groupid>
</properties>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -290,6 +301,36 @@
<artifactId>hbase-mapreduce</artifactId>
<version>${hbase.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kerby</groupId>
<artifactId>kerb-core</artifactId>
<version>${kerby.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kerby</groupId>
<artifactId>kerb-simplekdc</artifactId>
<version>${kerby.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-http</artifactId>
<version>${hbase.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase.thirdparty</groupId>
<artifactId>hbase-shaded-protobuf</artifactId>
<version>${hbase-thirdparty.version}</version>
</dependency>
<dependency>
<groupId>com.github.stephenc.findbugs</groupId>
<artifactId>findbugs-annotations</artifactId>
<version>${findbugs-annotations.version}</version>
</dependency>
<dependency>
<groupId>org.apache.htrace</groupId>
<artifactId>htrace-core4</artifactId>
<version>${htrace.version}</version>
</dependency>
<dependency>
<artifactId>hbase-it</artifactId>
<groupId>org.apache.hbase</groupId>
Expand All @@ -303,6 +344,18 @@
<version>${hbase.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minikdc</artifactId>
<version>${hadoop-three.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down Expand Up @@ -343,7 +396,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -431,6 +484,45 @@
<failOnViolation>true</failOnViolation>
</configuration>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>warbucks-maven-plugin</artifactId>
<version>${maven.warbucks.version}</version>
<configuration>
<ignoreRuleFailures>false</ignoreRuleFailures>
<rules>
<rule>
<!-- exclude the generated java files -->
<classPattern>(?!.*(.generated.|.tmpl.|\$)).*</classPattern>
<includeTestClasses>false</includeTestClasses>
<includePublicClasses>true</includePublicClasses>
<includePackagePrivateClasses>false</includePackagePrivateClasses>
<includeProtectedClasses>false</includeProtectedClasses>
<includePrivateClasses>false</includePrivateClasses>
<classAnnotationPattern>org[.]apache[.]yetus[.]audience[.]InterfaceAudience.*</classAnnotationPattern>
</rule>
</rules>
</configuration>
<executions>
<execution>
<id>run-warbucks</id>
<goals>
<goal>check</goal><!-- runs at process-test-classes phase -->
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>${protobuf.plugin.version}</version>
<configuration>
<protocArtifact>${external.protobuf.groupid}:protoc:${external.protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
<protoSourceRoot>${basedir}/src/main/protobuf/</protoSourceRoot>
<clearOutputDirectory>false</clearOutputDirectory>
<checkStaleness>true</checkStaleness>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down
Loading