Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | eb27ca3 | 2018-01-12 10:17:57 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | 13c0353 | 2019-02-22 13:37:19 -0800 | [diff] [blame] | 6 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | eb27ca3 | 2018-01-12 10:17:57 -0600 | [diff] [blame] | 7 | Copyright (C) 2017 Amdocs |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
Skip Wonnell | eb27ca3 | 2018-01-12 10:17:57 -0600 | [diff] [blame] | 21 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.appc.parent</groupId> |
| 27 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 28 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 29 | </parent> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 30 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 31 | <artifactId>appc-provider-model</artifactId> |
Patrick Brady | ed1cf1f | 2019-04-26 12:36:25 -0700 | [diff] [blame^] | 32 | <version>1.6.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 33 | <packaging>bundle</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 35 | <name>appc-provider-model</name> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 36 | <build> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 44 | <!-- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> --> |
| 45 | <!-- <Bundle-Version>${project.version}</Bundle-Version> --> |
| 46 | <!-- <Export-Package>org.onap.appc</Export-Package> --> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 47 | </instructions> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | <plugin> |
| 51 | <groupId>org.opendaylight.yangtools</groupId> |
| 52 | <artifactId>yang-maven-plugin</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>org.opendaylight.mdsal</groupId> |
| 56 | <artifactId>maven-sal-api-gen-plugin</artifactId> |
| 57 | <version>${odl.sal.api.gen.plugin.version}</version> |
| 58 | <type>jar</type> |
| 59 | </dependency> |
| 60 | </dependencies> |
| 61 | <executions> |
| 62 | <execution> |
| 63 | <goals> |
| 64 | <goal>generate-sources</goal> |
| 65 | </goals> |
| 66 | <configuration> |
| 67 | <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir> |
| 68 | <codeGenerators> |
| 69 | <generator> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 70 | <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 71 | <outputBaseDir>${salGeneratorPath}</outputBaseDir> |
| 72 | </generator> |
| 73 | </codeGenerators> |
| 74 | <inspectDependencies>true</inspectDependencies> |
| 75 | </configuration> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-install-plugin</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 82 | <executions> |
| 83 | <execution> |
| 84 | <id>yang</id> |
| 85 | <phase>initialize</phase> |
| 86 | <goals> |
| 87 | <goal>install-file</goal> |
| 88 | </goals> |
| 89 | <configuration> |
| 90 | <file>${project.basedir}/src/main/yang/appc-provider-lcm.yang</file> |
| 91 | <groupId>${project.groupId}</groupId> |
| 92 | <artifactId>${project.artifactId}</artifactId> |
| 93 | <version>${project.version}</version> |
| 94 | <packaging>yang</packaging> |
| 95 | </configuration> |
| 96 | </execution> |
| 97 | </executions> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | |
| 101 | </build> |
| 102 | <dependencies> |
| 103 | <dependency> |
| 104 | <groupId>org.opendaylight.mdsal</groupId> |
| 105 | <artifactId>yang-binding</artifactId> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.opendaylight.yangtools</groupId> |
| 109 | <artifactId>yang-common</artifactId> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.opendaylight.mdsal.model</groupId> |
Patrick Brady | 13c0353 | 2019-02-22 13:37:19 -0800 | [diff] [blame] | 113 | <artifactId>ietf-inet-types-2013-07-15</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.opendaylight.mdsal.model</groupId> |
Patrick Brady | 13c0353 | 2019-02-22 13:37:19 -0800 | [diff] [blame] | 117 | <artifactId>ietf-yang-types-20130715</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 118 | </dependency> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>com.google.guava</groupId> |
| 121 | <artifactId>guava</artifactId> |
| 122 | </dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 123 | </dependencies> |
Balaji, Ramya (rb111y) | d1bae6a | 2018-11-19 16:21:08 -0500 | [diff] [blame] | 124 | </project> |