Advertisement
Guest User

Untitled

a guest
Sep 18th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.43 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.     <build>
  8.         <plugins>
  9.             <plugin>
  10.                 <!-- Build an executable JAR -->
  11.                 <groupId>org.apache.maven.plugins</groupId>
  12.                 <artifactId>maven-jar-plugin</artifactId>
  13.                 <version>3.0.2</version>
  14.                 <configuration>
  15.                     <archive>
  16.                         <manifest>
  17.                             <addClasspath>true</addClasspath>
  18.                             <classpathPrefix>lib/</classpathPrefix>
  19.                             <mainClass>Lab1_1</mainClass>
  20.                         </manifest>
  21.                     </archive>
  22.                 </configuration>
  23.             </plugin>
  24.         </plugins>
  25.     </build>
  26.  
  27.     <groupId>lab1</groupId>
  28.     <artifactId>lab1</artifactId>
  29.     <version>1.0-SNAPSHOT</version>
  30.  
  31.     <dependencies>
  32.         <dependency>
  33.             <groupId>org.jogamp.gluegen</groupId>
  34.             <artifactId>gluegen-rt-main</artifactId>
  35.             <version>2.0.2</version>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>org.jogamp.jogl</groupId>
  39.             <artifactId>jogl-all-main</artifactId>
  40.             <version>2.0.2</version>
  41.         </dependency>
  42.  
  43.         <dependency>
  44.             <groupId>org.jogamp.jocl</groupId>
  45.             <artifactId>jocl</artifactId>
  46.             <version>2.0.2</version>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>org.jogamp.jocl</groupId>
  50.             <artifactId>jocl-main</artifactId>
  51.             <version>2.0.2</version>
  52.         </dependency>
  53.  
  54.         <!-- audio -->
  55.         <dependency>
  56.             <groupId>org.jogamp.joal</groupId>
  57.             <artifactId>joal</artifactId>
  58.             <version>2.0.2</version>
  59.         </dependency>
  60.  
  61.         <dependency>
  62.             <groupId>org.jogamp.gluegen</groupId>
  63.             <artifactId>gluegen-rt-main</artifactId>
  64.             <version>2.3.1</version>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.jogamp.jogl</groupId>
  68.             <artifactId>jogl-all-main</artifactId>
  69.             <version>2.3.1</version>
  70.         </dependency>
  71.  
  72.     </dependencies>
  73.  
  74. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement