<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.atlassian.jira.plugins</groupId>
    <artifactId>jira-plugins-bundle</artifactId>
    <version>110.1.10</version>
  </parent>
  <groupId>com.atlassian.jira.plugins</groupId>
  <artifactId>jira-dnd-attachment-parent</artifactId>
  <version>110.1.10</version>
  <packaging>pom</packaging>
  <name>jira-dnd-attachment-parent</name>
  <licenses>
    <license>
      <name>The New BSD License</name>
      <url>https://www.opensource.org/licenses/bsd-license.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <modules>
    <module>plugin</module>
    <module>tests</module>
  </modules>
  <scm>
    <connection>scm:git:ssh://git@bitbucket.org/atlassian/jira-drag-drop-attachments-plugin.git</connection>
    <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/jira-drag-drop-attachments-plugin.git</developerConnection>
    <tag>jira-dnd-attachment-parent-6.0.0</tag>
    <url>https://bitbucket.org/atlassian/jira-drag-drop-attachments-plugin</url>
  </scm>
  <issueManagement>
    <system>Jira</system>
    <url>https://ecosystem.atlassian.net/projects/JDDAP/summary</url>
  </issueManagement>
  <ciManagement>
    <system>Bamboo</system>
    <url>https://server-gdn-bamboo.internal.atlassian.com/browse/PLUGINS-JDDAP</url>
  </ciManagement>
  <properties>
    <atlassian.jstest.runner.plugin.version>0.8.2</atlassian.jstest.runner.plugin.version>
    <plugin.testrunner.version>3.0.0-m01</plugin.testrunner.version>
    <jira.version>10.0.0-QR-20240709141426</jira.version>
    <pocketknife.version>0.71.0</pocketknife.version>
    <amps.version>8.17.2</amps.version>
    <atlassian.browsers.version>3.1.0</atlassian.browsers.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.atlassian.jira</groupId>
        <artifactId>jira-internal-bom</artifactId>
        <version>${jira.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>com.atlassian.jira</groupId>
        <artifactId>jira-bundled-plugins-bom</artifactId>
        <version>${jira.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>com.atlassian.pocketknife</groupId>
        <artifactId>jira-pocketknife-rest</artifactId>
        <version>${pocketknife.version}</version>
      </dependency>
      <dependency>
        <groupId>com.atlassian.browsers</groupId>
        <artifactId>atlassian-browsers-linux64</artifactId>
        <version>${atlassian.browsers.version}</version>
      </dependency>
      <dependency>
        <groupId>com.atlassian.plugins</groupId>
        <artifactId>atlassian-plugins-osgi-testrunner</artifactId>
        <version>${plugin.testrunner.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <source>16</source>
          <target>16</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>0.8.9</version>
      </plugin>
      <plugin>
        <groupId>com.atlassian.drs</groupId>
        <artifactId>dependency-report-maven-plugin</artifactId>
        <version>1.5.13</version>
        <executions>
          <execution>
            <phase>post-integration-test</phase>
            <goals>
              <goal>upload</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <project>jira-dnd-attachment</project>
          <unitTestCodeCoveragePaths>${project.build.directory}/jacoco.exec</unitTestCodeCoveragePaths>
          <integrationTestCodeCoveragePaths>${project.build.directory}/jacoco-it.exec</integrationTestCodeCoveragePaths>
          <gracefulFailure>true</gracefulFailure>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
