<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>

    <parent>
        <groupId>org.eclipse.dirigible</groupId>
        <artifactId>dirigible-components-parent</artifactId>
        <version>8.15.2</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <name>Components - API - Modules</name>
    <artifactId>dirigible-components-api-modules</artifactId>
    <packaging>jar</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>3.1.0</version>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <executable>${basedir}/src/main/resources/META-INF/dirigible/modules/build.sh</executable>
                    <workingDirectory>src/main/resources/META-INF/dirigible/modules</workingDirectory>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <properties>
        <license.header.location>../../licensing-header.txt</license.header.location>
    </properties>

</project>