1 Star 0 Fork 7

生不出人,我很抱歉 / cloud-service

forked from icodingallen / cloud-service 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.48 KB
一键复制 编辑 原始数据 按行查看 历史
ex_liangjj11 提交于 2020-07-24 16:11 . starter
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.icoding</groupId>
<artifactId>cloud-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>cloud-service</name>
<description>Demo project for Spring Boot</description>
<packaging>pom</packaging>
<properties>
<java.version>1.8</java.version>
<!-- sonar.java.binaries -->
<!-- <sonar.jacoco.reportPaths>${PWD}/./target/jacoco.exec</sonar.jacoco.reportPaths>-->
<sonar.groovy.binaries>target/classes</sonar.groovy.binaries>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0-alpha1</version>
</dependency>
</dependencies>
<!--1、sonar插件准备好
2、spring-boot-starter-actuator微服务的健康监控
3、每一个微服务准备好k8s的打包文件,和Dockerfile镜像打包文件
-->
<modules>
<module>movie-service</module>
<module>user-service</module>
<module>http-starter</module>
<module>rabbitMQ-starter</module>
<module>ljj-elastic-seatch-starter</module>
</modules>
<build>
<!--sonar全站代码质量分析,并使用jacoco给出质量报告-->
<!-- Sonar -->
<!-- The destination file for the code coverage report has to be set to the same value
in the parent pom and in each module pom. Then JaCoCo will add up information in
the same report, so that, it will give the cross-module code coverage. -->
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<configuration>
<append>true</append>
</configuration>
<executions>
<execution>
<id>agent-for-ut</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>agent-for-it</id>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.0.RELEASE</version>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.6.0.1398</version>
</plugin>
</plugins>
</build>
</project>
1
https://gitee.com/jokerman_697/cloud-service.git
git@gitee.com:jokerman_697/cloud-service.git
jokerman_697
cloud-service
cloud-service
master

搜索帮助