Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 72b2df2 | 2017-08-03 18:48:28 -0700 | [diff] [blame] | 2 | ~ Copyright 2017-present Open Networking Foundation |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 3 | ~ |
| 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
| 7 | ~ |
| 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
| 15 | --> |
Gaurav Agrawal | 4efc8cc | 2017-02-09 18:41:31 +0530 | [diff] [blame] | 16 | |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
Gaurav Agrawal | a599a8f | 2017-01-10 20:45:27 +0530 | [diff] [blame] | 24 | <artifactId>onos-yang-tools</artifactId> |
ONOS Jenkins User | 709ef51 | 2018-07-02 18:54:42 +0000 | [diff] [blame^] | 25 | <version>2.5</version> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-yang-runtime</artifactId> |
Bharat saraswal | a542a36 | 2017-03-02 21:43:59 +0530 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 30 | |
| 31 | <dependencies> |
| 32 | <dependency> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 33 | <groupId>commons-io</groupId> |
| 34 | <artifactId>commons-io</artifactId> |
| 35 | <version>2.4</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.slf4j</groupId> |
| 39 | <artifactId>slf4j-api</artifactId> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 40 | </dependency> |
Gaurav Agrawal | 4efc8cc | 2017-02-09 18:41:31 +0530 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>org.onosproject</groupId> |
| 43 | <artifactId>onos-yang-model</artifactId> |
Yuta HIGUCHI | 1bc3c23 | 2018-05-11 11:36:00 -0700 | [diff] [blame] | 44 | <version>${project.version}</version> |
Gaurav Agrawal | 4efc8cc | 2017-02-09 18:41:31 +0530 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
Bharat saraswal | 7d9244e | 2017-03-03 11:38:25 +0530 | [diff] [blame] | 48 | <artifactId>onos-yang-compiler-tool</artifactId> |
Yuta HIGUCHI | 1bc3c23 | 2018-05-11 11:36:00 -0700 | [diff] [blame] | 49 | <version>${project.version}</version> |
Gaurav Agrawal | 4efc8cc | 2017-02-09 18:41:31 +0530 | [diff] [blame] | 50 | </dependency> |
| 51 | <dependency> |
Bharat saraswal | 7d9244e | 2017-03-03 11:38:25 +0530 | [diff] [blame] | 52 | <groupId>org.osgi</groupId> |
| 53 | <artifactId>org.osgi.core</artifactId> |
Gaurav Agrawal | 4efc8cc | 2017-02-09 18:41:31 +0530 | [diff] [blame] | 54 | </dependency> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 55 | </dependencies> |
| 56 | |
| 57 | <build> |
| 58 | <plugins> |
| 59 | <plugin> |
Gaurav Agrawal | dc38b80 | 2017-02-13 14:52:14 +0530 | [diff] [blame] | 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-yang-compiler-maven-plugin</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | <configuration> |
| 64 | <yangFilesDir>src/test/resources</yangFilesDir> |
| 65 | </configuration> |
| 66 | <executions> |
| 67 | <execution> |
| 68 | <id>default</id> |
| 69 | <goals> |
| 70 | <goal>yang2java</goal> |
| 71 | </goals> |
| 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | <plugin> |
Bharat saraswal | a542a36 | 2017-03-02 21:43:59 +0530 | [diff] [blame] | 76 | <groupId>org.apache.felix</groupId> |
| 77 | <artifactId>maven-bundle-plugin</artifactId> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 78 | <configuration> |
Bharat saraswal | a542a36 | 2017-03-02 21:43:59 +0530 | [diff] [blame] | 79 | <instructions> |
| 80 | <Export-Package> |
Gaurav Agrawal | 0a9640d | 2017-03-03 19:17:33 +0530 | [diff] [blame] | 81 | org.onosproject.yang.runtime.*, |
Bharat saraswal | b3e2522 | 2017-03-06 17:54:09 +0530 | [diff] [blame] | 82 | org.onosproject.yang.compiler.datamodel.*, |
| 83 | org.onosproject.yang.compiler.translator.*, |
| 84 | org.onosproject.yang.compiler.utils.*, |
| 85 | org.onosproject.yang.compiler.linker.*, |
| 86 | org.onosproject.yang.compiler.tool.*, |
| 87 | org.onosproject.yang.compiler.parser.*, |
| 88 | org.antlr.v4.*, |
Bharat saraswal | a542a36 | 2017-03-02 21:43:59 +0530 | [diff] [blame] | 89 | </Export-Package> |
Bharat saraswal | a542a36 | 2017-03-02 21:43:59 +0530 | [diff] [blame] | 90 | </instructions> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 91 | </configuration> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 92 | </plugin> |
Gaurav Agrawal | 0a9640d | 2017-03-03 19:17:33 +0530 | [diff] [blame] | 93 | <!-- |
| 94 | Cleans up generated test artifacts which get included as a source |
| 95 | directory, but which we don't want as part of the bundle. |
| 96 | --> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-antrun-plugin</artifactId> |
| 100 | <version>1.8</version> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <phase>prepare-package</phase> |
| 104 | <goals> |
| 105 | <goal>run</goal> |
| 106 | </goals> |
| 107 | <configuration> |
| 108 | <target> |
Yuta HIGUCHI | 5c8fa43 | 2018-01-26 18:56:40 -0800 | [diff] [blame] | 109 | <delete includeemptydirs="true" failonerror="false"> |
Vidyashree Rama | 3c58673 | 2017-05-12 19:48:07 +0530 | [diff] [blame] | 110 | <fileset |
| 111 | dir="${project.build.outputDirectory}/org/onosproject/yang/gen" |
| 112 | includes="**/*"/> |
Gaurav Agrawal | 0a9640d | 2017-03-03 19:17:33 +0530 | [diff] [blame] | 113 | </delete> |
Yuta HIGUCHI | 5c8fa43 | 2018-01-26 18:56:40 -0800 | [diff] [blame] | 114 | <delete includeemptydirs="true" failonerror="false"> |
Vidyashree Rama | 3c58673 | 2017-05-12 19:48:07 +0530 | [diff] [blame] | 115 | <fileset |
| 116 | dir="${project.build.outputDirectory}/yang" |
| 117 | includes="**/*"/> |
Bharat saraswal | 285358c | 2017-03-16 15:08:09 +0530 | [diff] [blame] | 118 | </delete> |
Yuta HIGUCHI | 5c8fa43 | 2018-01-26 18:56:40 -0800 | [diff] [blame] | 119 | <delete includeemptydirs="true" failonerror="false"> |
Vidyashree Rama | 3c58673 | 2017-05-12 19:48:07 +0530 | [diff] [blame] | 120 | <fileset |
| 121 | dir="${project.build.outputDirectory}/Temp" |
| 122 | includes="**/*"/> |
Bharat saraswal | 285358c | 2017-03-16 15:08:09 +0530 | [diff] [blame] | 123 | </delete> |
Gaurav Agrawal | 0a9640d | 2017-03-03 19:17:33 +0530 | [diff] [blame] | 124 | </target> |
| 125 | </configuration> |
| 126 | </execution> |
| 127 | </executions> |
| 128 | </plugin> |
Thomas Vachuska | f40fb57 | 2016-11-20 11:43:57 -0800 | [diff] [blame] | 129 | </plugins> |
| 130 | </build> |
sonugupta-huawei | 4f24d8b | 2018-01-02 18:24:16 +0530 | [diff] [blame] | 131 | </project> |