forked from johannbarbie/BitcoindClient4J
-
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.
updated to latest bitcoin core 0.15.1 version for getblock,
gettransaction and getrawtransaction
- Loading branch information
1 parent
f5b5c3c
commit 181c183
Showing
21 changed files
with
2,052 additions
and
1,195 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,91 +1,91 @@ | ||
<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> | ||
<artifactId>BitcoindClient4J</artifactId> | ||
<packaging>jar</packaging> | ||
<description>A client for the bincoind node</description> | ||
<name>BitcoindClient4j</name> | ||
<groupId>com.37coins</groupId> | ||
<version>0.2.2</version> | ||
|
||
<properties> | ||
<!-- github server corresponds to entry in ~/.m2/settings.xml --> | ||
<github.global.server>github</github.global.server> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.googlecode</groupId> | ||
<artifactId>jsonrpc4j</artifactId> | ||
<version>0.28</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>jackson-core</artifactId> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>jackson-databind</artifactId> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-databind</artifactId> | ||
<version>2.2.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-annotations</artifactId> | ||
<version>2.2.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>1.7.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jsonrpc4j-webdav-maven-repo</id> | ||
<name>jsonrpc4j maven repository</name> | ||
<url>http://jsonrpc4j.googlecode.com/svn/maven/repo/</url> | ||
<layout>default</layout> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<extensions> | ||
<extension> | ||
<groupId>org.springframework.build</groupId> | ||
<artifactId>aws-maven</artifactId> | ||
<version>5.0.0.RELEASE</version> | ||
</extension> | ||
</extensions> | ||
</build> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>37coins.myMavenRepo.write</id> | ||
<url>http://repo.mymavenrepo.com/8HyTMtil2kKL4arfqWnf/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
</project> | ||
<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> | ||
<artifactId>BitcoindClient4J</artifactId> | ||
<packaging>jar</packaging> | ||
<description>A client for the bincoind node</description> | ||
<name>BitcoindClient4j</name> | ||
<groupId>com.37coins</groupId> | ||
<version>0.2.2</version> | ||
|
||
<properties> | ||
<!-- github server corresponds to entry in ~/.m2/settings.xml --> | ||
<github.global.server>github</github.global.server> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-databind</artifactId> | ||
<version>2.2.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-annotations</artifactId> | ||
<version>2.2.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>1.7.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.briandilley.jsonrpc4j</groupId> | ||
<artifactId>jsonrpc4j</artifactId> | ||
<version>1.5.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>cash.bitcoinj</groupId> | ||
<artifactId>bitcoinj-core</artifactId> | ||
<version>0.14.5.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>3.7</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jsonrpc4j-webdav-maven-repo</id> | ||
<name>jsonrpc4j maven repository</name> | ||
<url>http://jsonrpc4j.googlecode.com/svn/maven/repo/</url> | ||
<layout>default</layout> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<extensions> | ||
<extension> | ||
<groupId>org.springframework.build</groupId> | ||
<artifactId>aws-maven</artifactId> | ||
<version>5.0.0.RELEASE</version> | ||
</extension> | ||
</extensions> | ||
</build> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>37coins.myMavenRepo.write</id> | ||
<url>http://repo.mymavenrepo.com/8HyTMtil2kKL4arfqWnf/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
</project> |
Oops, something went wrong.