Advertisement
adwas33

Untitled

Aug 27th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.87 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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.0.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>cmms</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>cmms</name>
  15. <description>cmms</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-mail</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-security</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-validation</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.thymeleaf.extras</groupId>
  47. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  48. </dependency>
  49.  
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-devtools</artifactId>
  53. <scope>runtime</scope>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.h2database</groupId>
  58. <artifactId>h2</artifactId>
  59. <scope>runtime</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-test</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.security</groupId>
  73. <artifactId>spring-security-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.mapstruct</groupId>
  78. <artifactId>mapstruct</artifactId>
  79. <version>${org.mapstruct.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springdoc</groupId>
  83. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  84. <version>2.1.0</version>
  85. </dependency>
  86.  
  87. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  88. <dependency>
  89. <groupId>com.auth0</groupId>
  90. <artifactId>java-jwt</artifactId>
  91. <version>4.2.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.github.cdimascio</groupId>
  95. <artifactId>dotenv-java</artifactId>
  96. <version>2.2.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.minio</groupId>
  100. <artifactId>minio</artifactId>
  101. <version>8.5.2</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>mysql</groupId>
  105. <artifactId>mysql-connector-java</artifactId>
  106. <scope>runtime</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.fasterxml.jackson.datatype</groupId>
  110. <artifactId>jackson-datatype-jsr310</artifactId>
  111. <version>2.14.1</version>
  112. </dependency>
  113.  
  114. </dependencies>
  115.  
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. <configuration>
  122. <excludes>
  123. <exclude>
  124. <groupId>org.projectlombok</groupId>
  125. <artifactId>lombok</artifactId>
  126. </exclude>
  127. </excludes>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-compiler-plugin</artifactId>
  133. <version>3.5.1</version>
  134. <configuration>
  135. <source>17</source>
  136. <target>17</target>
  137. <annotationProcessorPaths>
  138. <path>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. <version>${lombok.version}</version>
  142. </path>
  143. <path>
  144. <groupId>org.mapstruct</groupId>
  145. <artifactId>mapstruct-processor</artifactId>
  146. <version>${org.mapstruct.version}</version>
  147. </path>
  148. </annotationProcessorPaths>
  149. </configuration>
  150. </plugin>
  151. </plugins>
  152. </build>
  153.  
  154. </project>
Tags: pom.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement