Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.75 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <parent>
  7. <artifactId>JoyceHealth</artifactId>
  8. <groupId>JoyceHealth</groupId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11.  
  12. <artifactId>Backend</artifactId>
  13. <packaging>war</packaging>
  14. <version>1.0-SNAPSHOT</version>
  15. <name>Joyce Health Backend Application</name>
  16.  
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <tomcat.version>7.0.68</tomcat.version>
  20. </properties>
  21.  
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-maven-plugin</artifactId>
  27. </plugin>
  28. </plugins>
  29. </build>
  30.  
  31.  
  32. <profiles>
  33. <profile>
  34. <id>test-server-context</id>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-resources-plugin</artifactId>
  39. <version>2.7</version>
  40. <executions>
  41. <execution>
  42. <id>copy-resources</id>
  43. <phase>validate</phase>
  44. <goals>
  45. <goal>copy-resources</goal>
  46. </goals>
  47. <configuration>
  48. <outputDirectory>${basedir}/target/Backend-1.0-SNAPSHOT/META-INF</outputDirectory>
  49. <resources>
  50. <resource>
  51. <directory>${basedir}/conf/test</directory>
  52. <filtering>false</filtering>
  53. </resource>
  54. </resources>
  55. </configuration>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </profile>
  62. </profiles>
  63.  
  64. <dependencies>
  65.  
  66. <dependency>
  67. <groupId>${project.groupId}</groupId>
  68. <artifactId>Frontend</artifactId>
  69. <version>1.0-SNAPSHOT</version>
  70. </dependency>
  71.  
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-web</artifactId>
  75. </dependency>
  76.  
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-jpa</artifactId>
  80. </dependency>
  81.  
  82. <dependency>
  83. <groupId>org.springframework.security.oauth</groupId>
  84. <artifactId>spring-security-oauth2</artifactId>
  85. <version>2.0.9.RELEASE</version>
  86. </dependency>
  87.  
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. <version>5.1.34</version>
  92. </dependency>
  93.  
  94. <dependency>
  95. <groupId>commons-codec</groupId>
  96. <artifactId>commons-codec</artifactId>
  97. <version>1.10</version>
  98. </dependency>
  99.  
  100. <dependency>
  101. <groupId>javax.mail</groupId>
  102. <artifactId>mail</artifactId>
  103. <version>1.4.7</version>
  104. </dependency>
  105.  
  106. <dependency>
  107. <groupId>org.flywaydb</groupId>
  108. <artifactId>flyway-core</artifactId>
  109. <version>4.0.1</version>
  110. </dependency>
  111.  
  112. <dependency>
  113. <groupId>org.slf4j</groupId>
  114. <artifactId>slf4j-api</artifactId>
  115. <version>1.7.21</version>
  116. </dependency>
  117.  
  118. <dependency>
  119. <groupId>org.apache.maven.shared</groupId>
  120. <artifactId>maven-filtering</artifactId>
  121. <version>1.3</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.httpcomponents</groupId>
  125. <artifactId>httpclient</artifactId>
  126. <version>4.5.2</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.json</groupId>
  131. <artifactId>json</artifactId>
  132. <version>20160810</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>junit</groupId>
  136. <artifactId>junit</artifactId>
  137. <version>4.12</version>
  138. <scope>test</scope>
  139. </dependency>
  140. </dependencies>
  141. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement