mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-30 02:57:37 +08:00
136 lines
5.4 KiB
XML
136 lines
5.4 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>
|
|
</modules>
|
|
|
|
<name>DataCap(Incubator)</name>
|
|
<description>DataCap is integrated software for data transformation, integration and visualization.</description>
|
|
|
|
<properties>
|
|
<springboot.version>2.7.3</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>
|
|
<plugin.maven.checkstyle.version>3.0.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.5.1</plugin.maven.cobertura.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>
|
|
</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>
|