Update INFO.yaml
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-be / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7
8     <artifactId>sdc-workflow-designer-be</artifactId>
9
10     <parent>
11         <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
12         <artifactId>sdc-workflow-designer-parent</artifactId>
13         <version>1.11.1-SNAPSHOT</version>
14     </parent>
15
16     <properties>
17         <spring.boot.version>2.2.13.RELEASE</spring.boot.version>
18         <org.springframework.version>5.2.22.RELEASE</org.springframework.version>
19         <mapstruct.version>1.3.1.Final</mapstruct.version>
20         <lombok.version>1.18.0</lombok.version>
21         <springfox.version>3.0.0</springfox.version>
22         <jaxb.api.version>2.3.0</jaxb.api.version>
23         <org.glassfish.version>4.0.2</org.glassfish.version>
24         <mockito.version>3.7.7</mockito.version>
25         <springframework.plugin.version>2.0.0.RELEASE</springframework.plugin.version>
26         <zusammen.version>1.0.2</zusammen.version>
27         <sdc-be-common.version>1.7.1</sdc-be-common.version>
28         <junitJupiter.version>5.9.1</junitJupiter.version>
29         <junit.platform.version>1.9.0</junit.platform.version>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.mockito</groupId>
36                 <artifactId>mockito-core</artifactId>
37                 <version>${mockito.version}</version>
38                 <scope>test</scope>
39             </dependency>
40             <dependency>
41                 <groupId>org.springframework.boot</groupId>
42                 <artifactId>spring-boot-dependencies</artifactId>
43                 <version>${spring.boot.version}</version>
44                 <type>pom</type>
45                 <scope>import</scope>
46             </dependency>
47         </dependencies>
48     </dependencyManagement>
49
50     <dependencies>
51         <dependency>
52             <groupId>org.codehaus.janino</groupId>
53             <artifactId>janino</artifactId>
54             <version>3.0.16</version>
55             <scope>runtime</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.glassfish</groupId>
59             <artifactId>jakarta.el</artifactId>
60             <version>${org.glassfish.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.springframework</groupId>
64             <artifactId>spring-beans</artifactId>
65             <version>${org.springframework.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.springframework</groupId>
69             <artifactId>spring-tx</artifactId>
70             <version>${org.springframework.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.springframework</groupId>
74             <artifactId>spring-context</artifactId>
75             <version>${org.springframework.version}</version>
76             <exclusions>
77                 <exclusion>
78                     <groupId>org.springframework</groupId>
79                     <artifactId>spring-aop</artifactId>
80                 </exclusion>
81             </exclusions>
82         </dependency>
83         <dependency>
84             <groupId>org.springframework</groupId>
85             <artifactId>spring-webmvc</artifactId>
86             <version>${org.springframework.version}</version>
87             <exclusions>
88                 <exclusion>
89                     <groupId>org.springframework</groupId>
90                     <artifactId>spring-aop</artifactId>
91                 </exclusion>
92             </exclusions>
93         </dependency>
94         <!-- bridge jck to slf4j -->
95         <dependency>
96             <groupId>org.slf4j</groupId>
97             <artifactId>jcl-over-slf4j</artifactId>
98             <version>1.7.36</version>
99         </dependency>
100
101         <dependency>
102             <groupId>org.springframework</groupId>
103             <artifactId>spring-core</artifactId>
104             <version>${org.springframework.version}</version>
105             <exclusions>
106                 <exclusion>
107                     <groupId>org.springframework</groupId>
108                     <artifactId>spring-jcl</artifactId>
109                 </exclusion>
110             </exclusions>
111         </dependency>
112         <dependency>
113             <groupId>org.springframework</groupId>
114             <artifactId>spring-test</artifactId>
115             <version>${org.springframework.version}</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.springframework</groupId>
120             <artifactId>spring-jcl</artifactId>
121             <version>${org.springframework.version}</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.springframework</groupId>
126             <artifactId>spring-aop</artifactId>
127             <version>${org.springframework.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.springframework</groupId>
131             <artifactId>spring-expression</artifactId>
132             <version>${org.springframework.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.springframework</groupId>
136             <artifactId>spring-dao</artifactId>
137             <version>2.0.8</version>
138             <exclusions>
139                 <exclusion>
140                     <groupId>javax.servlet</groupId>
141                     <artifactId>servlet-api</artifactId>
142                 </exclusion>
143             </exclusions>
144         </dependency>
145         <dependency>
146             <groupId>org.springframework</groupId>
147             <artifactId>spring-web</artifactId>
148             <version>${org.springframework.version}</version>
149             <exclusions>
150                 <exclusion>
151                     <groupId>org.springframework</groupId>
152                     <artifactId>spring-beans</artifactId>
153                 </exclusion>
154                 <exclusion>
155                     <groupId>org.springframework</groupId>
156                     <artifactId>spring-core</artifactId>
157                 </exclusion>
158             </exclusions>
159         </dependency>
160         <dependency>
161             <groupId>org.springframework.boot</groupId>
162             <artifactId>spring-boot-starter-web</artifactId>
163             <exclusions>
164                 <exclusion>
165                     <groupId>org.springframework.boot</groupId>
166                     <artifactId>spring-boot-starter-tomcat</artifactId>
167                 </exclusion>
168                 <exclusion>
169                     <groupId>org.springframework</groupId>
170                     <artifactId>spring-web</artifactId>
171                 </exclusion>
172                 <exclusion>
173                     <groupId>org.springframework</groupId>
174                     <artifactId>spring-core</artifactId>
175                 </exclusion>
176                 <exclusion>
177                     <groupId>org.springframework</groupId>
178                     <artifactId>spring-webmvc</artifactId>
179                 </exclusion>
180             </exclusions>
181         </dependency>
182         <dependency>
183             <groupId>org.eclipse.jetty</groupId>
184             <artifactId>jetty-server</artifactId>
185             <version>${jetty.version}</version>
186             <exclusions>
187                 <exclusion>
188                     <groupId>org.eclipse.jetty</groupId>
189                     <artifactId>jetty-http</artifactId>
190                 </exclusion>
191                 <exclusion>
192                     <groupId>org.eclipse.jetty</groupId>
193                     <artifactId>jetty-io</artifactId>
194                 </exclusion>
195             </exclusions>
196         </dependency>
197         <dependency>
198             <groupId>org.eclipse.jetty</groupId>
199             <artifactId>jetty-util</artifactId>
200             <version>${jetty.version}</version>
201         </dependency>
202         <dependency>
203             <groupId>org.eclipse.jetty</groupId>
204             <artifactId>jetty-webapp</artifactId>
205             <version>${jetty.version}</version>
206             <scope>runtime</scope>
207             <exclusions>
208                 <exclusion>
209                     <groupId>org.eclipse.jetty</groupId>
210                     <artifactId>jetty-xml</artifactId>
211                 </exclusion>
212                 <exclusion>
213                     <groupId>org.eclipse.jetty</groupId>
214                     <artifactId>jetty-servlet</artifactId>
215                 </exclusion>
216             </exclusions>
217         </dependency>
218         <dependency>
219             <groupId>org.eclipse.jetty</groupId>
220             <artifactId>jetty-servlet</artifactId>
221             <version>${jetty.version}</version>
222             <scope>runtime</scope>
223             <exclusions>
224                 <exclusion>
225                     <groupId>org.eclipse.jetty</groupId>
226                     <artifactId>jetty-security</artifactId>
227                 </exclusion>
228                 <exclusion>
229                     <groupId>org.eclipse.jetty</groupId>
230                     <artifactId>jetty-util-ajax</artifactId>
231                 </exclusion>
232             </exclusions>
233         </dependency>
234         <dependency>
235             <groupId>org.eclipse.jetty</groupId>
236             <artifactId>jetty-security</artifactId>
237             <version>${jetty.version}</version>
238             <scope>runtime</scope>
239         </dependency>
240         <dependency>
241             <groupId>org.eclipse.jetty</groupId>
242             <artifactId>jetty-http</artifactId>
243             <version>${jetty.version}</version>
244             <scope>runtime</scope>
245             <exclusions>
246                 <exclusion>
247                     <groupId>org.eclipse.jetty</groupId>
248                     <artifactId>jetty-io</artifactId>
249                 </exclusion>
250             </exclusions>
251         </dependency>
252         <dependency>
253             <groupId>org.eclipse.jetty</groupId>
254             <artifactId>jetty-io</artifactId>
255             <version>${jetty.version}</version>
256             <scope>runtime</scope>
257         </dependency>
258         <dependency>
259             <groupId>org.springframework.boot</groupId>
260             <artifactId>spring-boot-starter-jetty</artifactId>
261             <exclusions>
262                 <exclusion>
263                     <groupId>org.glassfish</groupId>
264                     <artifactId>jakarta.el</artifactId>
265                 </exclusion>
266                 <exclusion>
267                     <groupId>org.eclipse.jetty</groupId>
268                     <artifactId>jetty-servlets</artifactId>
269                 </exclusion>
270                 <exclusion>
271                     <groupId>org.eclipse.jetty</groupId>
272                     <artifactId>jetty-webapp</artifactId>
273                 </exclusion>
274                 <exclusion>
275                     <groupId>org.eclipse.jetty.websocket</groupId>
276                     <artifactId>websocket-server</artifactId>
277                 </exclusion>
278                 <exclusion>
279                     <groupId>org.eclipse.jetty.websocket</groupId>
280                     <artifactId>javax-websocket-server-impl</artifactId>
281                 </exclusion>
282             </exclusions>
283         </dependency>
284         <dependency>
285             <groupId>org.springframework.boot</groupId>
286             <artifactId>spring-boot-starter-validation</artifactId>
287             <exclusions>
288                 <exclusion>
289                     <groupId>org.glassfish</groupId>
290                     <artifactId>jakarta.el</artifactId>
291                 </exclusion>
292             </exclusions>
293         </dependency>
294         <dependency>
295             <groupId>org.springframework.boot</groupId>
296             <artifactId>spring-boot-starter-data-cassandra</artifactId>
297             <exclusions>
298                 <exclusion>
299                     <artifactId>HdrHistogram</artifactId>
300                     <groupId>org.hdrhistogram</groupId>
301                 </exclusion>
302                 <exclusion>
303                     <artifactId>asm</artifactId>
304                     <groupId>org.ow2.asm</groupId>
305                 </exclusion>
306                 <exclusion>
307                     <artifactId>asm-analysis</artifactId>
308                     <groupId>org.ow2.asm</groupId>
309                 </exclusion>
310                 <exclusion>
311                     <artifactId>asm-commons</artifactId>
312                     <groupId>org.ow2.asm</groupId>
313                 </exclusion>
314                 <exclusion>
315                     <artifactId>asm-tree</artifactId>
316                     <groupId>org.ow2.asm</groupId>
317                 </exclusion>
318                 <exclusion>
319                     <groupId>com.github.jnr</groupId>
320                     <artifactId>jnr-posix</artifactId>
321                 </exclusion>
322                 <exclusion>
323                     <groupId>io.netty</groupId>
324                     <artifactId>netty-handler</artifactId>
325                 </exclusion>
326                 <exclusion>
327                     <groupId>org.springframework</groupId>
328                     <artifactId>spring-tx</artifactId>
329                 </exclusion>
330                 <exclusion>
331                     <groupId>org.springframework</groupId>
332                     <artifactId>spring-context</artifactId>
333                 </exclusion>
334                 <exclusion>
335                     <groupId>org.springframework</groupId>
336                     <artifactId>spring-beans</artifactId>
337                 </exclusion>
338                 <exclusion>
339                     <groupId>org.springframework</groupId>
340                     <artifactId>spring-core</artifactId>
341                 </exclusion>
342                 <exclusion>
343                     <groupId>org.springframework</groupId>
344                     <artifactId>spring-expression</artifactId>
345                 </exclusion>
346             </exclusions>
347         </dependency>
348         <dependency>
349             <groupId>io.netty</groupId>
350             <artifactId>netty-handler</artifactId>
351             <version>4.1.80.Final</version>
352         </dependency>
353         <dependency>
354             <groupId>org.springframework.boot</groupId>
355             <artifactId>spring-boot-devtools</artifactId>
356             <scope>runtime</scope>
357             <exclusions>
358                 <exclusion>
359                     <groupId>org.springframework</groupId>
360                     <artifactId>spring-core</artifactId>
361                 </exclusion>
362                 <exclusion>
363                     <groupId>org.springframework</groupId>
364                     <artifactId>spring-context</artifactId>
365                 </exclusion>
366             </exclusions>
367         </dependency>
368         <dependency>
369             <groupId>org.springframework.boot</groupId>
370             <artifactId>spring-boot-starter-test</artifactId>
371             <scope>test</scope>
372             <exclusions>
373                 <exclusion>
374                     <artifactId>asm</artifactId>
375                     <groupId>org.ow2.asm</groupId>
376                 </exclusion>
377                 <exclusion>
378                     <groupId>junit</groupId>
379                     <artifactId>junit</artifactId>
380                 </exclusion>
381                 <exclusion>
382                     <groupId>org.springframework</groupId>
383                     <artifactId>spring-core</artifactId>
384                 </exclusion>
385                 <exclusion>
386                     <groupId>org.springframework</groupId>
387                     <artifactId>spring-test</artifactId>
388                 </exclusion>
389             </exclusions>
390         </dependency>
391         <dependency>
392             <groupId>io.springfox</groupId>
393             <artifactId>springfox-boot-starter</artifactId>
394             <version>${springfox.version}</version>
395             <exclusions>
396                 <exclusion>
397                     <groupId>org.springframework.plugin</groupId>
398                     <artifactId>spring-plugin-core</artifactId>
399                 </exclusion>
400                 <exclusion>
401                     <groupId>org.springframework.plugin</groupId>
402                     <artifactId>spring-plugin-metadata</artifactId>
403                 </exclusion>
404             </exclusions>
405         </dependency>
406         <dependency>
407             <groupId>org.springframework.plugin</groupId>
408             <artifactId>spring-plugin-core</artifactId>
409             <version>${springframework.plugin.version}</version>
410             <exclusions>
411                 <exclusion>
412                     <groupId>org.springframework</groupId>
413                     <artifactId>spring-beans</artifactId>
414                 </exclusion>
415                 <exclusion>
416                     <groupId>org.springframework</groupId>
417                     <artifactId>spring-context</artifactId>
418                 </exclusion>
419                 <exclusion>
420                     <groupId>org.springframework</groupId>
421                     <artifactId>spring-aop</artifactId>
422                 </exclusion>
423             </exclusions>
424         </dependency>
425         <dependency>
426             <groupId>org.springframework.plugin</groupId>
427             <artifactId>spring-plugin-metadata</artifactId>
428             <version>${springframework.plugin.version}</version>
429         </dependency>
430         <dependency>
431             <groupId>org.openecomp.sdc</groupId>
432             <artifactId>openecomp-sdc-logging-api</artifactId>
433             <version>${onap.version}</version>
434         </dependency>
435         <dependency>
436             <groupId>org.openecomp.sdc</groupId>
437             <artifactId>openecomp-sdc-logging-spring</artifactId>
438             <version>${onap.version}</version>
439         </dependency>
440         <dependency>
441             <groupId>org.openecomp.sdc</groupId>
442             <artifactId>openecomp-sdc-logging-core</artifactId>
443             <version>${onap.version}</version>
444             <scope>runtime</scope>
445         </dependency>
446         <dependency>
447             <groupId>ch.qos.logback</groupId>
448             <artifactId>logback-classic</artifactId>
449             <version>1.2.11</version>
450             <scope>runtime</scope>
451         </dependency>
452         <dependency>
453             <groupId>org.apache.httpcomponents</groupId>
454             <artifactId>httpclient</artifactId>
455             <version>4.5.13</version>
456             <exclusions>
457                 <exclusion>
458                     <artifactId>commons-codec</artifactId>
459                     <groupId>commons-codec</groupId>
460                 </exclusion>
461             </exclusions>
462         </dependency>
463         <dependency>
464             <groupId>org.mapstruct</groupId>
465             <artifactId>mapstruct</artifactId>
466             <version>${mapstruct.version}</version>
467         </dependency>
468         <dependency>
469             <groupId>org.mapstruct</groupId>
470             <artifactId>mapstruct-processor</artifactId>
471             <version>${mapstruct.version}</version>
472             <scope>provided</scope>
473         </dependency>
474         <dependency>
475             <groupId>org.projectlombok</groupId>
476             <artifactId>lombok</artifactId>
477             <version>${lombok.version}</version>
478             <scope>provided</scope>
479         </dependency>
480         <dependency>
481             <groupId>org.springframework.boot</groupId>
482             <artifactId>spring-boot-starter-actuator</artifactId>
483             <scope>provided</scope>
484             <exclusions>
485                 <exclusion>
486                     <groupId>org.springframework</groupId>
487                     <artifactId>spring-core</artifactId>
488                 </exclusion>
489                 <exclusion>
490                     <groupId>org.springframework</groupId>
491                     <artifactId>spring-context</artifactId>
492                 </exclusion>
493             </exclusions>
494         </dependency>
495         <dependency>
496             <groupId>org.apache.commons</groupId>
497             <artifactId>commons-text</artifactId>
498             <version>1.3</version>
499         </dependency>
500         <dependency>
501             <groupId>commons-io</groupId>
502             <artifactId>commons-io</artifactId>
503             <version>2.8.0</version>
504         </dependency>
505         <dependency>
506             <groupId>commons-codec</groupId>
507             <artifactId>commons-codec</artifactId>
508             <version>1.15</version>
509         </dependency>
510         <dependency>
511             <groupId>org.onap.sdc.sdc-be-common</groupId>
512             <artifactId>session-lib</artifactId>
513             <version>${sdc-be-common.version}</version>
514             <exclusions>
515                 <exclusion>
516                     <artifactId>objenesis</artifactId>
517                     <groupId>org.objenesis</groupId>
518                 </exclusion>
519                 <exclusion>
520                     <groupId>junit</groupId>
521                     <artifactId>junit</artifactId>
522                 </exclusion>
523             </exclusions>
524         </dependency>
525
526         <dependency>
527             <groupId>org.junit.vintage</groupId>
528             <artifactId>junit-vintage-engine</artifactId>
529             <version>${junitJupiter.version}</version>
530             <scope>test</scope>
531         </dependency>
532         <dependency>
533             <groupId>org.junit.platform</groupId>
534             <artifactId>junit-platform-commons</artifactId>
535             <version>${junit.platform.version}</version>
536             <scope>test</scope>
537         </dependency>
538         <dependency>
539             <groupId>org.junit.platform</groupId>
540             <artifactId>junit-platform-engine</artifactId>
541             <version>${junit.platform.version}</version>
542             <scope>test</scope>
543         </dependency>
544
545         <dependency>
546             <groupId>org.onap.sdc.sdc-be-common</groupId>
547             <artifactId>versioning-lib</artifactId>
548             <version>${sdc-be-common.version}</version>
549             <exclusions>
550                 <exclusion>
551                     <groupId>org.springframework.boot</groupId>
552                     <artifactId>spring-boot-starter-data-cassandra</artifactId>
553                 </exclusion>
554             </exclusions>
555         </dependency>
556         <dependency>
557             <groupId>org.onap.sdc.sdc-be-common</groupId>
558             <artifactId>zusammen-lib</artifactId>
559             <version>${sdc-be-common.version}</version>
560             <exclusions>
561                 <exclusion>
562                     <groupId>org.springframework.boot</groupId>
563                     <artifactId>spring-boot-starter-data-cassandra</artifactId>
564                 </exclusion>
565                 <exclusion>
566                     <artifactId>jnr-posix</artifactId>
567                     <groupId>com.github.jnr</groupId>
568                 </exclusion>
569                 <exclusion>
570                     <artifactId>jnr-ffi</artifactId>
571                     <groupId>com.github.jnr</groupId>
572                 </exclusion>
573                 <exclusion>
574                     <artifactId>zusammen-sdk</artifactId>
575                     <groupId>com.amdocs.zusammen</groupId>
576                 </exclusion>
577                 <exclusion>
578                     <artifactId>zusammen-commons-configuration</artifactId>
579                     <groupId>com.amdocs.zusammen</groupId>
580                 </exclusion>
581                 <exclusion>
582                     <groupId>io.netty</groupId>
583                     <artifactId>netty-handler</artifactId>
584                 </exclusion>
585             </exclusions>
586         </dependency>
587         <dependency>
588             <groupId>javax.xml.bind</groupId>
589             <artifactId>jaxb-api</artifactId>
590             <version>${jaxb.api.version}</version>
591         </dependency>
592         <dependency>
593             <groupId>com.amdocs.zusammen</groupId>
594             <artifactId>zusammen-sdk</artifactId>
595             <version>${zusammen.version}</version>
596         </dependency>
597         <dependency>
598             <groupId>com.amdocs.zusammen</groupId>
599             <artifactId>zusammen-commons-configuration</artifactId>
600             <version>${zusammen.version}</version>
601         </dependency>
602     </dependencies>
603
604     <build>
605         <plugins>
606             <plugin>
607                 <groupId>org.springframework.boot</groupId>
608                 <artifactId>spring-boot-maven-plugin</artifactId>
609                 <version>${spring.boot.version}</version>
610                 <executions>
611                     <execution>
612                         <goals>
613                             <goal>repackage</goal>
614                         </goals>
615                     </execution>
616                 </executions>
617             </plugin>
618             <plugin>
619                 <groupId>org.apache.maven.plugins</groupId>
620                 <artifactId>maven-surefire-plugin</artifactId>
621                 <version>2.22.2</version>
622                 <dependencies>
623                     <dependency>
624                         <groupId>org.apache.maven.surefire</groupId>
625                         <artifactId>surefire-junit-platform</artifactId>
626                         <version>2.22.2</version>
627                     </dependency>
628                 </dependencies>
629             </plugin>
630         </plugins>
631     </build>
632
633     <profiles>
634         <profile>
635             <id>docker</id>
636             <activation>
637                 <activeByDefault>false</activeByDefault>
638             </activation>
639             <build>
640                 <plugins>
641                     <plugin>
642                         <groupId>org.apache.maven.plugins</groupId>
643                         <artifactId>maven-resources-plugin</artifactId>
644                         <version>3.2.0</version>
645                         <executions>
646                             <execution>
647                                 <id>copy-resources-docker</id>
648                                 <phase>install</phase>
649                                 <goals>
650                                     <goal>copy-resources</goal>
651                                 </goals>
652                                 <configuration>
653                                     <outputDirectory>${basedir}/docker</outputDirectory>
654                                     <resources>
655                                         <resource>
656                                             <directory>${project.build.directory}</directory>
657                                             <include>${project.build.finalName}.jar</include>
658                                         </resource>
659                                     </resources>
660                                 </configuration>
661                             </execution>
662                         </executions>
663                     </plugin>
664                     <plugin>
665                         <groupId>io.fabric8</groupId>
666                         <artifactId>docker-maven-plugin</artifactId>
667                         <configuration>
668                             <apiVersion>${docker.api.version}</apiVersion>
669                             <images>
670                                 <image>
671                                     <name>onap/sdc-workflow-backend</name>
672                                     <build>
673                                         <tags>
674                                             <tag>latest</tag>
675                                             <tag>${project.docker.latesttagtimestamp.version}</tag>
676                                             <tag>${project.docker.latesttag.version}</tag>
677                                         </tags>
678                                         <dockerFileDir>${project.basedir}/docker</dockerFileDir>
679                                         <args>
680                                             <ARTIFACT>${project.build.finalName}.jar</ARTIFACT>
681                                         </args>
682                                     </build>
683                                 </image>
684                             </images>
685                         </configuration>
686                     </plugin>
687                 </plugins>
688             </build>
689         </profile>
690     </profiles>
691
692 </project>