<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.metaeffekt.artifact.analysis</groupId>
        <artifactId>ae-artifact-analysis-pom</artifactId>
        <version>0.159.2</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>ae-npm-modules-pom</artifactId>
    <name>${project.artifactId}</name>
    <packaging>pom</packaging>

    <modules>
        <module>ae-npm-inventory-overview-html-report</module>
        <module>ae-npm-vulnerability-assessment-dashboard</module>
    </modules>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <!-- https://github.com/vojtechhabarta/typescript-generator -->
                    <groupId>cz.habarta.typescript-generator</groupId>
                    <artifactId>typescript-generator-maven-plugin</artifactId>
                    <version>${maven.typescript.generator.plugin.version}</version>
                </plugin>

                <plugin>
                    <!-- https://github.com/eirslett/frontend-maven-plugin -->
                    <groupId>com.github.eirslett</groupId>
                    <artifactId>frontend-maven-plugin</artifactId>
                    <version>${maven.frontend.plugin.version}</version>
                    <configuration>
                        <installDirectory>${project.basedir}/../../node-installation</installDirectory>
                        <nodeVersion>v14.17.0</nodeVersion>
                        <npmVersion>6.14.13</npmVersion>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>
