Release appc
[appc.git] / appc-sdc-listener / appc-yang-generator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14       http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 ============LICENSE_END=========================================================
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28         <parent>
29                 <groupId>org.onap.appc.parent</groupId>
30                 <artifactId>binding-parent</artifactId>
31                 <version>2.6.1</version>
32                 <relativePath />
33         </parent>
34         <groupId>org.onap.appc</groupId>
35
36     <artifactId>appc-yang-generator</artifactId>
37     <version>1.6.3</version>
38     <packaging>jar</packaging>
39
40     <properties>
41         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42     </properties>
43
44     <dependencies>
45         <dependency>
46             <groupId>com.att.eelf</groupId>
47             <artifactId>eelf-core</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.apache.velocity</groupId>
51             <artifactId>velocity</artifactId>
52             <version>1.7</version>
53             <exclusions>
54                  <exclusion>
55                       <artifactId>commons-collections</artifactId>
56                       <groupId>commons-collections</groupId>
57                  </exclusion>
58             </exclusions>
59         </dependency>
60         <dependency>
61             <groupId>commons-collections</groupId>
62             <artifactId>commons-collections</artifactId>
63             <version>3.2.2</version>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-parser-impl</artifactId>
68             <!-- This is the last version of this jar to contain the 
69                  org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangStatementSourceImpl -->
70             <version>1.2.2</version>
71         </dependency>
72         <dependency>
73             <groupId>junit</groupId>
74             <artifactId>junit</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.openecomp.sdc.common</groupId>
79             <artifactId>openecomp-tosca-datatype</artifactId>
80             <version>${toscalib.version}</version>
81             <exclusions>
82                 <exclusion>
83                     <groupId>com.datastax.cassandra</groupId>
84                     <artifactId>cassandra-driver-core</artifactId>
85                 </exclusion>
86             </exclusions>
87         </dependency>
88     </dependencies>
89     <build>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-compiler-plugin</artifactId>
94                 <version>3.6.1</version>
95                 <configuration>
96                     <source>1.8</source>
97                     <target>1.8</target>
98                 </configuration>
99             </plugin>
100         </plugins>
101     </build>
102
103 </project>