Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.65 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>de.hsos.kbse.agilboard</groupId>
  6. <artifactId>webui</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9.  
  10. <name>WebUI</name>
  11.  
  12. <properties>
  13. <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. </properties>
  18.  
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.apache.axis2</groupId>
  22. <artifactId>axis2-jaxws</artifactId>
  23. <version>1.7.8</version>
  24. <scope>runtime</scope>
  25. <exclusions>
  26. <!-- Causes java.lang.NoSuchMethodError: javax.ws.rs.core.Response$Status$Family.familyOf(I)Ljavax/ws/rs/core/Response$Status$Family; -->
  27. <exclusion>
  28. <groupId>javax.ws.rs</groupId>
  29. <artifactId>jsr311-api</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33.  
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <version>1.18.0</version>
  38. <type>jar</type>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>4.12</version>
  44. <type>jar</type>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax</groupId>
  48. <artifactId>javaee-web-api</artifactId>
  49. <version>8.0</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.primefaces</groupId>
  54. <artifactId>primefaces</artifactId>
  55. <version>6.2</version>
  56. </dependency>
  57.  
  58. <dependency>
  59. <groupId>org.glassfish.jersey.core</groupId>
  60. <artifactId>jersey-common</artifactId>
  61. <version>2.27</version>
  62. </dependency>
  63.  
  64. <dependency>
  65. <groupId>org.glassfish.jersey.core</groupId>
  66. <artifactId>jersey-client</artifactId>
  67. <version>2.27</version>
  68. </dependency>
  69.  
  70. <dependency>
  71. <groupId>org.glassfish.jersey.media</groupId>
  72. <artifactId>jersey-media-json-jackson</artifactId>
  73. <version>2.27</version>
  74. </dependency>
  75. </dependencies>
  76.  
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-compiler-plugin</artifactId>
  82. <version>3.1</version>
  83. <configuration>
  84. <source>1.8</source>
  85. <target>1.8</target>
  86. <compilerArguments>
  87. <endorseddirs>${endorsed.dir}</endorseddirs>
  88. </compilerArguments>
  89. </configuration>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-war-plugin</artifactId>
  94. <version>2.3</version>
  95. <configuration>
  96. <failOnMissingWebXml>false</failOnMissingWebXml>
  97. </configuration>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-dependency-plugin</artifactId>
  102. <version>2.6</version>
  103. <executions>
  104. <execution>
  105. <phase>validate</phase>
  106. <goals>
  107. <goal>copy</goal>
  108. </goals>
  109. <configuration>
  110. <outputDirectory>${endorsed.dir}</outputDirectory>
  111. <silent>true</silent>
  112. <artifactItems>
  113. <artifactItem>
  114. <groupId>javax</groupId>
  115. <artifactId>javaee-endorsed-api</artifactId>
  116. <version>7.0</version>
  117. <type>jar</type>
  118. </artifactItem>
  119. </artifactItems>
  120. </configuration>
  121. </execution>
  122. </executions>
  123. </plugin>
  124.  
  125. </plugins>
  126. </build>
  127.  
  128. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement