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.milg0:onvif-java-lib:'
}
dependencies {
implementation("com.github.milg0:onvif-java-lib:")
}
<dependency>
<groupId>com.github.milg0</groupId>
<artifactId>onvif-java-lib</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.milg0" % "onvif-java-lib" % ""
:dependencies [[com.github.milg0/onvif-java-lib ""]]
ONVIF (Open Network Video Interface Forum) is a community to standardize communication between IP-based security products (like cameras).
I developed a Java library for the ONVIF spezification. It helps you with the basics (you don't need to learn SOAP e.g.) but you may need to learn a few basics about the ONVIF spezification. As far as I know, this is the first public Java project for the ONVIF spezification.
The project is still in development, so if you need features or know better solutions than mine, let me know.
This project is not officially supported by ONVIF! It has been created in a academic project from Hochschule Trier in Germany.