You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
2.6 KiB

3 years ago
  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.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.wyz</groupId>
  12. <artifactId>DeliveryTakingSystem</artifactId>
  13. <version>0.0.2-SNAPSHOT</version>
  14. <name>simpleDEMO</name>
  15. <description>快递代取业务</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <docker.image.prefix>springboot_wyz</docker.image.prefix>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mybatis</groupId>
  32. <artifactId>mybatis</artifactId>
  33. <version>3.5.6</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>org.junit.vintage</groupId>
  50. <artifactId>junit-vintage-engine</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-maven-plugin</artifactId>
  60. </plugin>
  61. <!-- &lt;!&ndash; Docker maven plugin &ndash;&gt;-->
  62. <!-- <plugin>-->
  63. <!-- <groupId>com.spotify</groupId>-->
  64. <!-- <artifactId>dockerfile-maven-plugin</artifactId>-->
  65. <!-- <version>1.4.6</version>-->
  66. <!-- <executions>-->
  67. <!-- <execution>-->
  68. <!-- <id>default</id>-->
  69. <!-- <goals>-->
  70. <!-- <goal>build</goal>-->
  71. <!-- <goal>push</goal>-->
  72. <!-- </goals>-->
  73. <!-- </execution>-->
  74. <!-- </executions>-->
  75. <!-- <configuration>-->
  76. <!-- <repository>betaberry/common</repository>-->
  77. <!-- <tag>0.0.2</tag>-->
  78. <!-- <buildArgs>-->
  79. <!-- <JAR_FILE>app.jar</JAR_FILE>-->
  80. <!-- </buildArgs>-->
  81. <!-- </configuration>-->
  82. <!-- </plugin>-->
  83. </plugins>
  84. </build>
  85. </project>