You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

169 lines
4.6 KiB

  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.ims.rallyModels</groupId>
  12. <artifactId>com.ims.rallyModels</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>RallyModels</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa -->
  21. <dependency>
  22. <groupId>org.springframework.data</groupId>
  23. <artifactId>spring-data-jpa</artifactId>
  24. <version>3.0.0</version>
  25. </dependency>
  26. <!--https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client-->
  27. <dependency>
  28. <groupId>org.mariadb.jdbc</groupId>
  29. <artifactId>mariadb-java-client</artifactId>
  30. <version>3.1.0</version>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  33. <dependency>
  34. <groupId>org.hibernate</groupId>
  35. <artifactId>hibernate-core</artifactId>
  36. <version>6.0.0.Final</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.thymeleaf.extras</groupId>
  48. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  49. <!-- Temporary explicit version to fix Thymeleaf bug -->
  50. <version>3.1.1.RELEASE</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.security</groupId>
  54. <artifactId>spring-security-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <!---->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-jpa</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-devtools</artifactId>
  70. <scope>runtime</scope>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.mysql</groupId>
  75. <artifactId>mysql-connector-j</artifactId>
  76. <scope>runtime</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.security</groupId>
  80. <artifactId>spring-security-config</artifactId>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/com.github.librepdf/openpdf -->
  83. <dependency>
  84. <groupId>com.github.librepdf</groupId>
  85. <artifactId>openpdf</artifactId>
  86. <version>1.3.26</version>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  89. <dependency>
  90. <groupId>org.apache.poi</groupId>
  91. <artifactId>poi-ooxml</artifactId>
  92. <version>4.1.0</version>
  93. </dependency>
  94. <!--<dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-security</artifactId>
  97. </dependency>
  98. https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity5
  99. <dependency>
  100. <groupId>org.springframework.security</groupId>
  101. <artifactId>spring-security-test</artifactId>
  102. <scope>test</scope>
  103. </dependency>-->
  104. <!--
  105. <dependency>
  106. <groupId>org.springframework.security</groupId>
  107. <artifactId>spring-security-config</artifactId>
  108. <version>6.0.1</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  113. </dependency>-->
  114. <!---->
  115. <!--<dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-starter-validation</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-web</artifactId>
  122. </dependency>-->
  123. <!--
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-test</artifactId>
  127. <scope>test</scope>
  128. </dependency>-->
  129. </dependencies>
  130. <build>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-maven-plugin</artifactId>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>