pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. <parent>
  7. <groupId>cn.itlym</groupId>
  8. <artifactId>shoulder-parent</artifactId>
  9. <version>0.8-SNAPSHOT</version><!-- shoulder-version -->
  10. </parent>
  11. <groupId>com.lym.test</groupId>
  12. <artifactId>pom-update</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework</groupId>
  17. <artifactId>spring-context-indexer</artifactId>
  18. <optional>true</optional>
  19. </dependency>
  20. <dependency>
  21. <groupId>cn.itlym</groupId>
  22. <artifactId>shoulder-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.itlym</groupId>
  26. <artifactId>shoulder-starter-mysql</artifactId>
  27. </dependency>
  28. <!-- 查看 PropertiesMigrationListener 输出日式,可替换 WARN,已经废弃则 Error-->
  29. <!-- <dependency>-->
  30. <!-- <groupId>org.springframework.boot</groupId>-->
  31. <!-- <artifactId>spring-boot-properties-migrator</artifactId>-->
  32. <!-- <scope>runtime</scope>-->
  33. <!-- </dependency>-->
  34. <!-- JDBC: MySQL8 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-jpa</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>druid-spring-boot-starter</artifactId>
  42. <version>1.2.22</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  47. </dependency>
  48. <!--Json Path-->
  49. <dependency>
  50. <groupId>com.jayway.jsonpath</groupId>
  51. <artifactId>json-path</artifactId>
  52. <version>2.7.0</version>
  53. </dependency>
  54. <!-- <dependency>-->
  55. <!-- <groupId>org.springframework.mobile</groupId>-->
  56. <!-- <artifactId>spring-mobile-device</artifactId>-->
  57. <!-- <version>1.1.5.RELEASE</version>-->
  58. <!-- </dependency>-->
  59. <dependency>
  60. <groupId>com.thoughtworks.xstream</groupId>
  61. <artifactId>xstream</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-mail</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <finalName>executable</finalName>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. <executions>
  88. <execution>
  89. <goals>
  90. <goal>repackage</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>