indexer-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.vechain</groupId> <artifactId>indexer-core</artifactId> <version>4.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" 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>org.vechain</groupId> <artifactId>indexer-core</artifactId> <version>4.2.0</version> <name>indexer-core</name> <description>This package contains an abstract VeChainThor indexer class. This class can be extended to create a custom indexer.</description> <url>https://github.com/vechainfoundation/indexer-core</url> <licenses> <license> <name>GNU Lesser General Public License v3.0</name> <url>https://github.com/vechainfoundation/indexer-core/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>VeWorldDeveloper</id> <name>VeWorld Developer</name> <email>veworlddeveloper@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/vechainfoundation/indexer-core.git</connection> <developerConnection>scm:git:ssh://github.com/vechainfoundation/indexer-core.git</developerConnection> <url>https://github.com/vechainfoundation/indexer-core</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.1.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.kittinunf.fuel</groupId> <artifactId>fuel</artifactId> <version>2.3.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.kittinunf.fuel</groupId> <artifactId>fuel-coroutines</artifactId> <version>2.3.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>2.18.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.32</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.70</version> <scope>runtime</scope> </dependency> </dependencies> </project>