Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.svendiedrichsen:jollyday:v_0_5_10'
}
dependencies {
implementation("com.github.svendiedrichsen:jollyday:v_0_5_10")
}
<dependency>
<groupId>com.github.svendiedrichsen</groupId>
<artifactId>jollyday</artifactId>
<version>v_0_5_10</version>
</dependency>
libraryDependencies += "com.github.svendiedrichsen" % "jollyday" % "v_0_5_10"
:dependencies [[com.github.svendiedrichsen/jollyday "v_0_5_10"]]
File encoding: Please use UTF-8 as your default file encoding. Code formatting: Please use the provided code-formatter.xml as your project code formatter.
To use latest release based on Joda-Time add this to your pom.xml
:
<dependency>
<groupId>de.jollyday</groupId>
<artifactId>jollyday</artifactId>
<version>0.4.9</version>
</dependency>
To use latest release based on Java Time API and Threeten-Extra library add this to your pom.xml
:
<dependency>
<groupId>de.jollyday</groupId>
<artifactId>jollyday</artifactId>
<version>0.5.8</version>
</dependency>
Planning to replace usage of JAXB with JiBX/XStream