pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <version>3.2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <packaging>war</packaging>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>https://maven.aliyun.com/repository/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-system-local-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.hibernate</groupId>
  37. <artifactId>hibernate-core</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.jeecgframework.boot</groupId>
  41. <artifactId>hibernate-re</artifactId>
  42. </dependency>
  43. <!-- 企业微信/钉钉 api -->
  44. <dependency>
  45. <groupId>org.jeecgframework</groupId>
  46. <artifactId>jeewx-api</artifactId>
  47. </dependency>
  48. <!-- 积木报表 -->
  49. <dependency>
  50. <groupId>org.jeecgframework.jimureport</groupId>
  51. <artifactId>jimureport-spring-boot-starter</artifactId>
  52. </dependency>
  53. <!-- DEMO 示例模块 -->
  54. <dependency>
  55. <groupId>org.jeecgframework.boot</groupId>
  56. <artifactId>jeecg-boot-module-demo</artifactId>
  57. <version>${jeecgboot.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.jeecgframework.boot</groupId>
  61. <artifactId>jeecg-boot-module-zrzyqc</artifactId>
  62. <version>${jeecgboot.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.jeecgframework.boot</groupId>
  66. <artifactId>jeecg-boot-module-gis</artifactId>
  67. <version>${jeecgboot.version}</version>
  68. </dependency>
  69. </dependencies>
  70. <!--<build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. <configuration>
  76. &lt;!&ndash;SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 &ndash;&gt;
  77. <skip>${skip.springboot.maven}</skip>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>-->
  82. <profiles>
  83. <!-- SpringCloud运行环境 -->
  84. <profile>
  85. <id>SpringCloud</id>
  86. <build>
  87. <resources>
  88. <resource>
  89. <directory>src/main/resources</directory>
  90. <filtering>true</filtering>
  91. <!-- SpringCloud运行环境的配置,排除system模块jar里的yaml -->
  92. <excludes>
  93. <exclude>application.yml</exclude>
  94. <exclude>application-*.yml</exclude>
  95. </excludes>
  96. </resource>
  97. <resource>
  98. <directory>src/main/java</directory>
  99. <includes>
  100. <include>**/*.xml</include>
  101. <include>**/*.json</include>
  102. <include>**/*.ftl</include>
  103. </includes>
  104. </resource>
  105. </resources>
  106. </build>
  107. </profile>
  108. </profiles>
  109. </project>