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