Want more features on Pastebin? Sign Up, it's FREE!
Guest

Untitled

By: a guest on Aug 4th, 2011  |  syntax: None  |  size: 3.02 KB  |  views: 119  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.         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.         <parent>
  5.                 <artifactId>audiolicious</artifactId>
  6.                 <groupId>me.m1key.audiolicious</groupId>
  7.                 <version>0.1.0-SNAPSHOT</version>
  8.         </parent>
  9.         <groupId>me.m1key.audiolicious</groupId>
  10.         <artifactId>audiolicious-library-parsers</artifactId>
  11.         <name>Audiolicious Library Parsers</name>
  12.         <description>Parsers for music libraries.</description>
  13.         <dependencies>
  14.                 <dependency>
  15.                         <groupId>me.m1key.audiolicious</groupId>
  16.                         <artifactId>audiolicious-commons</artifactId>
  17.                 </dependency>
  18.                 <dependency>
  19.                         <groupId>me.m1key.audiolicious</groupId>
  20.                         <artifactId>audiolicious-test-data</artifactId>
  21.                         <scope>test</scope>
  22.                 </dependency>
  23.                 <dependency>
  24.                         <groupId>org.slf4j</groupId>
  25.                         <artifactId>slf4j-api</artifactId>
  26.                         <scope>runtime</scope>
  27.                 </dependency>
  28.                 <dependency>
  29.                         <groupId>org.slf4j</groupId>
  30.                         <artifactId>slf4j-log4j12</artifactId>
  31.                         <scope>test</scope>
  32.                 </dependency>
  33.                 <dependency>
  34.                         <groupId>junit</groupId>
  35.                         <artifactId>junit</artifactId>
  36.                         <scope>test</scope>
  37.                 </dependency>
  38.                 <dependency>
  39.                         <groupId>javax.inject</groupId>
  40.                         <artifactId>javax.inject</artifactId>
  41.                         <scope>provided</scope>
  42.                 </dependency>
  43.                 <dependency>
  44.                         <groupId>javax.enterprise</groupId>
  45.                         <artifactId>cdi-api</artifactId>
  46.                         <scope>provided</scope>
  47.                 </dependency>
  48.                 <dependency>
  49.                         <groupId>org.jboss.spec</groupId>
  50.                         <artifactId>jboss-javaee-web-6.0</artifactId>
  51.                         <version>2.0.0.Final</version>
  52.                         <type>pom</type>
  53.                         <scope>provided</scope>
  54.                 </dependency>
  55.                 <dependency>
  56.                         <groupId>org.jboss.as</groupId>
  57.                         <artifactId>jboss-as-arquillian-container-managed</artifactId>
  58.                         <version>7.0.0.CR1</version>
  59.                         <scope>test</scope>
  60.                 </dependency>
  61.                 <dependency>
  62.                         <groupId>org.jboss.arquillian.junit</groupId>
  63.                         <artifactId>arquillian-junit-container</artifactId>
  64.                         <scope>test</scope>
  65.                 </dependency>
  66.                 <dependency>
  67.                         <groupId>javax.el</groupId>
  68.                         <artifactId>el-api</artifactId>
  69.                         <scope>test</scope>
  70.                 </dependency>
  71.                 <dependency>
  72.                         <groupId>org.jboss.weld</groupId>
  73.                         <artifactId>weld-spi</artifactId>
  74.                         <scope>test</scope>
  75.                 </dependency>
  76.                 <dependency>
  77.                         <groupId>org.jboss.weld</groupId>
  78.                         <artifactId>weld-core</artifactId>
  79.                         <scope>test</scope>
  80.                 </dependency>
  81.                 <dependency>
  82.                         <groupId>joda-time</groupId>
  83.                         <artifactId>joda-time</artifactId>
  84.                         <scope>runtime</scope>
  85.                 </dependency>
  86.                 <dependency>
  87.                         <groupId>com.ximpleware</groupId>
  88.                         <artifactId>vtd-xml</artifactId>
  89.                         <scope>runtime</scope>
  90.                 </dependency>
  91.                 <dependency>
  92.                         <groupId>commons-lang</groupId>
  93.                         <artifactId>commons-lang</artifactId>
  94.                         <scope>runtime</scope>
  95.                 </dependency>
  96.                 <dependency>
  97.                         <groupId>org.jboss.shrinkwrap</groupId>
  98.                         <artifactId>shrinkwrap-api</artifactId>
  99.                         <version>1.0.0-beta-3</version>
  100.                 </dependency>
  101.         </dependencies>
  102. </project>
clone this paste RAW Paste Data