blob: 2ffc01fc4a3ffdafd80e706e71fc6be44ca3d54a [file] [log] [blame]
Thomas Vachuskaf40fb572016-11-20 11:43:57 -08001<!--
Gaurav Agrawal4efc8cc2017-02-09 18:41:31 +05302 ~ Copyright 2017-present Open Networking Laboratory
Thomas Vachuskaf40fb572016-11-20 11:43:57 -08003 ~
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 Agrawal4efc8cc2017-02-09 18:41:31 +053016
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080017<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 Agrawala599a8f2017-01-10 20:45:27 +053024 <artifactId>onos-yang-tools</artifactId>
Ray Milkeyccf4e3b2017-02-16 14:58:05 -080025 <version>1.12-SNAPSHOT</version>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080026 </parent>
27
28 <artifactId>onos-yang-runtime</artifactId>
Bharat saraswala542a362017-03-02 21:43:59 +053029 <packaging>bundle</packaging>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080030
31 <dependencies>
32 <dependency>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080033 <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>
40 <version>1.7.21</version>
41 </dependency>
Gaurav Agrawal4efc8cc2017-02-09 18:41:31 +053042 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-yang-model</artifactId>
Ray Milkeyccf4e3b2017-02-16 14:58:05 -080045 <version>1.12-SNAPSHOT</version>
Gaurav Agrawal4efc8cc2017-02-09 18:41:31 +053046 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
Bharat saraswal7d9244e2017-03-03 11:38:25 +053049 <artifactId>onos-yang-compiler-tool</artifactId>
Ray Milkeyccf4e3b2017-02-16 14:58:05 -080050 <version>1.12-SNAPSHOT</version>
Gaurav Agrawal4efc8cc2017-02-09 18:41:31 +053051 </dependency>
52 <dependency>
Bharat saraswal7d9244e2017-03-03 11:38:25 +053053 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.core</artifactId>
55 <version>RELEASE</version>
Ray Milkeya3203922017-03-03 04:28:22 +000056 </dependency>
57 <dependency>
Gaurav Agrawal4efc8cc2017-02-09 18:41:31 +053058 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <version>RELEASE</version>
61 </dependency>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080062 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
Gaurav Agrawaldc38b802017-02-13 14:52:14 +053067 <groupId>org.onosproject</groupId>
68 <artifactId>onos-yang-compiler-maven-plugin</artifactId>
69 <version>${project.version}</version>
70 <configuration>
71 <yangFilesDir>src/test/resources</yangFilesDir>
72 </configuration>
73 <executions>
74 <execution>
75 <id>default</id>
76 <goals>
77 <goal>yang2java</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
Bharat saraswala542a362017-03-02 21:43:59 +053083 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-bundle-plugin</artifactId>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080085 <configuration>
Bharat saraswala542a362017-03-02 21:43:59 +053086 <instructions>
87 <Export-Package>
Gaurav Agrawal0a9640d2017-03-03 19:17:33 +053088 org.onosproject.yang.runtime.*,
89 org.osgi.*,
90 org.onosproject.yang.compiler.datamodel.*
Bharat saraswala542a362017-03-02 21:43:59 +053091 </Export-Package>
Bharat saraswala542a362017-03-02 21:43:59 +053092 </instructions>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080093 </configuration>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080094 </plugin>
Gaurav Agrawal0a9640d2017-03-03 19:17:33 +053095 <!--
96 Cleans up generated test artifacts which get included as a source
97 directory, but which we don't want as part of the bundle.
98 -->
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-antrun-plugin</artifactId>
102 <version>1.8</version>
103 <executions>
104 <execution>
105 <phase>prepare-package</phase>
106 <goals>
107 <goal>run</goal>
108 </goals>
109 <configuration>
110 <target>
111 <delete>
112 <fileset dir="${project.build.outputDirectory}/org/onosproject/yang/gen" includes="**/*"/>
113 </delete>
114 </target>
115 </configuration>
116 </execution>
117 </executions>
118 </plugin>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -0800119 </plugins>
120 </build>
121</project>