| | |
| | | <groupId>com.iailab</groupId> |
| | | <artifactId>iailab-common-monitor</artifactId> |
| | | </dependency> |
| | | <!-- Job 定时任务相关 --> |
| | | <dependency> |
| | | <groupId>com.iailab</groupId> |
| | | <artifactId>iailab-common-job</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.iailab</groupId> |
| | | <artifactId>iailab-common-biz-data-permission</artifactId> |
| | |
| | | <plugins> |
| | | <!-- 打包 --> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <version>3.1</version> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>${spring.boot.version}</version> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> <!-- 将引入的 jar 打入其中 --> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | | <!-- <artifactId>spring-boot-maven-plugin</artifactId>--> |
| | | <!-- <version>${spring.boot.version}</version>--> |
| | | <!-- <executions>--> |
| | | <!-- <execution>--> |
| | | <!-- <goals>--> |
| | | <!-- <goal>repackage</goal> <!– 将引入的 jar 打入其中 –>--> |
| | | <!-- </goals>--> |
| | | <!-- </execution>--> |
| | | <!-- </executions>--> |
| | | <!-- </plugin>--> |
| | | <plugin> |
| | | <groupId>org.codehaus.mojo</groupId> |
| | | <artifactId>flatten-maven-plugin</artifactId> |
| | | <version>1.1.0</version> |
| | | <configuration> |
| | | <updatePomFile>true</updatePomFile> |
| | | <flattenMode>resolveCiFriendliesOnly</flattenMode> |
| | | </configuration> |
| | | <executions> |
| | | <execution> |
| | | <id>flatten</id> |
| | | <phase>process-resources</phase> |
| | | <goals> |
| | | <goal>flatten</goal> |
| | | </goals> |
| | | </execution> |
| | | <execution> |
| | | <id>flatten.clean</id> |
| | | <phase>clean</phase> |
| | | <goals> |
| | | <goal>clean</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |