Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Skip Wonnell | 8e5e317 | 2018-01-11 14:10:33 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 8e5e317 | 2018-01-11 14:10:33 -0600 | [diff] [blame] | 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 | |
Skip Wonnell | 8e5e317 | 2018-01-11 14:10:33 -0600 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 24 | <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> |
| 27 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 28 | <groupId>org.onap.appc</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 29 | <artifactId>appc-sequence-generator</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 30 | <version>1.4.0-SNAPSHOT</version> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 31 | </parent> |
| 32 | <artifactId>appc-sequence-generator-model</artifactId> |
| 33 | <name>appc-sequence-generator-model</name> |
| 34 | <packaging>bundle</packaging> |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.felix</groupId> |
| 39 | <artifactId>maven-bundle-plugin</artifactId> |
| 40 | <extensions>true</extensions> |
| 41 | <configuration> |
| 42 | <instructions> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 43 | <Import-Package>!com.google.common.collect,*</Import-Package> |
| 44 | <Embed-Dependency>guava</Embed-Dependency> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 45 | </instructions> |
| 46 | </configuration> |
| 47 | </plugin> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 48 | <plugin> |
| 49 | <groupId>org.opendaylight.yangtools</groupId> |
| 50 | <artifactId>yang-maven-plugin</artifactId> |
| 51 | <version>${odl.yangtools.version}</version> |
| 52 | <dependencies> |
| 53 | <dependency> |
| 54 | <groupId>org.opendaylight.mdsal</groupId> |
| 55 | <artifactId>maven-sal-api-gen-plugin</artifactId> |
| 56 | <version>${odl.sal.api.gen.plugin.version}</version> |
| 57 | <type>jar</type> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | <executions> |
| 61 | <execution> |
| 62 | <goals> |
| 63 | <goal>generate-sources</goal> |
| 64 | </goals> |
| 65 | <configuration> |
| 66 | <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir> |
| 67 | <codeGenerators> |
| 68 | <generator> |
| 69 | <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass> |
| 70 | <outputBaseDir>${salGeneratorPath}</outputBaseDir> |
| 71 | </generator> |
| 72 | </codeGenerators> |
| 73 | <inspectDependencies>true</inspectDependencies> |
| 74 | </configuration> |
| 75 | </execution> |
| 76 | </executions> |
| 77 | </plugin> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 78 | </plugins> |
| 79 | </build> |
| 80 | |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>junit</groupId> |
| 84 | <artifactId>junit</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.opendaylight.mdsal</groupId> |
| 89 | <artifactId>yang-binding</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.opendaylight.yangtools</groupId> |
| 93 | <artifactId>yang-common</artifactId> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 97 | <artifactId>ietf-inet-types</artifactId> |
| 98 | <version>${odl.ietf-inet-types.version}</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 102 | <artifactId>ietf-yang-types</artifactId> |
| 103 | <version>${odl.ietf-yang-types.version}</version> |
| 104 | </dependency> |
| 105 | </dependencies> |
| 106 | </project> |