Advertisement
Guest User

pom.xml

a guest
Dec 11th, 2014
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.24 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>com.buraktas</groupId>
  8.     <artifactId>dependency-injection</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <packaging>war</packaging>
  11.  
  12.     <dependencyManagement>
  13.         <dependencies>
  14.             <dependency>
  15.                 <groupId>org.jboss.arquillian</groupId>
  16.                 <artifactId>arquillian-bom</artifactId>
  17.                 <version>1.1.5.Final</version>
  18.                 <scope>import</scope>
  19.                 <type>pom</type>
  20.             </dependency>
  21.         </dependencies>
  22.     </dependencyManagement>
  23.  
  24.     <build>
  25.         <plugins>
  26.             <plugin>
  27.                 <groupId>org.apache.maven.plugins</groupId>
  28.                 <artifactId>maven-compiler-plugin</artifactId>
  29.                 <configuration>
  30.                     <source>1.8</source>
  31.                     <target>1.8</target>
  32.                 </configuration>
  33.             </plugin>
  34.  
  35.             <plugin>
  36.                 <groupId>org.apache.maven.plugins</groupId>
  37.                 <artifactId>maven-war-plugin</artifactId>
  38.                 <version>2.3</version>
  39.                 <configuration>
  40.                     <failOnMissingWebXml>false</failOnMissingWebXml>
  41.                     <warName>dependency-injection</warName>
  42.                 </configuration>
  43.             </plugin>
  44.  
  45.             <plugin>
  46.                 <artifactId>maven-surefire-plugin</artifactId>
  47.                 <version>2.12</version>
  48.             </plugin>
  49.         </plugins>
  50.     </build>
  51.  
  52.     <dependencies>
  53.  
  54.         <dependency>
  55.             <groupId>org.jboss.arquillian.junit</groupId>
  56.             <artifactId>arquillian-junit-container</artifactId>
  57.             <scope>test</scope>
  58.         </dependency>
  59.  
  60.         <dependency>
  61.             <groupId>org.jboss.arquillian.container</groupId>
  62.             <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
  63.             <version>1.0.0.CR3</version>
  64.             <scope>test</scope>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.jboss.weld</groupId>
  68.             <artifactId>weld-core</artifactId>
  69.             <version>1.1.5.Final</version>
  70.             <scope>test</scope>
  71.         </dependency>
  72.         <dependency>
  73.             <groupId>org.slf4j</groupId>
  74.             <artifactId>slf4j-simple</artifactId>
  75.             <version>1.6.4</version>
  76.             <scope>test</scope>
  77.         </dependency>
  78.  
  79.         <dependency>
  80.             <groupId>javax</groupId>
  81.             <artifactId>javaee-api</artifactId>
  82.             <version>7.0</version>
  83.         </dependency>
  84.  
  85.         <dependency>
  86.             <groupId>junit</groupId>
  87.             <artifactId>junit</artifactId>
  88.             <version>4.11</version>
  89.         </dependency>
  90.  
  91.         <dependency>
  92.             <groupId>org.jboss.resteasy</groupId>
  93.             <artifactId>resteasy-jaxrs</artifactId>
  94.             <version>3.0.6.Final</version>
  95.             <scope>provided</scope>
  96.         </dependency>
  97.  
  98.     </dependencies>
  99. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement