| <!-- |
| ~ Copyright (c) 2017. Lorem ipsum dolor sit amet, consectetur adipiscing elit. |
| ~ Morbi non lorem porttitor neque feugiat blandit. Ut vitae ipsum eget quam lacinia accumsan. |
| ~ Etiam sed turpis ac ipsum condimentum fringilla. Maecenas magna. |
| ~ Proin dapibus sapien vel ante. Aliquam erat volutpat. Pellentesque sagittis ligula eget metus. |
| ~ Vestibulum commodo. Ut rhoncus gravida arcu. |
| --> |
| |
| <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-runtime</artifactId> |
| <version>1.12-b1</version> |
| </parent> |
| |
| <artifactId>onos-yang-runtime-uils</artifactId> |
| <packaging>jar</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-model</artifactId> |
| <version>1.12-b1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-compiler-api</artifactId> |
| <version>1.12-b1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-runtime-api</artifactId> |
| <version>1.12-b1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onosproject</groupId> |
| <artifactId>onos-yang-compiler-plugin-utils</artifactId> |
| <version>1.12-b1</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>3.0.2</version> |
| <configuration> |
| <skipIfEmpty>true</skipIfEmpty> |
| </configuration> |
| <executions> |
| <execution> |
| <id>default</id> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |