lite-bitcoin-rpc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.clightning4j</groupId> <artifactId>lite-bitcoin-rpc</artifactId> <version>0.0.1-rc1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.clightning4j</groupId> <artifactId>lite-bitcoin-rpc</artifactId> <version>0.0.1-rc1</version> <name>lite-bitcoin-rpc</name> <description>A (another) Lite RPC wrapper for Bitcoin Core RPC 1.0, that permitted to have flexibility into making the request with different versions of Bitcoin Core without lost compatibility during the update.</description> <url>https://github.com/clightning4j/lite-bitcoin-rpc</url> <licenses> <license> <name>GNU General Public License v2.0</name> <url>https://github.com/clightning4j/lite-bitcoin-rpc/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>vincenzopalazzo</id> <name>Vincenzo Palazzo</name> <email>vincenzopalazzodev@gmail.com</email> <url>https://github.com/vincenzopalazzo</url> <roles> <role>developer</role> </roles> <timezone>Europe/Rome</timezone> </developer> </developers> <scm> <connection>scm:git:git://github.com/clightning4j/lite-bitcoin-rpc.git</connection> <developerConnection>scm:git:ssh://github.com:clightning4j/lite-bitcoin-rpc.git</developerConnection> <url>https://github.com/clightning4j/lite-bitcoin-rpc.git</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-bom</artifactId> <version>4.9.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.2.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.6</version> <scope>runtime</scope> </dependency> </dependencies> </project>