47352410459fe5e27c315b78f9e9dfd1a7762d2c
[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</groupId>
41             <artifactId>openecomp-tosca-lib</artifactId>
42             <version>${toscalib.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.openecomp.sdc.common</groupId>
46             <artifactId>openecomp-tosca-datatype</artifactId>
47             <version>${toscalib.version}</version>
48         </dependency>
49     </dependencies>
50     <build>
51         <plugins>
52             <plugin>
53                 <groupId>org.apache.maven.plugins</groupId>
54                 <artifactId>maven-shade-plugin</artifactId>
55                 <executions>
56                     <execution>
57                         <phase>package</phase>
58                         <goals>
59                             <goal>shade</goal>
60                         </goals>
61                     </execution>
62                 </executions>
63                 <configuration>
64                     <finalName>${artifactId}-${version}</finalName>
65                 </configuration>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-compiler-plugin</artifactId>
70                 <version>3.6.1</version>
71                 <configuration>
72                     <source>1.8</source>
73                     <target>1.8</target>
74                 </configuration>
75             </plugin>
76         </plugins>
77     </build>
78
79 </project>