<?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>
    <parent>
        <groupId>com.gccloud</groupId>
        <artifactId>gc-starter</artifactId>
        <version>2.1.0.2023042801.bugfix.RELEASE</version>
    </parent>
    <groupId>com.gccloud</groupId>
    <artifactId>gc-starter-plugins</artifactId>
    <name>gc-starter-plugins</name>
    <packaging>pom</packaging>
    <modules>
        <module>gc-starter-plugins-cache</module>
        <module>gc-starter-plugins-quartz</module>
        <module>gc-starter-plugins-report</module>
        <module>gc-starter-plugins-jimureport</module>
        <module>gc-starter-plugins-oss</module>
    </modules>

    <dependencies>
        <dependency>
            <groupId>com.gccloud</groupId>
            <artifactId>gc-starter-common</artifactId>
            <version>${parent.version}</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <!-- 跳过单元测试 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
