How to add a dependency to Maven
Add the following me.friwi : jcef-natives-windows-i386 maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>me.friwi</groupId>
<artifactId>jcef-natives-windows-i386</artifactId>
<version>jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following me.friwi : jcef-natives-windows-i386 gradle dependency to your build.gradle
file:
implementation 'me.friwi:jcef-natives-windows-i386:jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78'
Gradle Kotlin DSL: Add the following me.friwi : jcef-natives-windows-i386 gradle kotlin dependency to your build.gradle.kts
file:
implementation("me.friwi:jcef-natives-windows-i386:jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78")
How to add a dependency to SBT Scala
SBT Scala: Add the following me.friwi : jcef-natives-windows-i386 sbt scala dependency to your build.sbt
file:
libraryDependencies += "me.friwi" % "jcef-natives-windows-i386" % "jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78"