合同小程序后台管理系统后端代码仓库
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.

109 lines
4.0 KiB

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  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. <parent>
  6. <artifactId>jeecg-module-system</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.7.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-system-start</artifactId>
  12. <dependencies>
  13. <!-- SYSTEM 系统管理模块 -->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-system-biz</artifactId>
  17. <version>${jeecgboot.version}</version>
  18. </dependency>
  19. <!-- DEMO 示例模块 -->
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-module-demo</artifactId>
  23. <version>${jeecgboot.version}</version>
  24. </dependency>
  25. <!-- 小程序接口模块 -->
  26. <dependency>
  27. <groupId>org.jeecgframework.boot</groupId>
  28. <artifactId>jeecg-module-miniapp</artifactId>
  29. <version>${jeecgboot.version}</version>
  30. </dependency>
  31. <!-- flyway 数据库自动升级 -->
  32. <dependency>
  33. <groupId>org.flywaydb</groupId>
  34. <artifactId>flyway-core</artifactId>
  35. </dependency>
  36. </dependencies>
  37. <!--整体打包-->
  38. <!-- <build>-->
  39. <!-- <plugins>-->
  40. <!-- <plugin>-->
  41. <!-- <groupId>org.springframework.boot</groupId>-->
  42. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  43. <!-- <version>2.7.15</version>-->
  44. <!-- <configuration>-->
  45. <!-- <includeSystemScope>true</includeSystemScope>-->
  46. <!-- </configuration>-->
  47. <!-- </plugin>-->
  48. <!-- </plugins>-->
  49. <!-- </build>-->
  50. <!-- 依赖分离打包 -->
  51. <build>
  52. <plugins>
  53. <!-- Spring Boot Maven Plugin -->
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. <configuration>
  58. <layout>ZIP</layout>
  59. <includes>
  60. <include>
  61. <groupId>nothing</groupId>
  62. <artifactId>nothing</artifactId>
  63. </include>
  64. </includes>
  65. </configuration>
  66. <executions>
  67. <execution>
  68. <goals>
  69. <goal>repackage</goal>
  70. </goals>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. <!-- 输出所有依赖至lib 文件夹,第一次使用,后续可递增即可 -->
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-dependency-plugin</artifactId>
  78. <version>3.3.0</version>
  79. <executions>
  80. <execution>
  81. <id>copy-dependencies</id>
  82. <phase>package</phase>
  83. <goals>
  84. <goal>copy-dependencies</goal>
  85. </goals>
  86. <configuration>
  87. <!-- 输出目录为 lib 文件夹 -->
  88. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  89. <!-- 只复制运行时依赖 -->
  90. <!-- <scope>runtime</scope>-->
  91. <!-- 不覆盖现有的文件 -->
  92. <overWriteReleases>false</overWriteReleases>
  93. <overWriteSnapshots>false</overWriteSnapshots>
  94. </configuration>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>