pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.gubersail</groupId>
  7. <artifactId>gubersail-u9data</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <boot.version>2.7.18</boot.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.oracle.database.jdbc</groupId>
  18. <artifactId>ojdbc8</artifactId>
  19. <version>23.2.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-core</artifactId>
  24. <version>5.3.39</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter</artifactId>
  29. <version>${boot.version}</version>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>ch.qos.logback</groupId>
  33. <artifactId>logback-classic</artifactId>
  34. </exclusion>
  35. <exclusion>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-core</artifactId>
  38. </exclusion>
  39. <exclusion>
  40. <groupId>org.yaml</groupId>
  41. <artifactId>snakeyaml</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.yaml</groupId>
  47. <artifactId>snakeyaml</artifactId>
  48. <version>2.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>ch.qos.logback</groupId>
  52. <artifactId>logback-classic</artifactId>
  53. <version>1.2.13</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-web</artifactId>
  58. <version>${boot.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. <version>3.5.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>javax.servlet</groupId>
  67. <artifactId>javax.servlet-api</artifactId>
  68. <version>4.0.1</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>mes-data</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <version>2.7.18</version>
  79. <executions>
  80. <execution>
  81. <goals>
  82. <goal>repackage</goal>
  83. </goals>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>