Kagee

Untitled

Jul 25th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.82 KB | None | 0 0
  1. <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">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>hild1</groupId>
  4.   <artifactId>splunk</artifactId>
  5.   <version>0.2</version>
  6.   <name>Splunk</name>
  7.   <description>Extracts tables from Outlook *.MSG and creates Excel Worksheet</description>
  8.   <dependencies>
  9.   <dependency>
  10.     <groupId>org.apache.poi</groupId>
  11.     <artifactId>poi</artifactId>
  12.     <version>3.8</version>
  13.     <scope>runtime</scope>
  14.   </dependency>
  15.   <dependency>
  16.     <groupId>net.sf.jtidy</groupId>
  17.     <artifactId>jtidy</artifactId>
  18.     <version>r938</version>
  19.     <scope>runtime</scope>
  20.   </dependency>
  21.   <dependency>
  22.     <groupId>org.apache.poi</groupId>
  23.     <artifactId>poi-scratchpad</artifactId>
  24.     <version>3.8</version>
  25.     <scope>runtime</scope>
  26.   </dependency>
  27.   <dependency>
  28.     <groupId>org.apache.poi</groupId>
  29.     <artifactId>poi-ooxml</artifactId>
  30.     <version>3.8</version>
  31.     <scope>runtime</scope>
  32.   </dependency>
  33.   </dependencies>
  34.   <build>
  35.     <plugins>
  36.         <plugin>
  37.             <artifactId>maven-assembly-plugin</artifactId>
  38.             <configuration>
  39.                 <archive>
  40.                     <manifest>
  41.                         <mainClass>hild1.Splunk</mainClass>
  42.                     </manifest>
  43.                 </archive>
  44.                 <descriptorRefs>
  45.                     <descriptorRef>jar-with-dependencies</descriptorRef>
  46.                 </descriptorRefs>
  47.                 <fileMode>0755</fileMode>
  48.                 <appendAssemblyId>false</appendAssemblyId>
  49.                 <finalName>${project.artifactId}-${project.version}-dep</finalName>
  50.             </configuration>
  51.         </plugin>
  52.     </plugins>
  53. </build>
  54. </project>
Advertisement
Add Comment
Please, Sign In to add comment