smartcontract
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.neodix42</groupId> <artifactId>smartcontract</artifactId> <version>0.9.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <groupId>io.github.neodix42</groupId> <artifactId>top</artifactId> <version>0.9.8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>smartcontract</artifactId> <name>TON Java Smart contracts</name> <description>Build and manipulate TON smart contracts in easy way.</description> <url>https://github.com/neodiX42/ton4j</url> <licenses> <license> <name>GNU General Public License v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <developers> <developer> <name>neodiX</name> <email>neodiX@ton.org</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/neodiX42/ton4j.git</connection> <developerConnection>scm:git:ssh://github.com/neodiX42/ton4j.git</developerConnection> <url>https://github.com/neodiX42/ton4j/tree/main</url> </scm> <dependencies> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>mnemonic</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>utils</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>fift</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>func</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>tolk</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>address</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.neodix42</groupId> <artifactId>tonlib</artifactId> <version>${project.parent.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <!-- recompiled from source with Java 8 --> <dependency> <groupId>org.purejava</groupId> <artifactId>tweetnacl-java</artifactId> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.github.h6x0r</groupId> <artifactId>tonapi4j</artifactId> <version>1.0.5</version> <scope>test</scope> </dependency> </dependencies> </project>