vlcj
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.co.caprica</groupId> <artifactId>vlcj</artifactId> <version>4.8.2</version> </dependency>
<!-- vlcj pom. Add the following content to your own project pom.xml file: <dependencies> <dependency> <groupId>uk.co.caprica</groupId> <artifactId>vlcj</artifactId> <version>4.8.0</version> </dependency> </dependencies> --> <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> <groupId>uk.co.caprica</groupId> <artifactId>vlcj</artifactId> <version>4.8.2</version> <name>vlcj</name> <description>Java Framework for the vlc Media Player.</description> <url>http://capricasoftware.co.uk/projects/vlcj</url> <inceptionYear>2009</inceptionYear> <packaging>jar</packaging> <licenses> <license> <name>GPL v3</name> <url>http://www.gnu.org/licenses/gpl-3.0.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Caprica Software Limited</name> <url>http://www.capricasoftware.co.uk</url> </organization> <developers> <developer> <id>mark</id> <name>Mark Lee</name> <email>mark.lee@capricasoftware.co.uk</email> <url>https://github.com/caprica/vlcj</url> <organization>Caprica Software Limited</organization> <organizationUrl>http://www.capricasoftware.co.uk</organizationUrl> <roles> <role>architect</role> <role>developer</role> <role>owner</role> </roles> <timezone>0</timezone> </developer> </developers> <issueManagement> <system>Github</system> <url>https://github.com/caprica/vlcj/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:caprica/vlcj.git</connection> <developerConnection>scm:git:git@github.com:caprica/vlcj.git</developerConnection> <url>git@github.com:caprica/vlcj.git</url> <tag>vlcj-4.8.2</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <doclint>none</doclint> <java.version>11</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <vlcjNatives.version>4.8.1</vlcjNatives.version> </properties> <dependencies> <dependency> <groupId>uk.co.caprica</groupId> <artifactId>vlcj-natives</artifactId> <version>${vlcjNatives.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <compilerArgument>-Xlint:serial</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> </manifest> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> <configuration> <useDefaultManifestFile>false</useDefaultManifestFile> <archive> <addMavenDescriptor>false</addMavenDescriptor> <manifestEntries> <Class-Path>${project.artifactId}-${project.version}.jar</Class-Path> </manifestEntries> </archive> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <author>true</author> <charset>UTF-8</charset> <doctitle>${project.name} ${project.version} API Documentation</doctitle> <docfilessubdirs>true</docfilessubdirs> <encoding>UTF-8</encoding> <bottom>(C)2022 Caprica Software Limited</bottom> <show>public</show> <quiet>true</quiet> <failOnError>true</failOnError> <source>${java.version}</source> <sourcepath>src/main/java</sourcepath> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.4.2</version> <configuration> <attach>false</attach> </configuration> <executions> <execution> <id>user_distribution</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeScope>runtime</includeScope> <outputDirectory>${project.build.directory}/dependencies</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.vafer</groupId> <artifactId>jdeb</artifactId> <version>1.10</version> <executions> <execution> <phase>package</phase> <goals> <goal>jdeb</goal> </goals> <configuration> <verbose>true</verbose> <dataSet> <data> <src>${project.build.directory}/${project.build.finalName}.jar</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/share/vlcj/lib</prefix> </mapper> </data> <data> <src>${project.build.directory}/dependencies</src> <type>directory</type> <mapper> <type>perm</type> <prefix>/usr/share/vlcj/lib</prefix> </mapper> </data> <data> <src>README.md</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/share/doc/vlcj</prefix> </mapper> </data> <data> <src>doc/copyright</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/share/doc/vlcj</prefix> </mapper> </data> </dataSet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <excludes> <exclude>.gitignore</exclude> </excludes> </resource> </resources> </build> </project>