pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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</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. </dependencies>
  60. <build>
  61. <finalName>jeecg-boot</finalName>
  62. </build>
  63. <!-- <build>-->
  64. <!-- <plugins>-->
  65. <!-- <plugin>-->
  66. <!-- <groupId>org.springframework.boot</groupId>-->
  67. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  68. <!-- <configuration>-->
  69. <!-- &lt;!&ndash;SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 &ndash;&gt;-->
  70. <!-- <skip>${skip.springboot.maven}</skip>-->
  71. <!-- </configuration>-->
  72. <!-- </plugin>-->
  73. <!-- </plugins>-->
  74. <!-- </build>-->
  75. <profiles>
  76. <!-- SpringCloud运行环境 -->
  77. <profile>
  78. <id>SpringCloud</id>
  79. <build>
  80. <resources>
  81. <resource>
  82. <directory>src/main/resources</directory>
  83. <filtering>true</filtering>
  84. <!-- SpringCloud运行环境的配置,排除system模块jar里的yaml -->
  85. <excludes>
  86. <exclude>application.yml</exclude>
  87. <exclude>application-*.yml</exclude>
  88. </excludes>
  89. </resource>
  90. <resource>
  91. <directory>src/main/java</directory>
  92. <includes>
  93. <include>**/*.xml</include>
  94. <include>**/*.json</include>
  95. <include>**/*.ftl</include>
  96. </includes>
  97. </resource>
  98. </resources>
  99. </build>
  100. </profile>
  101. </profiles>
  102. </project>