blob: 2781797e3f108b268a8bf99093cef7d6d83d22ed [file] [log] [blame]
Ray Milkey9e9709d2016-10-05 14:16:39 -07001<!--
2 ~ Copyright 2016-present Open Networking Laboratory
3 ~
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 -->
16<project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
Ray Milkeyb322f082016-10-06 11:06:10 -070023 <artifactId>onos-yang-utils</artifactId>
Ray Milkey9e9709d2016-10-05 14:16:39 -070024 <version>1.9-SNAPSHOT</version>
25 </parent>
26
27 <artifactId>onos-yang-utils-generator</artifactId>
28 <version>1.9-SNAPSHOT</version>
Ray Milkeyb322f082016-10-06 11:06:10 -070029 <packaging>jar</packaging>
Ray Milkey9e9709d2016-10-05 14:16:39 -070030
31 <dependencies>
32 <dependency>
33 <groupId>org.onosproject</groupId>
34 <artifactId>onos-yang-datamodel</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 <dependency>
Ray Milkey9e9709d2016-10-05 14:16:39 -070038 <groupId>commons-io</groupId>
39 <artifactId>commons-io</artifactId>
40 <version>2.4</version>
41 </dependency>
Ray Milkey9e9709d2016-10-05 14:16:39 -070042 </dependencies>
43
44 <build>
45 <plugins>
46 <plugin>
Ray Milkey9e9709d2016-10-05 14:16:39 -070047 <groupId>org.apache.maven.plugins</groupId>
Ray Milkeyb322f082016-10-06 11:06:10 -070048 <artifactId>maven-jar-plugin</artifactId>
49 <version>3.0.2</version>
Ray Milkey9e9709d2016-10-05 14:16:39 -070050 <configuration>
Ray Milkeyb322f082016-10-06 11:06:10 -070051 <skipIfEmpty>true</skipIfEmpty>
Ray Milkey9e9709d2016-10-05 14:16:39 -070052 </configuration>
53 <executions>
54 <execution>
Ray Milkeyb322f082016-10-06 11:06:10 -070055 <id>default</id>
Ray Milkey9e9709d2016-10-05 14:16:39 -070056 <goals>
Ray Milkeyb322f082016-10-06 11:06:10 -070057 <goal>test-jar</goal>
Ray Milkey9e9709d2016-10-05 14:16:39 -070058 </goals>
59 </execution>
60 </executions>
61 </plugin>
Ray Milkey9e9709d2016-10-05 14:16:39 -070062 </plugins>
63 </build>
64</project>