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