| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright © 2016-2018 European Support Limited |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| ~ Modifications copyright (c) 2019 Nokia |
| --> |
| |
| <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>sdc-workflow-designer-ui</artifactId> |
| <packaging>war</packaging> |
| |
| <parent> |
| <groupId>org.onap.sdc.sdc-workflow-designer</groupId> |
| <artifactId>sdc-workflow-designer-parent</artifactId> |
| <version>1.11.1-SNAPSHOT</version> |
| </parent> |
| |
| <properties> |
| <jest.command /> |
| <jetty.version>9.4.45.v20220203</jetty.version> |
| </properties> |
| |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-proxy</artifactId> |
| <version>${jetty.version}</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>jetty-http</artifactId> |
| <groupId>org.eclipse.jetty</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| <version>3.0.1</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-http</artifactId> |
| <version>${jetty.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.github.eirslett</groupId> |
| <artifactId>frontend-maven-plugin</artifactId> |
| <version>1.8.0</version> |
| <configuration> |
| <workingDirectory>src/main/frontend</workingDirectory> |
| <installDirectory>target</installDirectory> |
| </configuration> |
| <executions> |
| <execution> |
| <id>install node and yarn</id> |
| <goals> |
| <goal>install-node-and-yarn</goal> |
| </goals> |
| <phase>generate-resources</phase> |
| <configuration> |
| <nodeVersion>v10.17.0</nodeVersion> |
| <yarnVersion>v1.19.1</yarnVersion> |
| </configuration> |
| </execution> |
| <execution> |
| <id>yarn install</id> |
| <goals> |
| <goal>yarn</goal> |
| </goals> |
| <configuration> |
| <arguments>install</arguments> |
| </configuration> |
| </execution> |
| <execution> |
| <id>yarn run webpack build</id> |
| <goals> |
| <goal>yarn</goal> |
| </goals> |
| <configuration> |
| <yarnInheritsProxyConfigFromMaven>false</yarnInheritsProxyConfigFromMaven> |
| <arguments>build</arguments> |
| </configuration> |
| </execution> |
| <execution> |
| <id>ui test</id> |
| <goals> |
| <goal>yarn</goal> |
| </goals> |
| <configuration> |
| <yarnInheritsProxyConfigFromMaven>false</yarnInheritsProxyConfigFromMaven> |
| <arguments>test-build ${jest.command}</arguments> |
| <skip>${skipTests}</skip> |
| </configuration> |
| <phase>test</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-war-plugin</artifactId> |
| <version>3.2.2</version> |
| <configuration> |
| <webResources> |
| <resource> |
| <directory>src/main/frontend/dist</directory> |
| <includes> |
| <include>*.*</include> |
| </includes> |
| </resource> |
| <resource> |
| <directory>src/main/frontend/external-resources/ping/</directory> |
| <filtering>true</filtering> |
| <includes> |
| <include>ping</include> |
| </includes> |
| </resource> |
| </webResources> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <profiles> |
| <profile> |
| <id>jest-windows-profile</id> |
| <activation> |
| <os> |
| <family>windows</family> |
| </os> |
| </activation> |
| <properties> |
| <jest.command>--runInBand</jest.command> |
| </properties> |
| </profile> |
| <profile> |
| <id>docker</id> |
| <activation> |
| <activeByDefault>false</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.6</version> |
| <executions> |
| <execution> |
| <id>copy-resources-docker</id> |
| <phase>install</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${basedir}/docker</outputDirectory> |
| <resources> |
| <resource> |
| <directory>${project.build.directory}</directory> |
| <include>${project.artifactId}-${project.version}.war</include> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>io.fabric8</groupId> |
| <artifactId>docker-maven-plugin</artifactId> |
| <configuration> |
| <apiVersion>${docker.api.version}</apiVersion> |
| <images> |
| <image> |
| <name>onap/sdc-workflow-frontend</name> |
| <build> |
| <tags> |
| <tag>latest</tag> |
| <tag>${project.docker.latesttagtimestamp.version}</tag> |
| <tag>${project.docker.latesttag.version}</tag> |
| </tags> |
| <dockerFileDir>${project.basedir}/docker</dockerFileDir> |
| <args> |
| <ARTIFACT>${project.artifactId}-${project.version}.war</ARTIFACT> |
| </args> |
| </build> |
| </image> |
| </images> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |
| |