<?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>interweb-parent</artifactId>
    <groupId>de.l3s.interweb</groupId>
    <version>4.0.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>interweb-client</artifactId>
  <name>Interweb Client</name>
  <version>4.5.1</version>
  <description>Versatile API that consolidates multiple data providers into one unified interface</description>
  <url>https://github.com/l3s-learnweb/interweb</url>
  <developers>
    <developer>
      <name>Oleh Astappiev</name>
      <email>astappiev@l3s.de</email>
      <organization>Research Center L3S</organization>
      <organizationUrl>https://l3s.de</organizationUrl>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>MIT license</name>
      <url>https://github.com/l3s-learnweb/interweb/blob/main/LICENSE</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:l3s-learnweb/interweb.git</connection>
    <url>https://github.com/l3s-learnweb/interweb/tree/main</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <minimizeJar>true</minimizeJar>
          <artifactSet>
            <includes>
              <include>de.l3s.interweb:interweb-core</include>
            </includes>
          </artifactSet>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-arc</artifactId>
      <version>3.15.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>arc</artifactId>
          <groupId>io.quarkus.arc</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-junit5</artifactId>
      <version>3.15.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>quarkus-bootstrap-core</artifactId>
          <groupId>io.quarkus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <groupId>org.eclipse.sisu</groupId>
        </exclusion>
        <exclusion>
          <artifactId>quarkus-test-common</artifactId>
          <groupId>io.quarkus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>quarkus-junit5-properties</artifactId>
          <groupId>io.quarkus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit-jupiter</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jboss-marshalling</artifactId>
          <groupId>org.jboss.marshalling</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-rest-common</artifactId>
      <version>3.15.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>resteasy-reactive-common</artifactId>
          <groupId>io.quarkus.resteasy.reactive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>quarkus-jsonp</artifactId>
          <groupId>io.quarkus</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>
