fixed mediator app
[ccsdk/features.git] / sdnr / wt / odlux / framework / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4         <parent>
5                 <groupId>org.onap.ccsdk.parent</groupId>
6                 <artifactId>odlparent</artifactId>
7                 <version>1.3.2</version>
8                 <relativePath/>
9         </parent>
10         <modelVersion>4.0.0</modelVersion>
11         <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
12         <artifactId>sdnr-wt-odlux-framework</artifactId>
13         <version>0.5.2-SNAPSHOT</version>
14         <packaging>jar</packaging>
15         <name>sdnr-wt-odlux-framework</name>
16         <properties>
17                 <buildtime>${maven.build.timestamp}</buildtime>
18                 <distversion>ONAP Dublin (Flourine-SR2)</distversion>
19                 <buildno>12.c51336e(19/07/25)</buildno>
20                 <odlux.version>ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version}</odlux.version>
21         </properties>
22         <licenses>
23                 <license>
24                         <name>Apache License, Version 2.0</name>
25                         <url>http://www.apache.org/licenses/LICENSE-2.0</url>
26                 </license>
27         </licenses>
28
29         <build>
30                 <plugins>
31                         <plugin>
32                                 <artifactId>maven-clean-plugin</artifactId>
33                                 <configuration>
34                                         <filesets>
35                                                 <fileset>
36                                                         <directory>dist</directory>
37                                                         <followSymlinks>false</followSymlinks>
38                                                 </fileset>
39                                                 <fileset>
40                                                         <directory>node</directory>
41                                                         <followSymlinks>false</followSymlinks>
42                                                 </fileset>
43                                                 <fileset>
44                                                         <directory>node_modules</directory>
45                                                         <followSymlinks>false</followSymlinks>
46                                                 </fileset>
47                                                 <fileset>
48                                                         <directory>../node_modules</directory>
49                                                         <followSymlinks>false</followSymlinks>
50                                                 </fileset>
51                                                 <!-- eclipse bug build bin folder in basedir -->
52                                                 <fileset>
53                                                         <directory>bin</directory>
54                                                         <followSymlinks>false</followSymlinks>
55                                                 </fileset>
56                                         </filesets>
57                                 </configuration>
58                         </plugin>
59                         <plugin>
60                                 <groupId>de.jacksitlab</groupId>
61                                 <artifactId>frontend-maven-plugin</artifactId>
62                                 <version>1.7.1</version>
63                                 <executions>
64                                         <execution>
65                                                 <id>install node and yarn</id>
66                                                 <goals>
67                                                         <goal>install-node-and-yarn</goal>
68                                                 </goals>
69                                                 <!-- optional: default phase is "generate-resources" -->
70                                                 <phase>initialize</phase>
71                                                 <configuration>
72                                                         <nodeVersion>v8.10.0</nodeVersion>
73                                                         <yarnVersion>v1.12.3</yarnVersion>
74                                                 </configuration>
75                                         </execution>
76                                         <execution>
77                                                 <id>install lerna</id>
78                                                 <goals>
79                                                         <goal>yarn</goal>
80                                                 </goals>
81                                                 <phase>initialize</phase>
82                                                 <configuration>
83                                                         <arguments>add lerna@3.13.1 -W --exact</arguments>
84                                                         <installDirectory>${project.basedir}</installDirectory>
85                                                         <workingDirectory>${project.basedir}/../</workingDirectory>
86                                                 </configuration>
87                                         </execution>
88                                         <execution>
89                                                 <id>exec lerna bootstrap</id>
90                                                 <goals>
91                                                         <goal>lerna</goal>
92                                                 </goals>
93                                                 <phase>initialize</phase>
94                                                 <configuration>
95                                                          <lernaInheritsProxyConfigFromMaven>false</lernaInheritsProxyConfigFromMaven>
96                                                         <arguments>bootstrap</arguments>
97                                                         <installDirectory>${project.basedir}</installDirectory>
98                                                         <workingDirectory>${project.basedir}/../</workingDirectory>
99                                                 </configuration>
100                                         </execution>
101                                         <execution>
102                                                 <id>yarn build</id>
103                                                 <goals>
104                                                         <goal>yarn</goal>
105                                                 </goals>
106                                                 <configuration>
107                                                         <arguments>run build</arguments>
108                                                 </configuration>
109                                         </execution>
110                                 </executions>
111                         </plugin>
112                         <plugin>
113                                 <groupId>org.apache.maven.plugins</groupId>
114                                 <artifactId>maven-jar-plugin</artifactId>
115                         </plugin>
116                         <plugin>
117                                 <groupId>com.google.code.maven-replacer-plugin</groupId>
118                                 <artifactId>replacer</artifactId>
119                                 <version>1.5.2</version>
120                                 <executions>
121                                         <execution>
122                                                 <id>replace version</id>
123                                                 <phase>prepare-package</phase>
124                                                 <goals>
125                                                         <goal>replace</goal>
126                                                 </goals>
127                                         </execution>
128                                 </executions>
129                                 <configuration>
130                                         <basedir>${project.build.directory}/classes/odlux</basedir>
131                                         <includes>
132                                                 <include>app.js</include>
133                                         </includes>
134                                         <replacements>
135                                                 <replacement>
136                                                         <token>##odlux.version##</token>
137                                                         <value>${odlux.version}</value>
138                                                 </replacement>
139                                         </replacements>
140                                 </configuration>
141                         </plugin>
142                 </plugins>
143                 <resources>
144                         <resource>
145                                 <directory>dist</directory>
146                                 <targetPath>odlux</targetPath>
147                         </resource>
148                 </resources>
149         </build>
150         <pluginRepositories>
151                 <pluginRepository>
152                         <id>highstreet repo</id>
153                         <url>https://cloud-highstreet-technologies.com/mvn/</url>
154                         <snapshots>
155                                 <enabled>true</enabled>
156                                 <updatePolicy>always</updatePolicy>
157                         </snapshots>
158                 </pluginRepository>
159         </pluginRepositories>
160 </project>