blob: 8b2da91abed1ad689284fe869b7ff720860cdd54 [file] [log] [blame]
Thomas Vachuskaf205a972018-11-01 15:25:38 -07001<!--
2 ~ Copyright 2015-present Open Networking Foundation
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-base</artifactId>
23 <version>1</version>
24 <relativePath>../../build/pom.xml</relativePath>
25 </parent>
26
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-maven-plugin</artifactId>
Thomas Vachuskab318e1f2021-09-15 12:48:39 -070029 <version>2.5.0-SNAPSHOT</version>
Thomas Vachuskaf205a972018-11-01 15:25:38 -070030 <packaging>maven-plugin</packaging>
31
32 <description>Maven plugin for packaging ONOS applications or generating
33 component configuration resources
34 </description>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.maven</groupId>
39 <artifactId>maven-plugin-api</artifactId>
40 <version>3.3.9</version>
41 </dependency>
42
43 <dependency>
44 <groupId>org.apache.maven</groupId>
45 <artifactId>maven-project</artifactId>
46 <version>2.2.1</version>
47 </dependency>
48
49 <dependency>
50 <groupId>com.thoughtworks.qdox</groupId>
51 <artifactId>qdox</artifactId>
52 <version>2.0-M3</version>
53 </dependency>
54
55 <dependency>
56 <groupId>com.google.guava</groupId>
57 <artifactId>guava</artifactId>
58 <version>20.0</version>
59 </dependency>
60
61 <dependency>
62 <groupId>commons-collections</groupId>
63 <artifactId>commons-collections</artifactId>
64 <version>3.2.2</version>
65 </dependency>
66
67 <dependency>
68 <groupId>commons-configuration</groupId>
69 <artifactId>commons-configuration</artifactId>
70 <version>1.10</version>
71 </dependency>
72
73 <!-- dependencies to annotations -->
74 <dependency>
75 <groupId>org.apache.maven.plugin-tools</groupId>
76 <artifactId>maven-plugin-annotations</artifactId>
77 <version>3.4</version>
78 <scope>provided</scope>
79 </dependency>
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-databind</artifactId>
83 <version>2.9.5</version>
84 </dependency>
85 <dependency>
86 <groupId>com.fasterxml.jackson.core</groupId>
87 <artifactId>jackson-annotations</artifactId>
88 <version>2.9.5</version>
89 </dependency>
90 <dependency>
91 <groupId>commons-io</groupId>
92 <artifactId>commons-io</artifactId>
93 <version>2.6</version>
94 </dependency>
95 <dependency>
96 <groupId>com.google.code.gson</groupId>
97 <artifactId>gson</artifactId>
98 <version>2.7</version>
99 </dependency>
100 </dependencies>
101
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-compiler-plugin</artifactId>
107 <version>3.8.0</version>
108 <configuration>
109 <source>1.8</source>
110 <target>1.8</target>
111 </configuration>
112 </plugin>
113
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-plugin-plugin</artifactId>
117 <version>3.6.0</version>
118 <executions>
119 <execution>
120 <id>default-descriptor</id>
121 <phase>process-classes</phase>
122 </execution>
123 <!-- if you want to generate help goal -->
124 <execution>
125 <id>help-goal</id>
126 <goals>
127 <goal>helpmojo</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132 </plugins>
133 </build>
134</project>