1 Star 0 Fork 2

Skqing/sensitive-word-processor-spring-boot-project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 7.18 KB
一键复制 编辑 原始数据 按行查看 历史
Skqing 提交于 2021-08-09 16:39 +08:00 . 项目转移初始化
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.skm.open.sensitive.word.processor</groupId>
<artifactId>sensitive-word-processor-spring-boot-project</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>sensitive-word-processor-spring-boot-autoconfigure</module>
<module>sensitive-word-processor-spring-boot</module>
<module>sensitive-word-processor-spring-boot-parent</module>
<module>sensitive-word-processor-spring-boot-starter</module>
<module>sensitive-word-processor-spring-boot-simple</module>
</modules>
<name>sensitive-word-processor-spring-boot-project</name>
<description>敏感词处理器器</description>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-checkstyle-plugin</artifactId>-->
<!-- <version>2.17</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>validate</id>-->
<!-- <phase>validate</phase>-->
<!-- <configuration>-->
<!-- <excludes>src/main/resources</excludes>-->
<!-- <configLocation>style/marmot_checkstyle.xml</configLocation>-->
<!-- <encoding>UTF-8</encoding>-->
<!-- <consoleOutput>true</consoleOutput>-->
<!-- <failsOnError>true</failsOnError>-->
<!-- </configuration>-->
<!-- <goals>-->
<!-- <goal>check</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.8</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<destFile>${project.build.directory}/jacoco.exec</destFile>
</configuration>
</execution>
<execution>
<id>default-prepare-agent-integration</id>
<phase>pre-integration-test</phase>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
<configuration>
<destFile>${project.build.directory}/jacoco-it.exec</destFile>
<propertyName>failsafeArgLine</propertyName>
</configuration>
</execution>
<execution>
<id>default-report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-report-integration</id>
<goals>
<goal>report-integration</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skipAfterFailureCount>1</skipAfterFailureCount>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
<excludes>
<exclude>**/IT*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.4</version>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.apache.rat</groupId>-->
<!-- <artifactId>apache-rat-plugin</artifactId>-->
<!-- <version>0.12</version>-->
<!-- <configuration>-->
<!-- <excludes>-->
<!-- <exclude>.gitignore</exclude>-->
<!-- <exclude>.travis.yml</exclude>-->
<!-- <exclude>CONTRIBUTING.md</exclude>-->
<!-- <exclude>**/README.md</exclude>-->
<!-- <exclude>**/README_zh_CN.md</exclude>-->
<!-- <exclude>.github/**</exclude>-->
<!-- <exclude>src/test/resources/certs/*</exclude>-->
<!-- <exclude>src/test/**/*.log</exclude>-->
<!-- <exclude>src/test/resources/META-INF/service/*</exclude>-->
<!-- <exclude>**/target/**</exclude>-->
<!-- <exclude>*/*.iml</exclude>-->
<!-- <exclude>**/*/spring.factories</exclude>-->
<!-- <exclude>**/application.properties</exclude>-->
<!-- </excludes>-->
<!-- </configuration>-->
<!-- </plugin>-->
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/skqing/sensitive-word-processor-spring-boot-project.git
git@gitee.com:skqing/sensitive-word-processor-spring-boot-project.git
skqing
sensitive-word-processor-spring-boot-project
sensitive-word-processor-spring-boot-project
master

搜索帮助