Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2013
1,539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>foo.bar</groupId>
  5.     <artifactId>foobar</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.     <dependencies>
  8.         <dependency>
  9.             <groupId>de.uni_mannheim.informatik.dws</groupId>
  10.             <artifactId>dwslib</artifactId>
  11.             <version>1.0-SNAPSHOT</version>
  12.         </dependency>
  13.         <dependency>
  14.             <groupId>ch.qos.logback</groupId>
  15.             <artifactId>logback-classic</artifactId>
  16.             <version>1.0.11</version>
  17.         </dependency>
  18.         <dependency>
  19.             <groupId>com.openlinksw.virtuoso</groupId>
  20.             <artifactId>virtjdbc4</artifactId>
  21.             <version>6.4</version>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>net.sf.opencsv</groupId>
  25.             <artifactId>opencsv</artifactId>
  26.             <version>2.3</version>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>org.apache.commons</groupId>
  30.             <artifactId>commons-lang3</artifactId>
  31.             <version>3.1</version>
  32.         </dependency>
  33.         <dependency>
  34.             <groupId>org.openrdf.sesame</groupId>
  35.             <artifactId>sesame-runtime</artifactId>
  36.             <version>2.7.2</version>
  37.         </dependency>
  38.     </dependencies>
  39.     <build>
  40.     <plugins>
  41.         <plugin>
  42.             <groupId>org.apache.maven.plugins</groupId>
  43.             <artifactId>maven-compiler-plugin</artifactId>
  44.             <version>2.3.2</version>
  45.             <configuration>
  46.                 <source>1.6</source>
  47.                 <target>1.6</target>
  48.             </configuration>
  49.         </plugin>
  50.         <plugin>
  51.             <artifactId>maven-assembly-plugin</artifactId>
  52.             <configuration>
  53.                 <descriptorRefs>
  54.                     <descriptorRef>jar-with-dependencies</descriptorRef>
  55.                 </descriptorRefs>
  56.                 <archive>
  57.                     <manifest>
  58.                         <mainClass>foo.bar.Cli</mainClass>
  59.                     </manifest>
  60.                 </archive>
  61.             </configuration>
  62.         </plugin>
  63.     </plugins>
  64. </build>
  65. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement