Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 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.  
  4. <groupId>de.test</groupId>
  5. <artifactId>HelloWorld</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8.  
  9. <name>HelloWorld</name>
  10.  
  11. <properties>
  12. <java.version>1.8</java.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15.  
  16. <build>
  17. <finalName>HelloWorld</finalName>
  18.  
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <version>3.7.0</version>
  24. <configuration>
  25. <source>${java.version}</source>
  26. <target>${java.version}</target>
  27. </configuration>
  28. </plugin>
  29.  
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-war-plugin</artifactId>
  33. <version>3.2.0</version>
  34. </plugin>
  35.  
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-surefire-plugin</artifactId>
  39. <version>2.22.1</version>
  40. </plugin>
  41. <plugin>
  42. <artifactId>maven-failsafe-plugin</artifactId>
  43. <version>2.22.0</version>
  44. </plugin>
  45.  
  46. </plugins>
  47. </build>
  48.  
  49. <dependencies>
  50.  
  51. <dependency>
  52. <groupId>javax</groupId>
  53. <artifactId>javaee-web-api</artifactId>
  54. <version>8.0</version>
  55. <scope>provided</scope>
  56. </dependency>
  57.  
  58. <dependency>
  59. <groupId>org.junit.jupiter</groupId>
  60. <artifactId>junit-jupiter-api</artifactId>
  61. <version>5.4.2</version>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.junit.jupiter</groupId>
  66. <artifactId>junit-jupiter-engine</artifactId>
  67. <version>5.4.2</version>
  68. <scope>test</scope>
  69. </dependency>
  70.  
  71. <!--dependency>
  72. <groupId>org.apache.myfaces.trinidad</groupId>
  73. <artifactId>trinidad-api</artifactId>
  74. <version>2.2.1</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.myfaces.trinidad</groupId>
  78. <artifactId>trinidad-impl</artifactId>
  79. <version>2.2.1</version>
  80. </dependency-->
  81.  
  82. </dependencies>
  83. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement