pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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>2.7.12</version>
  9. <relativePath/>
  10. </parent>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>mbg</module>
  14. <module>common</module>
  15. <module>jobs</module>
  16. <module>web</module>
  17. <module>service</module>
  18. <module>admin</module>
  19. <module>dao</module>
  20. </modules>
  21. <groupId>com.cl.travel</groupId>
  22. <artifactId>travel</artifactId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. <name>travel</name>
  25. <description>travel</description>
  26. <properties>
  27. <java.version>1.8</java.version>
  28. <oss.version>3.8.0</oss.version>
  29. <mybatis.version>2.2.0</mybatis.version>
  30. <mybatis-genertator.version>1.4.0</mybatis-genertator.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.aliyun.oss</groupId>
  35. <artifactId>aliyun-sdk-oss</artifactId>
  36. <version>${oss.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba.fastjson2</groupId>
  44. <artifactId>fastjson2</artifactId>
  45. <version>2.0.23</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.mysql</groupId>
  49. <artifactId>mysql-connector-j</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.generator</groupId>
  53. <artifactId>mybatis-generator-core</artifactId>
  54. <version>${mybatis-genertator.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-web</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.qiniu</groupId>
  72. <artifactId>qiniu-java-sdk</artifactId>
  73. <version>[7.7.0, 7.10.99]</version>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. <configuration>
  82. <excludes>
  83. <exclude>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. </exclude>
  87. </excludes>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>