forked from OpenTSDB/asynchbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* check in pom.xml * remove unnecessary plugins * remove unnecessary parent pom * apply patch OpenTSDB#202
- Loading branch information
Showing
4 changed files
with
298 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
build/ | ||
pom.xml | ||
target/ | ||
/bin/ | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,296 @@ | ||
<!-- Generated by Makefile on Wed May 15 21:25:11 +08 2019 --> | ||
<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> | ||
|
||
<groupId>org.hbase</groupId> | ||
<artifactId>asynchbase</artifactId> | ||
<version>1.8.3-SNAPSHOT</version> | ||
<name>Asynchronous HBase Client</name> | ||
<organization> | ||
<name>The Async HBase Authors</name> | ||
<url>http://opentsdb.net</url> | ||
</organization> | ||
<description> | ||
An alternative HBase client library for applications requiring fully | ||
asynchronous, non-blocking and thread-safe HBase connectivity. | ||
</description> | ||
<url>https://github.com/OpenTSDB/asynchbase</url> | ||
<licenses> | ||
<license> | ||
<name>BSD</name> | ||
<url>http://www.opensource.org/licenses/BSD-3-Clause</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:[email protected]:OpenTSDB/asynchbase.git</connection> | ||
<url>https://github.com/OpenTSDB/asynchbase</url> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/OpenTSDB/asynchbase/issues</url> | ||
</issueManagement> | ||
<mailingLists> | ||
<mailingList> | ||
<name>User List</name> | ||
<post>[email protected]</post> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<archive>https://groups.google.com/group/asynchbase</archive> | ||
</mailingList> | ||
</mailingLists> | ||
<developers> | ||
<developer> | ||
<id>tsuna</id> | ||
<name>Benoit "tsuna" Sigoure</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
<timezone>-8</timezone> | ||
</developer> | ||
</developers> | ||
<inceptionYear>2010</inceptionYear> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<build> | ||
<sourceDirectory>.mvn-compat/src/main/java</sourceDirectory> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
|
||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.xolstice.maven.plugins</groupId> | ||
<artifactId>protobuf-maven-plugin</artifactId> | ||
<version>0.5.0</version> | ||
<configuration> | ||
<protocExecutable>protoc</protocExecutable> | ||
<protoSourceRoot>${basedir}/protobuf</protoSourceRoot> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.5.1</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
<compilerArgument>-Xlint</compilerArgument> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.12.4</version> | ||
<configuration> | ||
<excludes> | ||
<exclude>**/TestIntegration.java</exclude> | ||
<exclude>**/TestIncrementCoalescing.java</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
|
||
</plugins> | ||
</build> | ||
|
||
<profiles> | ||
<!-- CGlib in Mockito and PowerMockito has issues mocking the Subject class under javax.security.auth. | ||
It should work better in 2.x so until that comes out, we'll just skip the auth test classes when running | ||
under JDK 8. | ||
|
||
The exception observed is: | ||
java.lang.LinkageError: loader constraint violation in interface itable initialization: | ||
when resolving method "$java.security.Principal$$EnhancerByMockitoWithCGLIB$$e775e657 | ||
.implies(Ljavax/security/auth/Subject;)Z" the class loader (instance of org/powermock/ | ||
core/classloader/MockClassLoader) of the current class, $java/security/ | ||
Principal$$EnhancerByMockitoWithCGLIB$$e775e657, and the class loader (instance of <bootloader>) for | ||
interface java/security/Principal have different Class objects for the type javax/security/auth/Subject | ||
used in the signature. | ||
--> | ||
<profile> | ||
<activation> | ||
<jdk>1.8</jdk> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.12.4</version> | ||
<configuration> | ||
<excludes> | ||
<exclude>**/TestKerberosClientAuthProvider.java</exclude> | ||
<exclude>**/TestLogin.java</exclude> | ||
<exclude>**/TestSimpleClientAuthProvider.java</exclude> | ||
<exclude>**/TestIntegration.java</exclude> | ||
<exclude>**/TestIncrementCoalescing.java</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>18.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.protobuf</groupId> | ||
<artifactId>protobuf-java</artifactId> | ||
<version>2.5.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty</artifactId> | ||
<version>3.9.4.Final</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.stumbleupon</groupId> | ||
<artifactId>async</artifactId> | ||
<version>1.4.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
<version>3.4.5</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>jline</groupId> | ||
<artifactId>jline</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.7.7</version> | ||
</dependency> | ||
|
||
<!-- runtime dependencies --> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>log4j-over-slf4j</artifactId> | ||
<version>1.7.7</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<!-- test dependencies --> | ||
|
||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-core</artifactId> | ||
<version>1.3</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.javassist</groupId> | ||
<artifactId>javassist</artifactId> | ||
<version>3.18.1-GA</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-all</artifactId> | ||
<version>1.9.5</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.objenesis</groupId> | ||
<artifactId>objenesis</artifactId> | ||
<version>2.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.powermock</groupId> | ||
<artifactId>powermock-module-junit4</artifactId> | ||
<version>1.5.4</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.powermock</groupId> | ||
<artifactId>powermock-api-mockito</artifactId> | ||
<version>1.5.4</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-core</artifactId> | ||
<version>1.2.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>1.2.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters