For the complete documentation index, see llms.txt. This page is also available as Markdown.

Install IC4J Libraries

The best way to include IC4J libraries in the Java application project is to use Gradle or Maven Imports from Maven Central.

implementation 'org.ic4j:ic4j-agent:0.8.0'
implementation 'org.ic4j:ic4j-candid:0.8.0'
<dependency>
  <groupId>org.ic4j</groupId>
  <artifactId>ic4j-agent</artifactId>
  <version>0.8.0</version>
</dependency>
<dependency>
  <groupId>org.ic4j</groupId>
  <artifactId>ic4j-candid</artifactId>
  <version>0.8.0</version>
</dependency>

Last updated