pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.shghjg</groupId>
  7. <artifactId>pollution-warning</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.7.18</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <maven.compiler.source>8</maven.compiler.source>
  18. <maven.compiler.target>8</maven.compiler.target>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <version>2.7.18</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.oracle.ojdbc</groupId>
  29. <artifactId>ojdbc8</artifactId>
  30. <version>19.3.0.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.oracle.database.nls</groupId>
  34. <artifactId>orai18n</artifactId>
  35. <version>23.6.0.24.10</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-boot-starter</artifactId>
  40. <version>3.5.9</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-generator</artifactId>
  45. <version>3.5.9</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-data-redis</artifactId>
  50. <version>2.7.18</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.redisson</groupId>
  54. <artifactId>redisson-spring-boot-starter</artifactId>
  55. <version>3.41.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.freemarker</groupId>
  59. <artifactId>freemarker</artifactId>
  60. <version>2.3.34</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. <version>1.18.36</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>jakarta.validation</groupId>
  69. <artifactId>jakarta.validation-api</artifactId>
  70. <version>3.0.2</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.guava</groupId>
  74. <artifactId>guava</artifactId>
  75. <version>29.0-jre</version>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. <version>2.7.18</version>
  84. <configuration>
  85. <mainClass>com.shghjg.Application</mainClass>
  86. <layout>JAR</layout>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>