Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright (c) 2017. Lorem ipsum dolor sit amet, consectetur adipiscing elit. |
| 3 | ~ Morbi non lorem porttitor neque feugiat blandit. Ut vitae ipsum eget quam lacinia accumsan. |
| 4 | ~ Etiam sed turpis ac ipsum condimentum fringilla. Maecenas magna. |
| 5 | ~ Proin dapibus sapien vel ante. Aliquam erat volutpat. Pellentesque sagittis ligula eget metus. |
| 6 | ~ Vestibulum commodo. Ut rhoncus gravida arcu. |
| 7 | --> |
| 8 | |
| 9 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 10 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 12 | <modelVersion>4.0.0</modelVersion> |
sonugupta-huawei | 9c2be32 | 2017-02-04 13:21:59 +0530 | [diff] [blame] | 13 | |
| 14 | <parent> |
| 15 | <groupId>org.onosproject</groupId> |
| 16 | <artifactId>onos-yang-runtime</artifactId> |
Ray Milkey | 47073f6 | 2017-02-08 14:04:25 -0800 | [diff] [blame^] | 17 | <version>1.12-b1</version> |
sonugupta-huawei | 9c2be32 | 2017-02-04 13:21:59 +0530 | [diff] [blame] | 18 | </parent> |
| 19 | |
| 20 | <artifactId>onos-yang-runtime-uils</artifactId> |
| 21 | <packaging>jar</packaging> |
| 22 | |
Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 23 | <dependencies> |
| 24 | <dependency> |
| 25 | <groupId>org.onosproject</groupId> |
| 26 | <artifactId>onos-yang-model</artifactId> |
Ray Milkey | 47073f6 | 2017-02-08 14:04:25 -0800 | [diff] [blame^] | 27 | <version>1.12-b1</version> |
Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.onosproject</groupId> |
sonugupta-huawei | 9c2be32 | 2017-02-04 13:21:59 +0530 | [diff] [blame] | 31 | <artifactId>onos-yang-compiler-api</artifactId> |
Ray Milkey | 47073f6 | 2017-02-08 14:04:25 -0800 | [diff] [blame^] | 32 | <version>1.12-b1</version> |
sonugupta-huawei | 9c2be32 | 2017-02-04 13:21:59 +0530 | [diff] [blame] | 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.onosproject</groupId> |
Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 36 | <artifactId>onos-yang-runtime-api</artifactId> |
Ray Milkey | 47073f6 | 2017-02-08 14:04:25 -0800 | [diff] [blame^] | 37 | <version>1.12-b1</version> |
Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 38 | </dependency> |
sonugupta-huawei | 9c2be32 | 2017-02-04 13:21:59 +0530 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.onosproject</groupId> |
| 41 | <artifactId>onos-yang-compiler-plugin-utils</artifactId> |
Ray Milkey | 47073f6 | 2017-02-08 14:04:25 -0800 | [diff] [blame^] | 42 | <version>1.12-b1</version> |
sonugupta-huawei | 9c2be32 | 2017-02-04 13:21:59 +0530 | [diff] [blame] | 43 | </dependency> |
Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 44 | </dependencies> |
Gaurav Agrawal | 69cded1 | 2017-02-04 10:23:50 +0530 | [diff] [blame] | 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.maven.plugins</groupId> |
| 49 | <artifactId>maven-jar-plugin</artifactId> |
| 50 | <version>3.0.2</version> |
| 51 | <configuration> |
| 52 | <skipIfEmpty>true</skipIfEmpty> |
| 53 | </configuration> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <id>default</id> |
| 57 | <goals> |
| 58 | <goal>test-jar</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | </plugins> |
| 64 | </build> |
| 65 | </project> |