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