pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>3.5.14</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.example</groupId>
  13. <artifactId>organization-people-platform</artifactId>
  14. <version>1.0.0</version>
  15. <name>organization-people-platform</name>
  16. <properties>
  17. <java.version>21</java.version>
  18. <springdoc.version>2.8.17</springdoc.version>
  19. <testcontainers.version>1.21.4</testcontainers.version>
  20. <java-jwt.version>4.5.0</java-jwt.version>
  21. <commons-csv.version>1.14.1</commons-csv.version>
  22. <bcprov.version>1.81</bcprov.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.testcontainers</groupId>
  28. <artifactId>testcontainers-bom</artifactId>
  29. <version>${testcontainers.version}</version>
  30. <type>pom</type>
  31. <scope>import</scope>
  32. </dependency>
  33. </dependencies>
  34. </dependencyManagement>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-validation</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-security</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-data-jpa</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-actuator</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-data-redis</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-amqp</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.flywaydb</groupId>
  66. <artifactId>flyway-database-postgresql</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.postgresql</groupId>
  70. <artifactId>postgresql</artifactId>
  71. <scope>runtime</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springdoc</groupId>
  75. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  76. <version>${springdoc.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.auth0</groupId>
  80. <artifactId>java-jwt</artifactId>
  81. <version>${java-jwt.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-csv</artifactId>
  86. <version>${commons-csv.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.bouncycastle</groupId>
  90. <artifactId>bcprov-jdk18on</artifactId>
  91. <version>${bcprov.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.security</groupId>
  100. <artifactId>spring-security-test</artifactId>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.testcontainers</groupId>
  105. <artifactId>junit-jupiter</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.testcontainers</groupId>
  110. <artifactId>postgresql</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.testcontainers</groupId>
  115. <artifactId>rabbitmq</artifactId>
  116. <scope>test</scope>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-compiler-plugin</artifactId>
  128. <configuration>
  129. <release>21</release>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-surefire-plugin</artifactId>
  135. <configuration>
  136. <includes>
  137. <include>**/*Test.java</include>
  138. </includes>
  139. </configuration>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-failsafe-plugin</artifactId>
  144. <configuration>
  145. <includes>
  146. <include>**/*IT.java</include>
  147. </includes>
  148. </configuration>
  149. <executions>
  150. <execution>
  151. <goals>
  152. <goal>integration-test</goal>
  153. <goal>verify</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>