Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 0a4e674 | 2016-09-15 23:03:10 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 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 | <artifactId>onos-yms</artifactId> |
| 24 | <groupId>org.onosproject</groupId> |
Brian O'Connor | bfc02ec | 2016-09-16 00:42:37 -0700 | [diff] [blame] | 25 | <version>1.8.0-SNAPSHOT</version> |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-yms</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <description>YANG management system application</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
Bharat saraswal | f53b29a | 2016-09-27 15:35:15 +0530 | [diff] [blame] | 37 | <groupId>org.apache.felix</groupId> |
| 38 | <artifactId>org.apache.felix.framework</artifactId> |
| 39 | <version>4.2.1</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>commons-io</groupId> |
| 43 | <artifactId>commons-io</artifactId> |
| 44 | <version>2.4</version> |
| 45 | </dependency> |
| 46 | <dependency> |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-app-yms-api</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
Bharat saraswal | f53b29a | 2016-09-27 15:35:15 +0530 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-yang-maven-plugin</artifactId> |
| 54 | <version>1.8</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
| 58 | <artifactId>onos-yang-datamodel</artifactId> |
| 59 | <version>1.8</version> |
| 60 | </dependency> |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 61 | <dependency> |
| 62 | <groupId>org.onosproject</groupId> |
| 63 | <artifactId>onlab-junit</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 66 | <dependency> |
Bharat saraswal | f53b29a | 2016-09-27 15:35:15 +0530 | [diff] [blame] | 67 | <groupId>org.easymock</groupId> |
| 68 | <artifactId>easymock</artifactId> |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 69 | <scope>test</scope> |
| 70 | </dependency> |
Bharat saraswal | f53b29a | 2016-09-27 15:35:15 +0530 | [diff] [blame] | 71 | <dependency> |
| 72 | <groupId>org.onosproject</groupId> |
| 73 | <artifactId>onlab-osgi</artifactId> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | <!-- https://mvnrepository.com/artifact/org.springframework.osgi/spring-osgi-mock --> |
| 77 | <dependency> |
| 78 | <groupId>org.springframework.osgi</groupId> |
| 79 | <artifactId>spring-osgi-mock</artifactId> |
| 80 | <version>1.2.1</version> |
| 81 | </dependency> |
| 82 | |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 83 | </dependencies> |
| 84 | |
Bharat saraswal | f53b29a | 2016-09-27 15:35:15 +0530 | [diff] [blame] | 85 | <build> |
| 86 | <plugins> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.felix</groupId> |
| 89 | <artifactId>maven-bundle-plugin</artifactId> |
| 90 | <version>3.2.0</version> |
| 91 | <extensions>true</extensions> |
| 92 | <configuration> |
| 93 | <instructions> |
| 94 | <Private-Package> |
| 95 | org.onosproject.yangutils.datamodel.*, |
| 96 | org.onosproject.yangutils.translator.*, |
| 97 | org.onosproject.yangutils.linker.*, |
| 98 | org.onosproject.yangutils.utils.* |
| 99 | </Private-Package> |
| 100 | </instructions> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | <plugin> |
| 104 | <groupId>org.onosproject</groupId> |
| 105 | <artifactId>onos-yang-maven-plugin</artifactId> |
| 106 | <version>1.8</version> |
| 107 | <configuration> |
| 108 | <yangFilesDir>src/test/resources/</yangFilesDir> |
| 109 | </configuration> |
| 110 | <executions> |
| 111 | <execution> |
| 112 | <goals> |
| 113 | <goal>yang2java</goal> |
| 114 | </goals> |
| 115 | </execution> |
| 116 | </executions> |
| 117 | </plugin> |
| 118 | </plugins> |
| 119 | </build> |
Gaurav Agrawal | b102b01 | 2016-08-02 12:52:48 +0530 | [diff] [blame] | 120 | </project> |