Acquire Lanat
The Lanat package is available on a Repsy repository and on GitHub. You may get it from either of these sources.
Adding the dependency to your project
Here's the repository and dependency information you need to add to your project build file to use Lanat.
- Repository
https://repsy.io/mvn/darvil/java
- Dependency
com.darvil:lanat:1.2.0
Example
Add the repository to the repositories
block:
repositories {
maven("https://repsy.io/mvn/darvil/java")
}
<repositories>
<repository>
<id>darvil</id>
<url>https://repsy.io/mvn/darvil/java</url>
</repository>
</repositories>
Then, add the dependency to the dependencies
block:
dependencies {
implementation("com.darvil:lanat:1.2.0")
}
<dependencies>
<dependency>
<groupId>com.darvil</groupId>
<artifactId>lanat</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>
Manually downloading the JAR
You may also download the JAR file from Github packages.
Last modified: 16 May 2024