<?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.atlassian.jira</groupId>
        <artifactId>jira-issue-nav-plugin-parent</artifactId>
        <version>18.0.7</version>
    </parent>

    <name>Atlassian Jira - Plugins - Issue Navigator test plugin</name>
    <artifactId>jira-issue-navigator-test-plugin</artifactId>
    <description>Facilitates testing Jira Issue Navigator</description>
    <packaging>atlassian-plugin</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>jira-maven-plugin</artifactId>
                <configuration>
                    <skipManifestValidation>true</skipManifestValidation>
                    <compressResources>false</compressResources>
                    <instructions>
                        <atlassian-plugin-key>${atlassian.plugin.key}</atlassian-plugin-key>
                        <Spring-Context>*</Spring-Context>
                        <Export-Package />
                        <Import-Package>*;resolution:=optional</Import-Package>
                    </instructions>
                </configuration>
            </plugin>

            <plugin>
                <groupId>com.github.eirslett</groupId>
                <artifactId>frontend-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>install node and yarn</id>
                        <phase>none</phase>
                    </execution>
                    <execution>
                        <id>yarn install</id>
                        <phase>none</phase>
                    </execution>
                    <execution>
                        <id>run-eslint</id>
                        <phase>none</phase>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <properties>
        <atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
    </properties>
</project>
