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