blob: 62e34b16d9b56a88cb57e0c20ac7088ab706ffcd [file] [log] [blame]
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +05301<?xml version="1.0"?>
Skip Wonnell8e5e3172018-01-11 14:10:33 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Bradya6fbd202019-01-22 14:19:54 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8e5e3172018-01-11 14:10:33 -06007 ================================================================================
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
Skip Wonnell8e5e3172018-01-11 14:10:33 -060022 ============LICENSE_END=========================================================
23-->
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053024<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
26 <modelVersion>4.0.0</modelVersion>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070027 <parent>
28 <groupId>org.onap.appc.parent</groupId>
29 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080030 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070031 <relativePath />
32 </parent>
33 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053034 <artifactId>appc-sequence-generator-model</artifactId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080035 <version>1.5.0-SNAPSHOT</version>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053036 <name>appc-sequence-generator-model</name>
37 <packaging>bundle</packaging>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
43 <extensions>true</extensions>
44 <configuration>
45 <instructions>
Patrick Brady5b817642018-03-22 15:12:48 -070046 <Import-Package>!com.google.common.collect,*</Import-Package>
47 <Embed-Dependency>guava</Embed-Dependency>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053048 </instructions>
49 </configuration>
50 </plugin>
Patrick Brady76706002017-09-04 21:37:25 -070051 <plugin>
52 <groupId>org.opendaylight.yangtools</groupId>
53 <artifactId>yang-maven-plugin</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070054 <dependencies>
55 <dependency>
56 <groupId>org.opendaylight.mdsal</groupId>
57 <artifactId>maven-sal-api-gen-plugin</artifactId>
58 <version>${odl.sal.api.gen.plugin.version}</version>
59 <type>jar</type>
60 </dependency>
61 </dependencies>
62 <executions>
63 <execution>
64 <goals>
65 <goal>generate-sources</goal>
66 </goals>
67 <configuration>
68 <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir>
69 <codeGenerators>
70 <generator>
71 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
72 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
73 </generator>
74 </codeGenerators>
75 <inspectDependencies>true</inspectDependencies>
76 </configuration>
77 </execution>
78 </executions>
79 </plugin>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053080 </plugins>
81 </build>
82
83 <dependencies>
84 <dependency>
85 <groupId>junit</groupId>
86 <artifactId>junit</artifactId>
87 <scope>test</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.opendaylight.mdsal</groupId>
91 <artifactId>yang-binding</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.opendaylight.yangtools</groupId>
95 <artifactId>yang-common</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.opendaylight.mdsal.model</groupId>
Patrick Brady13c03532019-02-22 13:37:19 -080099 <artifactId>ietf-inet-types-2013-07-15</artifactId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530100 </dependency>
101 <dependency>
102 <groupId>org.opendaylight.mdsal.model</groupId>
Patrick Brady13c03532019-02-22 13:37:19 -0800103 <artifactId>ietf-yang-types-20130715</artifactId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530104 </dependency>
105 </dependencies>
106</project>