onvif
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.03</groupId> <artifactId>onvif</artifactId> <version>1.0.9</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.03</groupId> <artifactId>onvif</artifactId> <version>1.0.9</version> <name>ONVIF Camera</name> <description>A Java library to discover, control and manage ONVIF-supported PTZ Cameras</description> <url>https://github.com/03/ONVIF-Java</url> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>ozcat</id> <name>Luke Feng</name> <email>windboxx@gmail.com</email> </developer> </developers> <scm> <connection>scm:https://github.com/03/ONVIF-Java.git</connection> <developerConnection>scm:git://github.com/03/ONVIF-Java.git</developerConnection> <url>https://github.com/03/ONVIF-Java</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>19.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.kxml</groupId> <artifactId>kxml2</artifactId> <version>2.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.9.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.burgstaller</groupId> <artifactId>okhttp-digest</artifactId> <version>2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> </dependencies> </project>