How to add a dependency to Maven
Add the following com.little-fluffy-clouds : testng-system-out-printer maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.little-fluffy-clouds</groupId>
<artifactId>testng-system-out-printer</artifactId>
<version>0.1</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.little-fluffy-clouds : testng-system-out-printer gradle dependency to your build.gradle
file:
implementation 'com.little-fluffy-clouds:testng-system-out-printer:0.1'
Gradle Kotlin DSL: Add the following com.little-fluffy-clouds : testng-system-out-printer gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.little-fluffy-clouds:testng-system-out-printer:0.1")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.little-fluffy-clouds : testng-system-out-printer sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.little-fluffy-clouds" % "testng-system-out-printer" % "0.1"