client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.camunda.optimize</groupId>
<artifactId>client</artifactId>
<version>8.7.0-alpha3-rc5</version>
</dependency><?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>io.camunda.optimize</groupId>
<artifactId>optimize-parent</artifactId>
<version>8.7.0-alpha3-rc5</version>
</parent>
<artifactId>client</artifactId>
<packaging>pom</packaging>
<name>Optimize Client</name>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<configuration>
<skip>${skip.fe.build}</skip>
<installDirectory>${project.basedir}/.node</installDirectory>
</configuration>
<executions>
<execution>
<id>install node and yarn</id>
<goals>
<goal>install-node-and-yarn</goal>
</goals>
<configuration>
<skip>${skip.fe.build}</skip>
<nodeVersion>${version.node}</nodeVersion>
<yarnVersion>${version.yarn}</yarnVersion>
</configuration>
</execution>
<execution>
<id>yarn install</id>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
<skip>${skip.fe.build}</skip>
<arguments>install --mutex file:/tmp/.yarn-mutex</arguments>
</configuration>
</execution>
<execution>
<id>yarn build</id>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<skip>${skip.fe.build}</skip>
<arguments>build</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- skip spotless formatter as client has its own formatter -->
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>skipFrontendBuild</id>
<properties>
<skip.fe.build>true</skip.fe.build>
</properties>
</profile>
</profiles>
</project>