blob: 9647c760868ea90cc1ec2b6e908bac131048f8e9 [file] [log] [blame]
Ravi Pendurtydfd91572023-12-07 22:45:28 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : SDNR ODLUX
5 ~ ================================================================================
6 ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=======================================================
20 ~
21 -->
Ravi Pendurtydfd91572023-12-07 22:45:28 +053022<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">
23 <modelVersion>4.0.0</modelVersion>
24
25 <groupId>org.onap.ccsdk.features.sdnr.odlux</groupId>
26 <artifactId>sdnr-odlux-app-helpApp</artifactId>
Dan Timoneye2583ef2024-10-01 12:37:44 -040027 <version>2.0.0-SNAPSHOT</version>
Ravi Pendurtydfd91572023-12-07 22:45:28 +053028 <packaging>jar</packaging>
29
30 <name>SDNR ODLUX :: ${project.artifactId}</name>
31 <licenses>
32 <license>
33 <name>Apache License, Version 2.0</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
35 </license>
36 </licenses>
37
38 <properties>
39 <maven.javadoc.skip>true</maven.javadoc.skip>
40 </properties>
41
42 <build>
43 <resources>
44 <resource>
45 <directory>dist</directory>
46 <targetPath>odlux</targetPath>
47 </resource>
48 </resources>
49 <plugins>
50 <plugin>
51 <artifactId>maven-clean-plugin</artifactId>
52 <configuration>
53 <filesets>
54 <fileset>
55 <directory>dist</directory>
56 <followSymlinks>false</followSymlinks>
57 </fileset>
58 <fileset>
59 <directory>node</directory>
60 <followSymlinks>false</followSymlinks>
61 </fileset>
62 <fileset>
63 <directory>node_modules</directory>
64 <followSymlinks>false</followSymlinks>
65 </fileset>
66 <fileset>
67 <directory>../node_modules</directory>
68 <followSymlinks>false</followSymlinks>
69 </fileset>
70 <!-- eclipse bug build bin folder in basedir -->
71 <fileset>
72 <directory>bin</directory>
73 <followSymlinks>false</followSymlinks>
74 </fileset>
75 </filesets>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>de.jacks-it-lab</groupId>
80 <artifactId>frontend-maven-plugin</artifactId>
81 <version>1.7.2</version>
82 <executions>
83 <execution>
84 <id>install node and yarn</id>
85 <goals>
86 <goal>install-node-and-yarn</goal>
87 </goals>
88 <!-- optional: default phase is "generate-resources" -->
89 <phase>initialize</phase>
90 <configuration>
91 <nodeVersion>v16.17.0</nodeVersion>
92 <yarnVersion>v1.22.19</yarnVersion>
93 </configuration>
94 </execution>
95 <execution>
96 <id>yarn build</id>
97 <goals>
98 <goal>yarn</goal>
99 </goals>
100 <configuration>
101 <arguments>run build</arguments>
102 </configuration>
103 </execution>
104 </executions>
105 </plugin>
106 </plugins>
107 </build>
108</project>