pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>cn.itlym</groupId>
  17. <artifactId>shoulder-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.itlym</groupId>
  21. <artifactId>shoulder-data-db</artifactId>
  22. </dependency>
  23. <!-- 查看 PropertiesMigrationListener 输出日式,可替换 WARN,已经废弃则 Error-->
  24. <!-- <dependency>-->
  25. <!-- <groupId>org.springframework.boot</groupId>-->
  26. <!-- <artifactId>spring-boot-properties-migrator</artifactId>-->
  27. <!-- <scope>runtime</scope>-->
  28. <!-- </dependency>-->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-jpa</artifactId>
  32. </dependency>
  33. <dependency>
  34. <!-- demo 工程使用 h2 连接DB -->
  35. <groupId>com.h2database</groupId>
  36. <artifactId>h2</artifactId>
  37. </dependency>
  38. <!--Json Path-->
  39. <dependency>
  40. <groupId>com.jayway.jsonpath</groupId>
  41. <artifactId>json-path</artifactId>
  42. <version>2.7.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.thoughtworks.xstream</groupId>
  46. <artifactId>xstream</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-mail</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <finalName>executable</finalName>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <executions>
  73. <execution>
  74. <goals>
  75. <goal>repackage</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>