Fix sonar blocker in ChefAdpater
[appc.git] / appc-asdc-listener / appc-yang-generator / 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     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <artifactId>appc-asdc-listener</artifactId>
8         <groupId>org.openecomp.appc</groupId>
9         <version>1.1.0-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>appc-yang-generator</artifactId>
13     <packaging>jar</packaging>
14
15     <properties>
16         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17     </properties>
18
19     <dependencies>
20         <dependency>
21             <groupId>com.att.eelf</groupId>
22             <artifactId>eelf-core</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.apache.velocity</groupId>
26             <artifactId>velocity</artifactId>
27             <version>1.7</version>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>yang-parser-impl</artifactId>
32             <version>${odl.yangtools.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>junit</groupId>
36             <artifactId>junit</artifactId>
37             <scope>test</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.openecomp.sdc.common</groupId>
41             <artifactId>openecomp-tosca-datatype</artifactId>
42             <version>${toscalib.version}</version>
43         </dependency>
44     </dependencies>
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-shade-plugin</artifactId>
50                 <executions>
51                     <execution>
52                         <phase>package</phase>
53                         <goals>
54                             <goal>shade</goal>
55                         </goals>
56                     </execution>
57                 </executions>
58                 <configuration>
59                     <finalName>${artifactId}-${version}</finalName>
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <groupId>org.apache.maven.plugins</groupId>
64                 <artifactId>maven-compiler-plugin</artifactId>
65                 <version>3.6.1</version>
66                 <configuration>
67                     <source>1.8</source>
68                     <target>1.8</target>
69                 </configuration>
70             </plugin>
71         </plugins>
72     </build>
73
74 </project>