Commit 2c5c39d23b4056d199b5e7658aedfabb9ba02d3b

Authored by zhangdaiscott
1 parent 62d2321b

JeecgBoot 3.3.0 版本发布,企业级低代码平台

jeecg-boot/jeecg-boot-module-system/pom.xml
... ... @@ -34,11 +34,6 @@
34 34 <groupId>org.jeecgframework.boot</groupId>
35 35 <artifactId>jeecg-system-local-api</artifactId>
36 36 </dependency>
37   - <!-- 企业微信/钉钉 api -->
38   - <dependency>
39   - <groupId>org.jeecgframework</groupId>
40   - <artifactId>jeewx-api</artifactId>
41   - </dependency>
42 37 <dependency>
43 38 <groupId>org.hibernate</groupId>
44 39 <artifactId>hibernate-core</artifactId>
... ... @@ -47,11 +42,16 @@
47 42 <groupId>org.jeecgframework.boot</groupId>
48 43 <artifactId>hibernate-re</artifactId>
49 44 </dependency>
  45 +
  46 + <!-- 企业微信/钉钉 api -->
  47 + <dependency>
  48 + <groupId>org.jeecgframework</groupId>
  49 + <artifactId>jeewx-api</artifactId>
  50 + </dependency>
50 51 <!-- 积木报表 -->
51 52 <dependency>
52 53 <groupId>org.jeecgframework.jimureport</groupId>
53 54 <artifactId>jimureport-spring-boot-starter</artifactId>
54   - <version>${jimureport-spring-boot-starter.version}</version>
55 55 </dependency>
56 56 <!-- DEMO 示例模块 -->
57 57 <dependency>
... ... @@ -68,10 +68,38 @@
68 68 <groupId>org.springframework.boot</groupId>
69 69 <artifactId>spring-boot-maven-plugin</artifactId>
70 70 <configuration>
71   - <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
  71 + <!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
72 72 <skip>${skip.springboot.maven}</skip>
73 73 </configuration>
74 74 </plugin>
75 75 </plugins>
76 76 </build>
77   -</project>
78 77 \ No newline at end of file
  78 +
  79 + <profiles>
  80 + <!-- SpringCloud运行环境 -->
  81 + <profile>
  82 + <id>SpringCloud</id>
  83 + <build>
  84 + <resources>
  85 + <resource>
  86 + <directory>src/main/resources</directory>
  87 + <filtering>true</filtering>
  88 + <!-- SpringCloud运行环境的配置,排除system模块jar里的yaml -->
  89 + <excludes>
  90 + <exclude>application.yml</exclude>
  91 + <exclude>application-*.yml</exclude>
  92 + </excludes>
  93 + </resource>
  94 + <resource>
  95 + <directory>src/main/java</directory>
  96 + <includes>
  97 + <include>**/*.xml</include>
  98 + <include>**/*.json</include>
  99 + <include>**/*.ftl</include>
  100 + </includes>
  101 + </resource>
  102 + </resources>
  103 + </build>
  104 + </profile>
  105 + </profiles>
  106 +</project>
... ...