Download webcam-capture-driver-ipcam-0.3.11.jar file

Introduction

You can download webcam-capture-driver-ipcam-0.3.11.jar in this page.

License

Open Source

Type List

webcam-capture-driver-ipcam-0.3.11.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.sarxos/webcam-capture-driver-ipcam/pom.properties
META-INF/maven/com.github.sarxos/webcam-capture-driver-ipcam/pom.xml
com.github.sarxos.webcam.ds.ipcam.IpCamAuth.class
com.github.sarxos.webcam.ds.ipcam.IpCamDevice.class
com.github.sarxos.webcam.ds.ipcam.IpCamDeviceRegistry.class
com.github.sarxos.webcam.ds.ipcam.IpCamDriver.class
com.github.sarxos.webcam.ds.ipcam.IpCamMode.class
com.github.sarxos.webcam.ds.ipcam.IpCamStorage.class
com.github.sarxos.webcam.ds.ipcam.device.marmitek.IPRobocam641.class
com.github.sarxos.webcam.ds.ipcam.device.xvision.X104S.class
com.github.sarxos.webcam.ds.ipcam.device.zavio.B7210.class
com.github.sarxos.webcam.ds.ipcam.device.zavio.F3201.class
com.github.sarxos.webcam.ds.ipcam.impl.IpCamDescriptor.class
com.github.sarxos.webcam.ds.ipcam.impl.IpCamHttpClient.class
com.github.sarxos.webcam.ds.ipcam.impl.IpCamMJPEGStream.class

Pom

webcam-capture-driver-ipcam-0.3.11.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	
	<modelVersion>4.0.0</modelVersion>
	
	<parent>
		<groupId>com.github.sarxos</groupId>
		<artifactId>webcam-capture-drivers</artifactId>
		<version>0.3.11</version>
	</parent>
	
	<artifactId>webcam-capture-driver-ipcam</artifactId>
	<packaging>bundle</packaging>
	
	<name>Webcam Capture - IP Camera Driver</name>
	<description>Webcam Capture driver to be used for IP cameras</description>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- uncomment to debug wire log from httpclient -->
		<!-- 
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<version>1.7.2</version>
		</dependency>
		 -->
		<dependency>
			<groupId>com.github.sarxos</groupId>
			<artifactId>webcam-capture</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.2.3</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpmime</artifactId>
			<version>4.2.3</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-assembly-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>2.3.7</version>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
						<Bundle-Name>${project.name}</Bundle-Name>
						<Bundle-Version>${project.version}</Bundle-Version>
						<Bundle-DocURL>${project.url}</Bundle-DocURL>
						<Import-Package>
							*,
						</Import-Package>
						<Export-Package>
							com.github.sarxos.webcam.ds.ipcam*,
						</Export-Package>
						<Private-Package>
							com.github.sarxos.webcam.ds.ipcam.impl,
						</Private-Package>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>

POM Entry

<dependency>
   <groupId>com.github.sarxos</groupId>
   <artifactId>webcam-capture-driver-ipcam</artifactId>
   <version>0.3.11</version>
</dependency>

Download

If you think the following webcam-capture-driver-ipcam-0.3.11.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download webcam-capture-driver-ipcam-0.3.11.jar file




PreviousNext

Related