How to add a dependency to Maven
Add the following com.mchange : solcj-compat maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.mchange</groupId>
<artifactId>solcj-compat</artifactId>
<version>0.8.4rev2</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.mchange : solcj-compat gradle dependency to your build.gradle
file:
implementation 'com.mchange:solcj-compat:0.8.4rev2'
Gradle Kotlin DSL: Add the following com.mchange : solcj-compat gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.mchange:solcj-compat:0.8.4rev2")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.mchange : solcj-compat sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.mchange" % "solcj-compat" % "0.8.4rev2"