Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.28 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>OpenCV</groupId>
  8.     <artifactId>OpenCV</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencies>
  12.         <!--
  13.        <dependency>
  14.            <groupId>org.bytedeco</groupId>
  15.            <artifactId>javacv-platform</artifactId>
  16.            <version>1.4.4</version>
  17.        </dependency>
  18.        -->
  19.         <dependency>
  20.             <groupId>org.bytedeco</groupId>
  21.             <artifactId>javacpp</artifactId>
  22.             <version>1.4.1</version>
  23.         </dependency>
  24.         <dependency>
  25.             <groupId>org.bytedeco</groupId>
  26.             <artifactId>javacv</artifactId>
  27.             <version>1.4.1</version>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>org.bytedeco.javacpp-presets</groupId>
  31.             <artifactId>opencv-platform</artifactId>
  32.             <version>3.2.0-1.3</version>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>org.bytedeco.javacpp-presets</groupId>
  36.             <artifactId>ffmpeg-platform</artifactId>
  37.             <version>3.4.2-1.4.1</version>
  38.         </dependency>
  39.     </dependencies>
  40.  
  41.     <properties>
  42.         <maven.compiler.source>1.8</maven.compiler.source>
  43.         <maven.compiler.target>1.8</maven.compiler.target>
  44.     </properties>
  45.  
  46.     <build>
  47.         <plugins>
  48.             <plugin>
  49.                 <!-- Build an executable JAR -->
  50.                 <groupId>org.apache.maven.plugins</groupId>
  51.                 <artifactId>maven-jar-plugin</artifactId>
  52.                 <version>3.1.1</version>
  53.                 <configuration>
  54.                     <archive>
  55.                         <manifest>
  56.                             <addClasspath>true</addClasspath>
  57.                             <classpathPrefix>lib/</classpathPrefix>
  58.                             <mainClass>edu.northeaststate.jkyte4.Main</mainClass>
  59.                         </manifest>
  60.                     </archive>
  61.                 </configuration>
  62.             </plugin>
  63.         </plugins>
  64.     </build>
  65.  
  66. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement