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

104 lines
4.1 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 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. <finalName>contract</finalName>
  50. </build>
  51. <!-- 依赖分离打包 -->
  52. <!-- <build>-->
  53. <!-- <plugins>-->
  54. <!-- &lt;!&ndash; Spring Boot Maven Plugin &ndash;&gt;-->
  55. <!-- <plugin>-->
  56. <!-- <groupId>org.springframework.boot</groupId>-->
  57. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  58. <!-- <configuration>-->
  59. <!-- <layout>ZIP</layout>-->
  60. <!-- </configuration>-->
  61. <!-- <executions>-->
  62. <!-- <execution>-->
  63. <!-- <goals>-->
  64. <!-- <goal>repackage</goal>-->
  65. <!-- </goals>-->
  66. <!-- </execution>-->
  67. <!-- </executions>-->
  68. <!-- </plugin>-->
  69. <!-- &lt;!&ndash; 输出所有依赖至lib 文件夹,第一次使用,后续可递增即可 &ndash;&gt;-->
  70. <!-- <plugin>-->
  71. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  72. <!-- <artifactId>maven-dependency-plugin</artifactId>-->
  73. <!-- <version>3.3.0</version>-->
  74. <!-- <executions>-->
  75. <!-- <execution>-->
  76. <!-- <id>copy-dependencies</id>-->
  77. <!-- <phase>package</phase>-->
  78. <!-- <goals>-->
  79. <!-- <goal>copy-dependencies</goal>-->
  80. <!-- </goals>-->
  81. <!-- <configuration>-->
  82. <!-- &lt;!&ndash; 输出目录为 lib 文件夹 &ndash;&gt;-->
  83. <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
  84. <!-- &lt;!&ndash; 只复制运行时依赖 &ndash;&gt;-->
  85. <!--&lt;!&ndash; <scope>runtime</scope>&ndash;&gt;-->
  86. <!-- &lt;!&ndash; 不覆盖现有的文件 &ndash;&gt;-->
  87. <!-- <overWriteReleases>false</overWriteReleases>-->
  88. <!-- <overWriteSnapshots>false</overWriteSnapshots>-->
  89. <!-- </configuration>-->
  90. <!-- </execution>-->
  91. <!-- </executions>-->
  92. <!-- </plugin>-->
  93. <!-- </plugins>-->
  94. <!-- </build>-->
  95. </project>