2022-09-17 14:23:51 +08:00
|
|
|
<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>
|
2022-09-17 15:02:32 +08:00
|
|
|
<packaging>pom</packaging>
|
2022-09-17 14:23:51 +08:00
|
|
|
<version>1.0.0.20221015</version>
|
2022-09-17 15:02:32 +08:00
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>configure</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<name>DataCap(Incubator)</name>
|
|
|
|
<description>DataCap is integrated software for data transformation, integration and visualization.</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<plugin.maven.checkstyle.version>3.0.0</plugin.maven.checkstyle.version>
|
2022-09-17 15:04:56 +08:00
|
|
|
<plugin.maven.findbugs.version>3.0.5</plugin.maven.findbugs.version>
|
2022-09-17 15:02:32 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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>
|
2022-09-17 15:04:56 +08:00
|
|
|
<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>
|
2022-09-17 15:02:32 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-09-17 14:23:51 +08:00
|
|
|
</project>
|