<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>parent</artifactId>
    <groupId>org.sonarsource.parent</groupId>
    <version>71.0.0.1292</version>
    <relativePath>../pom.xml/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.sonarsource.java</groupId>
  <artifactId>jdt-package</artifactId>
  <version>1.0.0.9</version>
  <ciManagement>
    <system>Cirrus CI</system>
    <url>https://cirrus-ci.com/github/SonarSource/sonar-java-jdt</url>
  </ciManagement>
  <licenses>
    <license>
      <name>Eclipse Public License - v 2.0</name>
      <url>https://www.eclipse.org/legal/epl-2.0/</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:SonarSource/sonar-java-jdt.git</connection>
    <developerConnection>scm:git:git@github.com:SonarSource/sonar-java-jdt.git</developerConnection>
    <url>https://github.com/SonarSource/sonar-java-jdt</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <createSourcesJar>true</createSourcesJar>
              <shadeSourcesContent>true</shadeSourcesContent>
              <shadedArtifactAttached>false</shadedArtifactAttached>
              <filters>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <exclude>META-INF/**</exclude>
                  </excludes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <executions>
          <execution>
            <phase>generate-resources</phase>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>com.mycila</groupId>
        <artifactId>license-maven-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>src/main/java/**</exclude>
            <exclude>src/test/resources/**</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.eclipse.jdt</groupId>
        <artifactId>org.eclipse.jdt.core</artifactId>
        <version>3.36.0</version>
        <exclusions>
          <exclusion>
            <artifactId>org.eclipse.core.filesystem</artifactId>
            <groupId>org.eclipse.platform</groupId>
          </exclusion>
          <exclusion>
            <artifactId>org.eclipse.core.expressions</artifactId>
            <groupId>org.eclipse.platform</groupId>
          </exclusion>
          <exclusion>
            <artifactId>org.eclipse.equinox.registry</artifactId>
            <groupId>org.eclipse.platform</groupId>
          </exclusion>
          <exclusion>
            <artifactId>org.eclipse.equinox.app</artifactId>
            <groupId>org.eclipse.platform</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>org.eclipse.platform</groupId>
        <artifactId>org.eclipse.core.resources</artifactId>
        <version>3.20.0</version>
      </dependency>
      <dependency>
        <groupId>org.eclipse.platform</groupId>
        <artifactId>org.eclipse.core.runtime</artifactId>
        <version>3.30.0</version>
      </dependency>
      <dependency>
        <groupId>org.eclipse.platform</groupId>
        <artifactId>org.eclipse.core.jobs</artifactId>
        <version>3.15.100</version>
      </dependency>
      <dependency>
        <groupId>org.eclipse.platform</groupId>
        <artifactId>org.eclipse.core.contenttype</artifactId>
        <version>3.9.200</version>
      </dependency>
      <dependency>
        <groupId>org.eclipse.platform</groupId>
        <artifactId>org.eclipse.text</artifactId>
        <version>3.13.100</version>
        <exclusions>
          <exclusion>
            <artifactId>org.eclipse.core.commands</artifactId>
            <groupId>org.eclipse.platform</groupId>
          </exclusion>
        </exclusions>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <properties>
    <jdk.min.version>17</jdk.min.version>
    <artifactsToPublish>${project.groupId}:${project.artifactId}:jar</artifactsToPublish>
    <maven.source.skip>true</maven.source.skip>
    <sonar.exclusions>src/main/java/org/eclipse/jdt/**</sonar.exclusions>
    <gitRepositoryName>sonar-java-jdt</gitRepositoryName>
  </properties>
</project>
