Advertisement
Guest User

Untitled

a guest
Dec 28th, 2014
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 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. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-compiler-plugin</artifactId>
  17. <configuration>
  18. <source>1.8</source>
  19. <target>1.8</target>
  20. </configuration>
  21. </plugin>
  22.  
  23. <plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-war-plugin</artifactId>
  26. <version>2.3</version>
  27. <configuration>
  28. <failOnMissingWebXml>false</failOnMissingWebXml>
  29. <warName>dependency-injection</warName>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34.  
  35. <dependencies>
  36.  
  37. <dependency>
  38. <groupId>javax</groupId>
  39. <artifactId>javaee-api</artifactId>
  40. <version>7.0</version>
  41. </dependency>
  42.  
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <version>4.11</version>
  47. </dependency>
  48.  
  49. <dependency>
  50. <groupId>org.jboss.resteasy</groupId>
  51. <artifactId>resteasy-jaxrs</artifactId>
  52. <version>3.0.6.Final</version>
  53. <scope>provided</scope>
  54. </dependency>
  55.  
  56. </dependencies>
  57. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement