stellar-sdk
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>network.lightsail</groupId> <artifactId>stellar-sdk</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>network.lightsail</groupId> <artifactId>stellar-sdk</artifactId> <version>1.0.0</version> <name>stellar-sdk</name> <description>The Java Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC server.</description> <url>https://github.com/lightsail-network/java-stellar-sdk</url> <organization> <name>Lightsail Network</name> <url>https://github.com/lightsail-network</url> </organization> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://github.com/lightsail-network/java-stellar-sdk/blob/master/LICENSE</url> <distribution>https://github.com/lightsail-network/java-stellar-sdk/blob/master/LICENSE</distribution> </license> </licenses> <developers> <developer> <id>overcat</id> <name>Jun Luo</name> <url>https://github.com/overcat</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/lightsail-network/java-stellar-sdk.git</connection> <developerConnection>scm:git:ssh://git@github.com/lightsail-network/java-stellar-sdk.git</developerConnection> <url>https://github.com/lightsail-network/java-stellar-sdk</url> </scm> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.12.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-sse</artifactId> <version>4.12.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.moandjiezana.toml</groupId> <artifactId>toml4j</artifactId> <version>0.7.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.11.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.79</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.17.1</version> <scope>runtime</scope> </dependency> </dependencies> </project>