webcam-capture-driver-v4l4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.sarxos</groupId>
<artifactId>webcam-capture-driver-v4l4j</artifactId>
<version>0.3.12</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>webcam-capture-drivers</artifactId>
<groupId>com.github.sarxos</groupId>
<version>0.3.12</version>
</parent>
<artifactId>webcam-capture-driver-v4l4j</artifactId>
<packaging>jar</packaging>
<name>Webcam Capture - V4L4J Driver</name>
<description>Webcam Capture driver using V4L2 Java binding (V4L4J project) to grab frames from camera devices</description>
<dependencies>
<dependency>
<groupId>com.github.sarxos</groupId>
<artifactId>v4l4j</artifactId>
<version>0.9.1-r507</version>
</dependency>
<dependency>
<groupId>com.github.sarxos</groupId>
<artifactId>webcam-capture</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<altDeploymentRepository></altDeploymentRepository>
</configuration>
</plugin>
</plugins>
</build>
</project>