blob: ac3cbe2d9fdbc2ff12d0bbfb2d7f9fba3592df13 [file] [log] [blame]
Gaurav Agrawala599a8f2017-01-10 20:45:27 +05301<!--
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>
23 <artifactId>onos-yang-compiler-plugin</artifactId>
Ray Milkeyf584f332017-07-28 09:27:49 -070024 <version>2.2.0-SNAPSHOT</version>
Gaurav Agrawala599a8f2017-01-10 20:45:27 +053025 </parent>
26
27 <artifactId>onos-yang-compiler-maven-plugin</artifactId>
Ray Milkeyf584f332017-07-28 09:27:49 -070028 <version>2.2.0-SNAPSHOT</version>
Gaurav Agrawala599a8f2017-01-10 20:45:27 +053029 <packaging>maven-plugin</packaging>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.apache.maven</groupId>
34 <artifactId>maven-core</artifactId>
35 <version>3.3.9</version>
36 </dependency>
37 <dependency>
38 <groupId>org.apache.maven</groupId>
39 <artifactId>maven-plugin-api</artifactId>
40 <version>3.3.9</version>
41 </dependency>
42 <dependency>
43 <groupId>org.apache.maven.plugin-tools</groupId>
44 <artifactId>maven-plugin-annotations</artifactId>
45 <version>3.4</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-scr-plugin</artifactId>
51 <version>1.21.0</version>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.maven</groupId>
56 <artifactId>maven-artifact</artifactId>
57 <version>3.3.9</version>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.maven</groupId>
61 <artifactId>maven-project</artifactId>
62 <version>3.0-alpha-2</version>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.maven</groupId>
66 <artifactId>maven-model</artifactId>
67 <version>3.3.9</version>
68 </dependency>
69 <dependency>
70 <groupId>org.sonatype.plexus</groupId>
71 <artifactId>plexus-build-api</artifactId>
72 <version>0.0.7</version>
73 <scope>provided</scope>
74 </dependency>
75 <dependency>
Gaurav Agrawala599a8f2017-01-10 20:45:27 +053076 <groupId>org.slf4j</groupId>
77 <artifactId>slf4j-api</artifactId>
78 <version>1.7.21</version>
79 <scope>provided</scope>
80 </dependency>
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <version>4.12</version>
85 <scope>test</scope>
86 </dependency>
Gaurav Agrawala599a8f2017-01-10 20:45:27 +053087 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
Gaurav Agrawala599a8f2017-01-10 20:45:27 +053092 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-plugin-plugin</artifactId>
94 <version>3.4</version>
95 <configuration>
96 <skipErrorNoDescriptorsFound>true
97 </skipErrorNoDescriptorsFound>
98 </configuration>
99 <executions>
100 <execution>
101 <phase>generate-sources</phase>
102 <goals>
103 <goal>descriptor</goal>
104 </goals>
105 </execution>
106 </executions>
107 </plugin>
Gaurav Agrawala599a8f2017-01-10 20:45:27 +0530108 </plugins>
109 </build>
110</project>