Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 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. <parent>
  3. <artifactId>SIMH_PARENT</artifactId>
  4. <groupId>SIMH</groupId>
  5. <version>0.2.0-SNAPSHOT</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>SIMH_WEB_SERVICES</artifactId>
  9. <packaging>war</packaging>
  10. <name>SIMH_WEB_SERVICES</name>
  11. <properties>
  12. <project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
  13. </properties>
  14. <build>
  15. <finalName>SIMH_WEB_SERVICES</finalName>
  16. <sourceDirectory>src</sourceDirectory>
  17. <plugins>
  18. <plugin>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <!--<version>3.1</version> VERSION IS IN PARENT -->
  21. <configuration>
  22. <source>1.8</source>
  23. <target>1.8</target>
  24. </configuration>
  25. </plugin>
  26. <plugin>
  27. <artifactId>maven-war-plugin</artifactId>
  28. <version>2.4</version>
  29. <configuration>
  30. <warName>SIMH_WEB_SERVICES</warName>
  31. <warSourceDirectory>WebContent</warSourceDirectory>
  32. <failOnMissingWebXml>false</failOnMissingWebXml>
  33. <outputDirectory>${targetFolder}</outputDirectory>
  34. <archive>
  35. <manifestEntries>
  36. <Weblogic-Application-Version>${project.version}</Weblogic-Application-Version>
  37. </manifestEntries>
  38. </archive>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>SIMH</groupId>
  46. <artifactId>SIMH_COMMONS</artifactId>
  47. <version>${project.version}</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.glassfish.jersey.containers</groupId>
  52. <artifactId>jersey-container-servlet</artifactId>
  53. <version>2.27</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.glassfish.jersey.containers</groupId>
  57. <artifactId>jersey-container-servlet-core</artifactId>
  58. <version>2.27</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.glassfish.jersey.core</groupId>
  62. <artifactId>jersey-common</artifactId>
  63. <version>2.27</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
  67. <artifactId>jersey-guava</artifactId>
  68. <version>2.22.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.glassfish.jersey.media</groupId>
  72. <artifactId>jersey-media-json-jackson</artifactId>
  73. <version>2.27</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.glassfish.jersey.inject</groupId>
  77. <artifactId>jersey-hk2</artifactId>
  78. <version>2.27</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.code.gson</groupId>
  82. <artifactId>gson</artifactId>
  83. <version>2.7</version>
  84. </dependency>
  85. </dependencies>
  86. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement