Commit 2c5c39d23b4056d199b5e7658aedfabb9ba02d3b
1 parent
62d2321b
JeecgBoot 3.3.0 版本发布,企业级低代码平台
Showing
1 changed file
with
36 additions
and
8 deletions
jeecg-boot/jeecg-boot-module-system/pom.xml
@@ -34,11 +34,6 @@ | @@ -34,11 +34,6 @@ | ||
34 | <groupId>org.jeecgframework.boot</groupId> | 34 | <groupId>org.jeecgframework.boot</groupId> |
35 | <artifactId>jeecg-system-local-api</artifactId> | 35 | <artifactId>jeecg-system-local-api</artifactId> |
36 | </dependency> | 36 | </dependency> |
37 | - <!-- 企业微信/钉钉 api --> | ||
38 | - <dependency> | ||
39 | - <groupId>org.jeecgframework</groupId> | ||
40 | - <artifactId>jeewx-api</artifactId> | ||
41 | - </dependency> | ||
42 | <dependency> | 37 | <dependency> |
43 | <groupId>org.hibernate</groupId> | 38 | <groupId>org.hibernate</groupId> |
44 | <artifactId>hibernate-core</artifactId> | 39 | <artifactId>hibernate-core</artifactId> |
@@ -47,11 +42,16 @@ | @@ -47,11 +42,16 @@ | ||
47 | <groupId>org.jeecgframework.boot</groupId> | 42 | <groupId>org.jeecgframework.boot</groupId> |
48 | <artifactId>hibernate-re</artifactId> | 43 | <artifactId>hibernate-re</artifactId> |
49 | </dependency> | 44 | </dependency> |
45 | + | ||
46 | + <!-- 企业微信/钉钉 api --> | ||
47 | + <dependency> | ||
48 | + <groupId>org.jeecgframework</groupId> | ||
49 | + <artifactId>jeewx-api</artifactId> | ||
50 | + </dependency> | ||
50 | <!-- 积木报表 --> | 51 | <!-- 积木报表 --> |
51 | <dependency> | 52 | <dependency> |
52 | <groupId>org.jeecgframework.jimureport</groupId> | 53 | <groupId>org.jeecgframework.jimureport</groupId> |
53 | <artifactId>jimureport-spring-boot-starter</artifactId> | 54 | <artifactId>jimureport-spring-boot-starter</artifactId> |
54 | - <version>${jimureport-spring-boot-starter.version}</version> | ||
55 | </dependency> | 55 | </dependency> |
56 | <!-- DEMO 示例模块 --> | 56 | <!-- DEMO 示例模块 --> |
57 | <dependency> | 57 | <dependency> |
@@ -68,10 +68,38 @@ | @@ -68,10 +68,38 @@ | ||
68 | <groupId>org.springframework.boot</groupId> | 68 | <groupId>org.springframework.boot</groupId> |
69 | <artifactId>spring-boot-maven-plugin</artifactId> | 69 | <artifactId>spring-boot-maven-plugin</artifactId> |
70 | <configuration> | 70 | <configuration> |
71 | - <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用--> | 71 | + <!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 --> |
72 | <skip>${skip.springboot.maven}</skip> | 72 | <skip>${skip.springboot.maven}</skip> |
73 | </configuration> | 73 | </configuration> |
74 | </plugin> | 74 | </plugin> |
75 | </plugins> | 75 | </plugins> |
76 | </build> | 76 | </build> |
77 | -</project> | ||
78 | \ No newline at end of file | 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> |