| <!-- |
| ~ Copyright 2017-present Open Networking Foundation |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| --> |
| |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-tools</artifactId> |
| <version>2.02-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>onos-yang-runtime</artifactId> |
| <packaging>bundle</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>2.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.21</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-model</artifactId> |
| <version>2.02-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-compiler-tool</artifactId> |
| <version>2.02-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>5.0.0</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>RELEASE</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-compiler-maven-plugin</artifactId> |
| <version>${project.version}</version> |
| <configuration> |
| <yangFilesDir>src/test/resources</yangFilesDir> |
| </configuration> |
| <executions> |
| <execution> |
| <id>default</id> |
| <goals> |
| <goal>yang2java</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <configuration> |
| <instructions> |
| <Export-Package> |
| org.onosproject.yang.runtime.*, |
| org.onosproject.yang.compiler.datamodel.*, |
| org.onosproject.yang.compiler.translator.*, |
| org.onosproject.yang.compiler.utils.*, |
| org.onosproject.yang.compiler.linker.*, |
| org.onosproject.yang.compiler.tool.*, |
| org.onosproject.yang.compiler.parser.*, |
| org.antlr.v4.*, |
| </Export-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| <!-- |
| Cleans up generated test artifacts which get included as a source |
| directory, but which we don't want as part of the bundle. |
| --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.8</version> |
| <executions> |
| <execution> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <target> |
| <delete includeemptydirs="true"> |
| <fileset |
| dir="${project.build.outputDirectory}/org/onosproject/yang/gen" |
| includes="**/*"/> |
| </delete> |
| <delete includeemptydirs="true"> |
| <fileset |
| dir="${project.build.outputDirectory}/yang" |
| includes="**/*"/> |
| </delete> |
| <delete includeemptydirs="true" |
| failonerror="false"> |
| <fileset |
| dir="${project.build.outputDirectory}/Temp" |
| includes="**/*"/> |
| </delete> |
| </target> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |