<?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>org.exoplatform.addons.pexip</groupId>
    <artifactId>pexip</artifactId>
    <version>7.2.x-SNAPSHOT</version>
  </parent>

  <artifactId>pexip-webapp</artifactId>
  <packaging>war</packaging>
  <name>eXo Pexip :: Webapp</name>
  <description>eXo Pexip web application of portal extension</description>

  <dependencies>
    <!-- My Connector -->
    <dependency>
      <groupId>org.exoplatform.addons.pexip</groupId>
      <artifactId>pexip-services</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <build>
    <finalName>pexip</finalName>
    <plugins>
      <plugin>
        <groupId>com.github.eirslett</groupId>
        <artifactId>frontend-maven-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <configuration>
          <packagingExcludes>**/*.less,**/*.vue,css/lib/*,vue-apps/**,js/mock/**/*,**-dev.*</packagingExcludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
