ui-designer-frontend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bonitasoft.web</groupId> <artifactId>ui-designer-frontend</artifactId> <version>1.13.1</version> </dependency>
<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.bonitasoft.web</groupId> <artifactId>ui-designer</artifactId> <version>1.13.1</version> </parent> <properties> <uidModelVersion>2.1</uidModelVersion> </properties> <artifactId>ui-designer-frontend</artifactId> <packaging>pom</packaging> <build> <directory>build</directory> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>install node and yarn</id> <goals> <goal>install-node-and-yarn</goal> </goals> </execution> <execution> <id>yarn install</id> <goals> <goal>yarn</goal> </goals> <phase>generate-resources</phase> <configuration> <arguments>install</arguments> </configuration> </execution> <execution> <id>yarn build</id> <goals> <goal>yarn</goal> </goals> <phase>generate-resources</phase> <configuration> <arguments>run build</arguments> </configuration> </execution> <execution> <id>yarn test</id> <goals> <goal>yarn</goal> </goals> <phase>test</phase> <configuration> <arguments>run test</arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4.1</version> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>e2e</id> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>install node and yarn</id> <goals> <goal>install-node-and-yarn</goal> </goals> </execution> <execution> <id>e2e tests</id> <goals> <goal>yarn</goal> </goals> <phase>integration-test</phase> <configuration> <arguments>run e2e:headless</arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>dependencies</id> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>install node and yarn</id> <goals> <goal>install-node-and-yarn</goal> </goals> <phase>initialize</phase> </execution> <execution> <id>list yarn dependencies</id> <goals> <goal>yarn</goal> </goals> <phase>initialize</phase> <configuration> <arguments> listDependencies </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>