<?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>
   <artifactId>alfresco-governance-services-automation-community-rest-api</artifactId>
   <name>Alfresco Governance Services Automation Community REST API</name>

   <parent>
      <groupId>org.alfresco</groupId>
      <artifactId>alfresco-governance-services-automation-community-repo</artifactId>
      <version>23.3.0.52</version>
   </parent>

   <build>
      <plugins>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>license-maven-plugin</artifactId>
            <executions>
                <execution>
                    <id>first</id>
                    <phase>process-sources</phase>
                    <configuration>
                       <licenseName>alfresco_community</licenseName>
                       <licenseResolver>file:${project.parent.parent.basedir}/license</licenseResolver>
                       <descriptionTemplate>${project.parent.parent.basedir}/license/description.ftl</descriptionTemplate>
                    </configuration>
                </execution>
            </executions>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <executions>
               <execution>
                  <goals>
                     <goal>test-jar</goal>
                  </goals>
               </execution>
            </executions>
         </plugin>
      </plugins>
   </build>

   <dependencies>
      <dependency>
         <groupId>org.alfresco.tas</groupId>
         <artifactId>restapi</artifactId>
         <version>${project.version}</version>
         <exclusions>
            <exclusion>
               <groupId>org.alfresco.tas</groupId>
               <artifactId>utility</artifactId>
            </exclusion>
         </exclusions>
      </dependency>
      <dependency>
         <groupId>org.alfresco.tas</groupId>
         <artifactId>utility</artifactId>
         <version>${dependency.tas-utility.version}</version>
      </dependency>
      <dependency>
         <groupId>org.projectlombok</groupId>
         <artifactId>lombok</artifactId>
         <scope>provided</scope>
      </dependency>
      <!-- FIXME: Remove this dependency once RMUserAPI.java has been refactored -->
      <dependency>
         <groupId>org.jglue.fluent-json</groupId>
         <artifactId>fluent-json</artifactId>
         <version>2.0.3</version>
      </dependency>
      <dependency>
         <groupId>org.alfresco.test</groupId>
         <artifactId>alfresco-testng</artifactId>
         <version>1.1</version>
      </dependency>
      <dependency>
         <groupId>com.epam.reportportal</groupId>
         <artifactId>agent-java-testng</artifactId>
         <scope>test</scope>
      </dependency>
      <dependency>
         <groupId>com.squareup.okhttp3</groupId>
         <artifactId>okhttp</artifactId>
         <scope>test</scope>
      </dependency>
      <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-collections4</artifactId>
         <version>4.4</version>
      </dependency>
      <dependency>
         <groupId>com.github.docker-java</groupId>
         <artifactId>docker-java</artifactId>
         <version>3.3.2</version>
         <exclusions>
            <exclusion>
               <groupId>org.bouncycastle</groupId>
               <artifactId>bcprov-jdk15on</artifactId>
            </exclusion>
            <exclusion>
               <groupId>org.bouncycastle</groupId>
               <artifactId>bcpkix-jdk15on</artifactId>
            </exclusion>
         </exclusions>
      </dependency>
      <dependency>
         <groupId>org.bouncycastle</groupId>
         <artifactId>bcprov-jdk18on</artifactId>
      </dependency>
      <dependency>
         <groupId>org.bouncycastle</groupId>
         <artifactId>bcpkix-jdk18on</artifactId>
      </dependency>
   </dependencies>
</project>
