blob: 5162f6c63c2c0bd40652835ff0016b963fb20098 [file] [log] [blame]
Thomas Vachuska8c8b0372015-03-10 11:11:24 -07001<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2015-present Open Networking Foundation
Thomas Vachuska8c8b0372015-03-10 11:11:24 -07003 ~
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 -->
Yuta HIGUCHIf1653a72018-01-31 14:24:25 -080016<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">
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070018 <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
Brian O'Connore261ab22015-12-04 22:42:06 -080027 <groupId>org.onosproject</groupId>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070028 <artifactId>onos-maven-plugin</artifactId>
Ray Milkey0f071de2018-04-30 13:13:57 -070029 <version>1.13-SNAPSHOT</version>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070030 <packaging>maven-plugin</packaging>
31
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070032 <description>Maven plugin for packaging ONOS applications or generating
33 component configuration resources
34 </description>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070035
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.maven</groupId>
39 <artifactId>maven-plugin-api</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080040 <version>3.3.9</version>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070041 </dependency>
42
43 <dependency>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070044 <groupId>org.apache.maven</groupId>
45 <artifactId>maven-project</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080046 <version>2.2.1</version>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070047 </dependency>
48
49 <dependency>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070050 <groupId>com.thoughtworks.qdox</groupId>
51 <artifactId>qdox</artifactId>
52 <version>2.0-M3</version>
53 </dependency>
54
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070055 <dependency>
56 <groupId>com.google.guava</groupId>
57 <artifactId>guava</artifactId>
Jimmy Jine9b7a022016-08-12 16:56:48 -070058 <version>20.0</version>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070059 </dependency>
60
61 <dependency>
62 <groupId>commons-collections</groupId>
63 <artifactId>commons-collections</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080064 <version>3.2.2</version>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070065 </dependency>
66
67 <dependency>
68 <groupId>commons-configuration</groupId>
69 <artifactId>commons-configuration</artifactId>
70 <version>1.10</version>
71 </dependency>
72
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070073 <!-- 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>
Sahil Lele372d1f32015-07-31 15:01:41 -070080 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-databind</artifactId>
Yuta HIGUCHI59cf0c82018-05-23 14:16:59 -070083 <version>2.9.5</version>
Sahil Lele372d1f32015-07-31 15:01:41 -070084 </dependency>
85 <dependency>
86 <groupId>com.fasterxml.jackson.core</groupId>
87 <artifactId>jackson-annotations</artifactId>
Yuta HIGUCHI59cf0c82018-05-23 14:16:59 -070088 <version>2.9.5</version>
Sahil Lele372d1f32015-07-31 15:01:41 -070089 </dependency>
andreafaa2c4b2015-11-16 13:48:39 -080090 <dependency>
91 <groupId>commons-io</groupId>
92 <artifactId>commons-io</artifactId>
Yuta HIGUCHI59cf0c82018-05-23 14:16:59 -070093 <version>2.6</version>
andreafaa2c4b2015-11-16 13:48:39 -080094 </dependency>
Andrea Campanella82baf6b2015-12-14 10:23:37 -080095 <dependency>
96 <groupId>com.google.code.gson</groupId>
97 <artifactId>gson</artifactId>
Yuta HIGUCHI59cf0c82018-05-23 14:16:59 -070098 <version>2.7</version>
Andrea Campanella82baf6b2015-12-14 10:23:37 -080099 </dependency>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -0700100 </dependencies>
101
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHI59cf0c82018-05-23 14:16:59 -0700107 <version>3.7.0</version>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -0700108 <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.4</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>
Thomas Vachuska9700ee62016-03-01 20:00:49 -0800134</project>