blob: f9b6c43e57253ac7258befd6c5ae65c248230f00 [file] [log] [blame]
herberte6d0d672019-12-14 01:05:47 +01001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
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 -->
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050022<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>
herberte6d0d672019-12-14 01:05:47 +010024
25 <parent>
26 <groupId>org.onap.ccsdk.parent</groupId>
Michael DÜrre6950b472021-07-01 09:11:48 +020027 <artifactId>binding-parent</artifactId>
Dan Timoneyeafb2632022-03-28 11:00:10 -040028 <version>2.3.3</version>
herberte6d0d672019-12-14 01:05:47 +010029 <relativePath/>
30 </parent>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050031
herberte6d0d672019-12-14 01:05:47 +010032 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
33 <artifactId>sdnr-wt-odlux-app-apiDemo</artifactId>
Dan Timoneyd9e14352022-04-01 09:09:45 -040034 <version>1.4.0-SNAPSHOT</version>
herberte6d0d672019-12-14 01:05:47 +010035 <packaging>bundle</packaging>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050036
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050037 <name>ccsdk-features :: ${project.artifactId}</name>
herberte6d0d672019-12-14 01:05:47 +010038 <licenses>
39 <license>
40 <name>Apache License, Version 2.0</name>
41 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
42 </license>
43 </licenses>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050044
Aijana Schumann4bd84be2020-08-27 09:01:53 +020045 <properties>
46 <maven.javadoc.skip>true</maven.javadoc.skip>
Aijana Schumann4bd84be2020-08-27 09:01:53 +020047 </properties>
48
herberte6d0d672019-12-14 01:05:47 +010049 <dependencies>
50 <dependency>
51 <groupId>${project.groupId}</groupId>
52 <artifactId>sdnr-wt-odlux-core-model</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>${project.groupId}</groupId>
57 <artifactId>sdnr-wt-odlux-core-provider</artifactId>
58 <version>${project.version}</version>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <scope>test</scope>
65 </dependency>
herberte6d0d672019-12-14 01:05:47 +010066 </dependencies>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050067
herberte6d0d672019-12-14 01:05:47 +010068 <build>
69 <sourceDirectory>src2/main/java</sourceDirectory>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050070 <resources>
71 <resource>
72 <directory>dist</directory>
73 <targetPath>odlux</targetPath>
74 </resource>
75 <resource>
76 <directory>src2/main/resources</directory>
77 </resource>
78 <resource>
79 <directory>src2/test/resources</directory>
80 </resource>
81 </resources>
herberte6d0d672019-12-14 01:05:47 +010082 <plugins>
83 <plugin>
84 <artifactId>maven-clean-plugin</artifactId>
85 <configuration>
86 <filesets>
87 <fileset>
88 <directory>dist</directory>
89 <followSymlinks>false</followSymlinks>
90 </fileset>
91 <fileset>
92 <directory>node</directory>
93 <followSymlinks>false</followSymlinks>
94 </fileset>
95 <fileset>
96 <directory>node_modules</directory>
97 <followSymlinks>false</followSymlinks>
98 </fileset>
99 <fileset>
100 <directory>../node_modules</directory>
101 <followSymlinks>false</followSymlinks>
102 </fileset>
103 <!-- eclipse bug build bin folder in basedir -->
104 <fileset>
105 <directory>bin</directory>
106 <followSymlinks>false</followSymlinks>
107 </fileset>
108 </filesets>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.codehaus.mojo</groupId>
113 <artifactId>build-helper-maven-plugin</artifactId>
114 <executions>
115 <execution>
116 <id>add-test-source</id>
117 <phase>generate-test-sources</phase>
118 <goals>
119 <goal>add-test-source</goal>
120 </goals>
121 <configuration>
122 <sources>
123 <source>src2/test/java</source>
124 </sources>
125 </configuration>
126 </execution>
127 </executions>
128 </plugin>
129 <plugin>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500130 <groupId>de.jacks-it-lab</groupId>
131 <artifactId>frontend-maven-plugin</artifactId>
132 <version>1.7.2</version>
133 <executions>
herberte6d0d672019-12-14 01:05:47 +0100134 <execution>
135 <id>install node and yarn</id>
136 <goals>
137 <goal>install-node-and-yarn</goal>
138 </goals>
139 <!-- optional: default phase is "generate-resources" -->
140 <phase>initialize</phase>
141 <configuration>
Aijana Schumann437f6742021-08-04 11:59:18 +0200142 <nodeVersion>v12.13.0</nodeVersion>
143 <yarnVersion>v1.22.10</yarnVersion>
herberte6d0d672019-12-14 01:05:47 +0100144 </configuration>
145 </execution>
146 <execution>
147 <id>yarn build</id>
148 <goals>
149 <goal>yarn</goal>
150 </goals>
151 <configuration>
152 <arguments>run build</arguments>
153 </configuration>
154 </execution>
155 </executions>
156 </plugin>
herberte6d0d672019-12-14 01:05:47 +0100157 </plugins>
herberte6d0d672019-12-14 01:05:47 +0100158 </build>
159</project>