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