mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-30 02:57:37 +08:00
17c3d9a4b3
Bumps [maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.0.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-checkstyle-plugin/releases) - [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.0.0...maven-checkstyle-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
186 lines
7.7 KiB
XML
186 lines
7.7 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.edurt.datacap</groupId>
|
|
<artifactId>incubator-datacap</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0.0.20221015</version>
|
|
|
|
<modules>
|
|
<module>configure</module>
|
|
<module>server</module>
|
|
<module>web</module>
|
|
<module>spi</module>
|
|
<module>plugin</module>
|
|
</modules>
|
|
|
|
<name>DataCap(Incubator)</name>
|
|
<description>DataCap is integrated software for data transformation, integration and visualization.</description>
|
|
|
|
<properties>
|
|
<springboot.version>2.7.4</springboot.version>
|
|
<lombok.version>1.18.24</lombok.version>
|
|
<junit.version>4.13.2</junit.version>
|
|
<commons-lang3.version>3.12.0</commons-lang3.version>
|
|
<findbugs.version>3.0.1</findbugs.version>
|
|
<jackson.version>2.13.4</jackson.version>
|
|
<logback.version>1.4.3</logback.version>
|
|
<slf4j.version>1.7.36</slf4j.version>
|
|
<sql-formatter.version>2.0.3</sql-formatter.version>
|
|
<commons-beanutils.version>1.9.4</commons-beanutils.version>
|
|
<assembly-plugin.version>3.1.1</assembly-plugin.version>
|
|
<plugin.maven.checkstyle.version>3.2.0</plugin.maven.checkstyle.version>
|
|
<plugin.maven.findbugs.version>3.0.5</plugin.maven.findbugs.version>
|
|
<plugin.maven.compiler.version>3.3</plugin.maven.compiler.version>
|
|
<plugin.maven.cobertura.version>2.7</plugin.maven.cobertura.version>
|
|
<plugin.maven.dependency.version>3.0.1</plugin.maven.dependency.version>
|
|
<environment.compile.java.version>1.8</environment.compile.java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.edurt.datacap</groupId>
|
|
<artifactId>datacap-spi</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>findbugs</artifactId>
|
|
<version>${findbugs.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-core</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>${commons-beanutils.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.vertical-blank</groupId>
|
|
<artifactId>sql-formatter</artifactId>
|
|
<version>${sql-formatter.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>${plugin.maven.checkstyle.version}</version>
|
|
<configuration>
|
|
<configLocation>configure/checks.xml</configLocation>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>validate</id>
|
|
<phase>validate</phase>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<consoleOutput>true</consoleOutput>
|
|
<failsOnError>true</failsOnError>
|
|
</configuration>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>${plugin.maven.findbugs.version}</version>
|
|
<configuration>
|
|
<effort>Low</effort>
|
|
<threshold>Medium</threshold>
|
|
<failOnError>true</failOnError>
|
|
<includeTests>true</includeTests>
|
|
<excludeFilterFile>configure/findbugs.xml</excludeFilterFile>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>run-findbugs</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${plugin.maven.compiler.version}</version>
|
|
<configuration>
|
|
<source>${environment.compile.java.version}</source>
|
|
<target>${environment.compile.java.version}</target>
|
|
<encoding>utf-8</encoding>
|
|
<compilerArgs>
|
|
<arg>-J-Dfile.encoding=UTF-8</arg>
|
|
</compilerArgs>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
<version>${plugin.maven.cobertura.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|