How to add a dependency to Maven
Add the following cn.edu.hfut.dmic.webcollector : WebCollector maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>cn.edu.hfut.dmic.webcollector</groupId>
<artifactId>WebCollector</artifactId>
<version>2.71</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following cn.edu.hfut.dmic.webcollector : WebCollector gradle dependency to your build.gradle
file:
implementation 'cn.edu.hfut.dmic.webcollector:WebCollector:2.71'
Gradle Kotlin DSL: Add the following cn.edu.hfut.dmic.webcollector : WebCollector gradle kotlin dependency to your build.gradle.kts
file:
implementation("cn.edu.hfut.dmic.webcollector:WebCollector:2.71")
How to add a dependency to SBT Scala
SBT Scala: Add the following cn.edu.hfut.dmic.webcollector : WebCollector sbt scala dependency to your build.sbt
file:
libraryDependencies += "cn.edu.hfut.dmic.webcollector" % "WebCollector" % "2.71"